Within a tabular form using the following sample query, i.e.:
select
"EMPNO",
"EMPNO" EMPNO_DISPLAY,
"ENAME",
"HIREDATE",
"SAL",
"DEPTNO",
"MY_LOV"
from"#OWNER#"."EMP"
I would like to access for each row in my tabular form, the EMPNO value for that row, within a select list (query based LOV) within "MY_LOV" column.
So basically, the column MY_LOV within my tabular form, would be a select list (query based LOV) where MY_EMPNO = :EMPNO (first column in select query above), for each row in the tabular form.