|
set_value_as_string procedure |
|
Contained in package wwpre_api_value. Call this procedure to set a string value for a preference. Note: This function stores the value of the preference as a text string. The text string is transformed into the native form, and the native form is stored. procedure set_value_as_string (
); |
|
Version: Oracle Portal 3.0.6.6.5 or later | |
|
Parameters: |
|
|
p_path |
The path for the preference name. Datatype: in varchar2 |
|
p_name |
The preference name. Datatype: in varchar2 |
|
p_level_type |
A constant value for the level at which the value is stored. Datatype: in varchar2 |
|
p_level_name |
The user name or group name for the value to be stored. Note: If the level is SYSTEM, then the level name must be NULL. Datatype: in varchar2 |
|
p_value |
The string value to be stored. Datatype: in varchar2 |
|
p_language |
The language to load the type for the preference value. Datatype: in varchar2 |
|
p_commit |
This parameter is now obsolete. It is left here only to ensure that when older code is used, it still compiles. |
|
Exceptions:
Example: This example sets the default font color for the current user to #FF0000. begin wwpre_api_value.set_value_as_string (
); exception
end; |
|
|
The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio |