|
get_string function (id, language) |
|
Contained in package wwnls_api. This function returns a message string based on the message string ID. If p_language is null, the string specified in p_id is returned. If p_language is not null, the translation specified for the string ID is returned in the language specified in p_language. Note: This function allows parameter substitution. function get_string (
) return varchar2; |
|
Version: Oracle Portal 3.0.6.6.5 or later | |
|
Parameters: |
|
|
p_id |
The message string ID. Datatype: in wwnls_strings$.id%type |
|
p_language |
The NLS language name constant for the language to be retrieved. Example: wwnls_api.AMERICAN.
Datatype: in wwnls_strings$.language%type |
|
(p0, p1, ... p9) |
Values used for parameter substitution. Notes:
Datatype:
in varchar2 |
|
Returns: If p_language is null, this function returns the string text specified in p_id. If p_language is not null, this function returns the translation specified for the string ID in the language specified in p_language. 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 |