59.12 CLEAR_PAGE_CACHE Procedure
This procedure removes session state for a given page for the current session. If p_page_id
is not specified, then the current page will be cleared.
Syntax
APEX_UTIL.CLEAR_PAGE_CACHE (
p_page_id IN NUMBER DEFAULT NULL);
Parameters
Parameter | Description |
---|---|
p_page_id |
The ID of the page in the current application for which session state is cleared for current session. |
Example
The following example demonstrates how to use the CLEAR_PAGE_CACHE
procedure to clear the current session state for the page with an ID of 10.
BEGIN
APEX_UTIL.CLEAR_PAGE_CACHE(10);
END;
Parent topic: APEX_UTIL