Application Express User's Guide > Oracle Application Express ... > HTMLDB_UTIL > REMOVE_PREFERENCE Proc...
REMOVE_PREFERENCE Procedure |
![]() Previous |
![]() Next |
This function removes the preference for the supplied user.
Syntax
HTMLDB_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
HTMLDB_UTIL.REMOVE_PREFERENCE(
p_preference => 'default_view',
p_user => :APP_USER);
END;