15.16 REMOVE_DEBUG_BY_VIEW Procedure

Use this procedure to delete 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

Table 15-12 APEX_DEBUG.REMOVE_DEBUG_BY_VIEW Procedure Parameters

Parameter Description

p_application_id

The application ID of the application.

p_view_id

The view ID of the view.

Example

This example demonstrates the removal of 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;