Previous
Previous
 
Next
Next


REMOVE_DEBUG_BY_VIEW Procedure

This procedure is used to delete all data for a specified view from the message log.

Syntax

APEX_DEBUG_MESSAGE.REMOVE_DEBUG_BY_VIEW (
    p_application_id    IN NUMBER,
    p_view_id           IN NUMBER);

Parameters

Table: REMOVE_DEBUG_BY_VIEW Parameters describes the parameters available in the REMOVE_DEBUG_BY_VIEW procedure.

REMOVE_DEBUG_BY_VIEW 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_MESSAGE.REMOVE_DEBUG_BY_VIEW (
        p_application_id => TO_NUMBER(:APP_ID),
        p_view_id        => 12345 );
END;