59.11 CLEAR_APP_CACHE Procedure
This procedure removes session state for a given application for the current session.
Syntax
APEX_UTIL.CLEAR_APP_CACHE (
p_app_id IN VARCHAR2 DEFAULT NULL );
Parameters
Parameter | Description |
---|---|
p_app_id |
The ID of the application for which session state is cleared for current session. |
Example
The following example demonstrates how to use the CLEAR_APP_CACHE procedure to clear all the current sessions state for the application with an ID of 100.
BEGIN
APEX_UTIL.CLEAR_APP_CACHE('100');
END;
Parent topic: APEX_UTIL