58.102 REMOVE_PREFERENCE Procedure
This procedure 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
| Parameter | Description | 
|---|---|
| p_preference | Name of the preference to remove. | 
| p_user | User for whom the preference is defined. | 
Example
The following example shows how to use the REMOVE_PREFERENCE procedure to remove the preference default_view for the currently authenticated user.
                  
BEGIN
    APEX_UTIL.REMOVE_PREFERENCE(
        p_preference => 'default_view',
        p_user       => :APP_USER);    
END;See Also:
- GET_PREFERENCE Function
- SET_PREFERENCE Procedure
- Managing User Preferences in Oracle APEX Administration Guide
Parent topic: APEX_UTIL