|  Previous |  Next | 
This procedure removes session state for a given page for the current session.
Syntax
APEX_UTIL.CLEAR_PAGE_CACHE (
    p_page IN NUMBER DEFAULT NULL);
Parameters
Table: CLEAR_PAGE_CACHE Parameters describes the parameters available in the CLEAR_PAGE_CACHE procedure.
CLEAR_PAGE_CACHE Parameters
| Parameter | Description | 
|---|---|
| 
 | The ID of the page in the current application for which session state will be cleared for current session. | 
Example
The following example demonstrates how to use the CLEAR_PAGE_CACHE procedure to clear the current session s state for the page with an ID of 10.
BEGIN
    APEX_UTIL.CLEAR_PAGE_CACHE('10');
END;