amstergc20
amstergc20

Reputation: 117

Oracle APEX Interactive Report Not Updating

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

Answers (1)

Ashish Sahay
Ashish Sahay

Reputation: 96

I see the page refresh is refreshing your page item value too.

there are two options you can try.

  1. Setting Session state on item change by executing the below code using dynamic action.

    BEGIN APEX_UTIL.set_session_state('P1_DEPTNO', 30); END;

  2. Stop Refreshing the page

Upvotes: 1

Related Questions