34.6 RESET Procedure
This procedure resets region settings ( such as CR and IR pagination, CR sort, IR and IG report settings). Only report regions are supported at this time.
Syntax
APEX_REGION.RESET (
    p_application_id  IN NUMBER  DEFAULT apex_application.g_flow_id,
    p_page_id         IN NUMBER,
    p_region_id       IN NUMBER,
    p_component_id    IN NUMBER  DEFAULT null );Parameters
Table 34-4 CLEAR Parameters
| Parameter | Description | 
|---|---|
| 
 | 
 | 
| 
 | 
 | 
| 
 | 
 | 
| 
 | Region component  | 
Example
This example resets the given saved report on application 100, page 1.
 BEGIN
     APEX_REGION.RESET  (
         p_applicatoin_id => 100,
         p_page_id        => 1,
         p_region_id      => 2505704029884282,
         p_component_id   => 880629800374638220);
END;Parent topic: APEX_REGION