59.103 PURGE_REGIONS_BY_PAGE Procedure
Deletes all cached regions by application and page.
Syntax
APEX_UTIL.PURGE_REGIONS_BY_PAGE (
p_application IN NUMBER,
p_page IN NUMBER );
Parameters
Parameter | Description |
---|---|
p_application
|
The identification number (ID) of the application. |
p_page |
The identification number of page containing the region. |
Example
The following example shows how to use the PURGE_REGIONS_BY_PAGE
procedure to delete all the cached values for regions on page 1 of the current application.
BEGIN
APEX_UTIL.PURGE_REGIONS_BY_PAGE(
p_application => :APP_ID,
p_page => 1);
END;
Parent topic: APEX_UTIL