|  Previous |  Next | 
This procedure sets a preference that will persist beyond the user's current session.
Syntax
APEX_UTIL.SET_PREFERENCE (
    p_preference   IN    VARCHAR2 DEFAULT NULL,
    p_value        IN    VARCHAR2 DEFAULT NULL,
    p_user         IN    VARCHAR2 DEFAULT NULL);
Parameters
Table: SET_PREFERENCE Parameters describes the parameters available in the SET_PREFERENCE procedure.
SET_PREFERENCE Parameters
| Parameter | Description | 
|---|---|
| 
 | Name of the preference (case-sensitive) | 
| 
 | Value of the preference | 
| 
 | User for whom the preference is being set | 
Example
The following example shows how to use the SET_PREFERENCE procedure to set a preference called 'default_view' to the value 'WEEKLY' that will persist beyond session for the currently authenticated user.
BEGIN
    APEX_UTIL.SET_PREFERENCE(        
        p_preference => 'default_view',
        p_value      => 'WEEKLY',      
        p_user       => :APP_USER); 
END;