15.27 RESET_COLLECTION_CHANGED_ALL Procedure

Resets the collection changed flag (mark as not changed) for all collections in the user's current session.

Syntax

APEX_COLLECTION.RESET_COLLECTION_CHANGED_ALL;

Parameters

None.

Example

This example resets the changed flag for all collections in the user's current session.

BEGIN
    APEX_COLLECTION.RESET_COLLECTION_CHANGED_ALL;
END;