This procedure removes session state for a given page for the current session.
Syntax
APEX_UTIL.CLEAR_PAGE_CACHE (
p_page_id IN NUMBER DEFAULT NULL);
Parameters
Table 28-9 CLEAR_PAGE_CACHE Parameters
| Parameter | Description |
|---|---|
|
|
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;