Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Form does not fill data dynamically

tansxhiOct 29 2021 — edited Oct 29 2021

Hi together,
I want to click a link column, pass an ID and an inline popup with a form and the available data related to the ID should open.
I created the link column passes the ID via JS in the link target to the inline dialog.
javascript:$s('P11_ITCW_FIELD_ID','#ITCW_FIELD_ID#'); javascript: var dummy=apex.theme.openRegion( 'test3001' );
when I click the link, the inline dialog appears.
I created a classic report and passes the id to it and in the same way a form (Primary key is P11_ITCW_FIELD_ID ). Also I have a dynamic action who fires when P11_ITCW_FIELD_ID changes. Then it will refresh the inlineDialog(test3001) via JS: apex.region("test3001").refresh();
Same query for Form and classic report:
select ID, SHORT_DESCRIPTION,DETAILED_DESCRIPTION, TARGET_FIELD_LABEL,
ITCW_FIELD_ID from CMSWHS.T_CNTRL_ITEM_FIELD where ITCW_FIELD_ID = :P11_ITCW_FIELD_ID;
The classic report does work and it changes always the data right but the form only changes the Id. There is no data in the form. Why?
A big thanks in advance.
2021-10-29_14h17_23.png

This post has been answered by Richard Legge on Oct 29 2021
Jump to Answer
Comments
Post Details
Added on Oct 29 2021
5 comments
1,245 views