Home > APEX_UTIL > REMOVE_PREFERENCE Proc...
This function removes the preference for the supplied user.
Syntax
APEX_UTIL.REMOVE_PREFERENCE( p_preference IN VARCHAR2 DEFAULT NULL, p_user IN VARCHAR2 DEFAULT V('USER'));
Parameters
Table: REMOVE_PREFERENCE Parameters describes the parameters available in the REMOVE_PREFERENCE
procedure.
REMOVE_PREFERENCE Parameters
Parameter | Description |
---|---|
|
Name of the preference to remove |
|
User for whom the preference is defined |
Example
BEGIN APEX_UTIL.REMOVE_PREFERENCE( p_preference => 'default_view', p_user => :APP_USER); END;