|
get_value function |
|
Contained in package wwpro_api_parameters package. Call this function to return the scalar value of a parameter, given the parameter name and reference path. If more than one value exists for the specified parameter, only the first is returned. function get_value (
) return varchar2; |
|
|
Any user can use this function. |
|
Version: Oracle Portal 3.0.6.6.5 or later | |
|
Parameters: |
|
|
p_name |
The name of the parameter to be returned. Datatype: in varchar2 |
|
p_reference_path |
A unique identifier for a portlet instance on the current page. Note: The reference_path is passed to wwpro_api_provider.show. Datatype: in varchar2 |
|
Returns: This function returns the first value of the specified parameter, or null if the parameter is not found or invalid. Exceptions: This function raises no exceptions. Example: If a URL has these parameters: http://.......?empno=10;&empno=25;&deptno=10;&a.deptno=20;&a.empno=30 Then this call: l_value varchar2; l_value := wwpro_api_parameters.get_value (
); Returns: l_value = '30' |
|
|
|
The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio |