|
get_values function (multiple parameter names) |
|
Contained in package wwpro_api_parameters package. Call this overloaded API to return all the values associated with a list of parameter names. Note: To return values associated with a single parameter name, call get_values function (single parameter name). function get_values (
) return owa.vc_arr; |
|
|
Any user can use this function. |
|
Version: Oracle Portal 3.0.6.6.5 or later |
|
|
Parameters: |
|
|
p_names |
The names of the portlet parameters. Datatype: in owa.vc_arr |
|
p_reference_path |
A unique identifier for a portlet instance on the current page. Datatype: in varchar2 |
|
Returns: Returns a list of parameter values, or an empty list if no matches are found. Exceptions: This function raises no exceptions. Example: If a URL has these parameters: http://.......?empno=10;&deptno=10;&a.deptno=20;a.deptno=25;&a.folderid=30 and if: l_names contains 'deptno' and 'folderid' Then this call: l_values owa.vc_arr; l_names owa.vc_arr; l_values := wwpro_api_parameters.get_values (
); Returns: 20, 25, and 30 for l_values. |
|
|
The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio |