I need to find "the Clear Cache a URL section" where can I find it?

I have to do the following but don't know where it is, please help.


To restore an interactive report in a link, use the string "RIR" in the section Cache Clear of a URL. This means the user choose the Reset option in the menu interactive report actions on the target page. The report is returned to the default report parameters specified by the developer.

Ok.
You can solve this problem by creating a header before process on the page of interactive report with the following code to the page

apex_util.ir_reset(:app_page_id);

These only api related IR is described below

procedure ir_reset)
-Interactive reports for application and current user session
-Identical to a reset of the user via the menu drop-down
-Reset recreates default filter, control breaks, display columns etc.
--
p_page_id number); -Valid number of page within the current application

procedure ir_clear)
-Erases an interactive report for application and current user session
-Remove the filters for an interactive report
-Clears all report filter, including the default filters
-Clears all interactive reports for a given application page
--
p_page_id number);

Tags: Database

Similar Questions

Maybe you are looking for