48.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
Table 48-84 REMOVE_PREFERENCE Parameters
| Parameter | Description | 
|---|---|
| 
 | Name of the preference to remove. | 
| 
 | 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;
Parent topic: APEX_UTIL