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