|
get_string function (domain, subdomain, name, language) |
|
Contained in package wwnls_api. Call this function to return an NLS string based on domain, subdomain, name, and language. function get_string (
) |
|
Version: Oracle Portal 3.0.6.6.5 or later | |
|
Parameters: |
|
|
p_domain |
The domain for the message string. Example: WWS Datatype: in wwnls_strings$.domain%type |
|
p_sub_domain |
The subdomain for the message string. Note: The default 'all' refers to the name of a specific sub-domain. It does not refer to all subdomains. Example: TEXT, NAVBAR Datatype: in wwnls_strings$.sub_domain%type |
|
p_name |
A unique name for a message string. Datatype: in wwnls_strings$.name%type |
|
p_language |
The NLS language name constant for the language to be returned. Example: wwnls_api.AMERICAN Datatype: in wwnls_strings$.language%type |
|
(p0, p1, ... p9) |
Values used for parameter substitution. Notes:
Datatype:
in varchar2 |
|
Returns: If the translation specified in p_language is found, this function returns
a string based on domain, subdomain, string name, and language name. If
the translation specified in p_language is not found, this function returns
the base string. Exceptions: If this function fails to execute, an NLS_EXECUTION_EXCEPTION is raised. Example: declare
begin
end; |
|
|
The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio |