23.18 REMOVE_DEBUG_BY_VIEW Procedure
Deletes all data for a specified view from the message log.
Syntax
APEX_DEBUG.REMOVE_DEBUG_BY_VIEW (
p_application_id IN NUMBER,
p_view_id IN NUMBER )
Parameters
Parameter | Description |
---|---|
p_application_id |
The application ID of the application. |
p_view_id |
The view ID of the view. |
Example
This example removes debug messages within the "View Identifier" of 12345
belonging to the current application.
BEGIN
APEX_DEBUG.REMOVE_DEBUG_BY_VIEW (
p_application_id => TO_NUMBER(:APP_ID),
p_view_id => 12345 );
END;
Parent topic: APEX_DEBUG