22.9 RESET_REPORT Procedure Signature 2
This procedure resets report settings to the developer defined default settings using the report name.
Syntax
APEX_IG.RESET_REPORT(
p_page_id IN NUMBER,
p_region_id IN NUMBER,
p_report_name IN VARCHAR2 DEFAULT NULL); Parameters
Table 22-9 RESET_REPORT Procedure Signature 2 Parameters
| Parameter | Description |
|---|---|
|
|
Page of the current Application Express application that contains an interactive grid. |
|
|
The interactive grid region ID. |
|
|
The saved report name within the current application page. If
|
Example
The following example shows how to use the RESET_REPORT
procedure signature 2 to reset interactive grid settings with report name of
'Statistics' in page 1, region
3335704029884222 of the current application.
BEGIN
APEX_IG.RESET_REPORT(
p_page_id => 1,
p_region_id => 3335704029884222,
p_report_name => 'Statistics' );
END;Parent topic: APEX_IG