in my application i am having check box and edit(the style type) in data objects i need to display som etexts on thos edit and those texts are there in my sql and in the dataobject i have a query like this
SELECT auth.c_name,
auth.auth ,
substring( auth.auth, 1 ,1) AS COLUMN_0 ,
( select "Fn" from key5932 where "keyyy" ='0' ) as index0,
FROM auth
where auth.c_name = :a_name
here "auth" and "Fn" are the two tables and only table"auth" has been selected in this dataobject and i am getting data from"auth"
and "index0" is the name of edit and text which must shown on the edit is taking from table "Fn" but those are not coming properly.
and there is code lyk
dw_security.retrieve(data) here "data is from "auth" and there is retrievel argument (a_name )in the object which is from "auth"
my problem is i am not getting values from table "fn"