Oracle9iAS Portal Developer Kit

copy_portlet_record record structure

In the wwpro_api_provider API package, the copy_portlet_record contains the information necessary to copy customization information from one portlet instance to a new portlet instance.

A copy_portlet record structure is passed to wwpro_api_provider.copy_portlet. The provider can use this information to copy system-level customizations.

The copy_portlet record structure is:

type copy_portlet_record is record

(

provider_id - number,

portlet_id - number,

srcReferencePath - varchar2(100),

dstReferencePath - varchar2(100)

);

Version: Oracle Portal 3.0.6.6.5 or later

Field names and definitions

provider_id

A unique identifier used to locate the portlet in the provider domain.

Datatype: number

portlet_id

A unique identifier used to locate the portlet in the provider domain.

Datatype: number

srcReferencePath

The portlet instance ID that identifies the source portlet instance. It is the unique reference for a portlet in a page.

Note: This parameter can be used to retrieve instance-specific information for the portlet.

Datatype: varchar2

dstReferencePath

The portlet instance ID that identifies the destination portlet instance. It is the unique reference for a portlet placed in a page.

Note: This parameter can be used to store instance-specific information for the portlet.

Datatype: varchar2

 

Note

A portlet instance is the display of a portlet on a single page. The same portlet may be displayed multiple times on the same page. Each time a portlet is added to a page, Oracle Portal generates a unique portlet instance ID that is the instance's reference path.

Related topics

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