|
add_string function |
|
Contained in package wwnls_api. Call this function to add a string to the NLS subsystem. This function should be called once for each new string to be added to the system. This function adds the specified string and returns a unique string ID that may be used to identify the string or to identify translations within the domain and sub-domain. The message strings loaded into the table first, become the base strings for the schema. Notes:
function add_string (
) return wwnls_strings$.id%type; |
|
Version: Oracle Portal 3.0.6.6.5 or later | |
|
Parameters: |
|
|
p_domain |
The domain in which the message string should be added. Example: WWS Datatype: in wwnls_strings$.domain%type |
|
p_sub_domain |
The sub-domain in which the message string should be added. Example: TEXT, NAVBAR
Datatype: in wwnls_strings$.sub_domain%type |
|
p_name |
A unique name for a message string. Notes:
Datatype: in wwnls_strings$.name%type |
|
p_language |
The NLS language name constant for the language of the string to be added. Example: wwnls_api.AMERICAN Datatype: in wwnls_strings$.language%type |
|
p_text |
The message string text to be added. Datatype: in wwnls_strings$.text%type |
|
Returns: This function returns a unique string ID. Exceptions:
Example: if p_input_format_1 is not null then
end if; |
|
|
The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio |