Reputation: 117
I have an interactive report on a page in my application. I created a filter at the top of the dashboard that causes the whole page to refresh. Everything looks good but when I go to download the report it reverts the downloaded data back to the default date ranges. Any ideas on how to fix this?
Upvotes: 0
Views: 997
Reputation: 96
I see the page refresh is refreshing your page item value too.
there are two options you can try.
Setting Session state on item change by executing the below code using dynamic action.
BEGIN APEX_UTIL.set_session_state('P1_DEPTNO', 30); END;
Stop Refreshing the page
Upvotes: 1