PURGE_WEB_SOURCE _CACHE Procedure

This procedure purges the local cache for a Web Source module. The web source module must exist in the current application and identified by its static ID. If caching is disabled or no cache entries exist, nothing happens.

Syntax

procedure purge_web_source_cache(
    p_module_static_id     in varchar2,
    p_current_session_only in boolean default false );

Parameters

Table 14-20 PURGE_WEB_SOURCE_CACHE Procedure Parameters

Parameter Description

p_module_static_id

Static ID of the web source module to invoke.

p_current_session_only

Specify true if you only want to purge entries that where saved for the current session. defaults to false.

Example

Purge cache for the Web Source Module with static ID "USGS" .

 begin
     apex_exec.purge_web_source_cache(
         p_module_static_id => 'USGS' );
 end;