59.106 REMOVE_SORT_PREFERENCES Procedure
This procedure removes the user's column heading sorting preference value.
Syntax
APEX_UTIL.REMOVE_SORT_PREFERENCES (
p_user IN VARCHAR2 DEFAULT V('USER') );
Parameters
Parameter | Description |
---|---|
p_user |
Identifies the user for whom sorting preferences are removed. |
Example
The following example shows how to use the REMOVE_SORT_PREFERENCES
procedure to remove the currently authenticated user's column heading sorting preferences.
BEGIN
APEX_UTIL.REMOVE_SORT_PREFERENCES(:APP_USER);
END;
Parent topic: APEX_UTIL