Hi,
I don’t understand what’s going wrong. I’m just trying to create a simple Read only attribute that fetch a column from another custom logical unit:
I tried using v.CF$_UO2F with the LRN_U_O2_CLV which is the normal way, but that sends me an error saying view table is not existing
and that is not logical as I can actually see this table from the SQL Query Tool and perform the exact same query…
If I also try to fetch this data in an event with CURSOR, that does not work either …
CURSOR Get_CountryCode (uo_ VARCHAR2) IS
SELECT k.CF$_COUNTRY2
FROM IFSAPP.lrn_u_o2_clv k
WHERE k.CF$_UO2 = uo_;