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!

Default Alternate Report in Interactive grid

SwaZMay 9 2019 — edited May 10 2019

Hi All,

I am using Interactive grids in Oracle Apex 18.2. I have many Alternate reports in Interactive Grid and are displayed based on Authorization. But my requirement is to Default the Alternate report on page load.

I referred below thread and it helped me alot to achieve it.

Reset selection to Primary report in Interactive Grid on Page Load

Based on Item I have defaulted reports on page load(etype is my item value)

if (etype=='CN'){

        apex.region("psid").call("getActions").set("change-report", "664960854188370362");

                }

    else

        {

             apex.region("psid").call("getActions").set("change-report", "664959796269415588");

        }

But now my issue is when I am migrating the Application from one instance to other then report id are getting changed so above code is not working. Can any one please help to achieve it.

Regards

SwaZ

Comments
Post Details
Added on May 9 2019
13 comments
1,346 views