I am getting an error when trying to navigate to a page from a lobby element. When I check the sql query, it seems to be ok and I can get the data from the database correctly. But when I click on the lobby element, it says that some columns are invalid identifier.
An example:
- I have this element. When i click on the preview button, i can see the data:
- This is the SQL query:
select CF$_EXPLANATION,
CF$_MODE,
CF$_DATE,
CF$_TYPE,
CF$_CREATED_BY,
CF$_MOORDERNO,
CF$_MO_ORDER_NO,
CF$_ASKED_PERSON CF$_QUESTION_ISSUE,
CF$_ORDERNO
from
&AO.REVISIONS_CLV.REVISIONS_CLV
where cf$_type ='Question'
and cf$_orderno like '%*%'
and (select cf$_mo_site
from ifsapp.customer_order_line_cfv
where order_no=
&AO.REVISIONS_CLV.cf$_orderno
and line_no =
&AO.REVISIONS_CLV.cf$_line_no
and rel_no =
&AO.REVISIONS_CLV.cf$_del_no
AND ROWNUM =1) in ('SPFL','SPDE', 'WDUK', 'ALIM','SPAT')
and ((select OBJSTATE
from ifsapp.customer_order_line_cfv
where order_no=
&AO.REVISIONS_CLV.cf$_orderno
and line_no =
&AO.REVISIONS_CLV.cf$_line_no
and rel_no =
&AO.REVISIONS_CLV.cf$_del_no
AND ROWNUM =1)<>'Cancelled' )
- When i navigate to the page, it gives this error: