remove_portlet_from_repository procedure

Contained in package wwpro_api_provider_registry.

Use this procedure to delete portlets from the portlet repository. It can also be used by portlet providers to dynamically remove portlets.

procedure remove_portlet_from_repository
(

   p_provider_id in integer,
   p_portlet_id in integer

);

A user must have at least the manage items privilege on the provider folder within the portlet repository to execute this function.

Version: Oracle Portal 3.0.6.6.5 or later

Parameters:

p_provider_id

A unique identifier for a provider that is allocated by Oracle Portal.

Note: A null value is not permitted.

Datatype: in integer

p_portlet_id

A unique identifier that locates the portlet within the provider domain.

Note: A null value is not permitted.

Datatype: in integer

Exception:

If an unexpected error occurs, DELETE_PORTLET_EXCEPTION is raised.

Example:

wwpro_api_provider_registry.delete_portlet_from_repository
(

p_provider_id => 5,
p_portlet_id => 22

);

Related topics

The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio