|
describe_portlet_parameters function |
|
Contained in package wwpro_api_provider. Oracle Portal calls this function when it needs to know the parameters that the portlet understands. Note: When called, the portlet should return a list of the parameters that it understands in the table: wwpro_api_provider.portlet_parameter_table function describe_portlet_parameters (
) return portlet_parameter_table; |
|
|
Any user can use this function. |
|
Version: Oracle Portal 3.0.6.6.5 or later | |
|
Parameters: |
|
|
p_provider_id |
A unique identifier for the provider. Datatype: in integer |
|
p_portlet_id |
A unique identifier used to locate the portlet in the provider domain. Note: A null value is not permitted. Datatype: in integer |
|
p_language |
The identifier for the native language in which the strings are returned to Oracle Portal. Note: A null value is not permitted. Datatype: in varchar2 |
|
Returns: This function returns a table that contains all the parameters that the specified portlet understands. Exceptions:
Examples: Calling code: l_parameter_list := wwpro_api_provider.describe_portlet_parameters
); Call to the portlet: l_parameter_list := example_provider.describe_portlet_parameters
); |
|
|
The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio |