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 35-81 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;
See Also:
Parent topic: APEX_UTIL