|
In the wwpro_api_progrp_registry API package there are two PL/SQL
types to simplify manipulation of provider group data.
- The provider_group_record is a type whose instances represent a registered
provider group.
- The provider_group_table type defines a table of provider_group_records.
The provider_group_record record structure is:
type provider_group_record is record
(
id varchar2(32),
name varchar2(200),
display_name varchar2(2000),
location varchar2(4000),
last_updated date
);
|
Version: Oracle9iAS Portal
9.0.2 or later
|
|
Provider group record structure and description
|
|
id
|
The provider group's ID as registered with Oracle Portal. This
is typically a GUID.
Datatype: varchar2
|
|
name
|
The name of the provider group. Required to be unique within Oracle
Portal.
Datatype: varchar2
|
|
display_name
|
The translatable display name of the provider group.
Datatype: varchar2
|
|
location
|
The HTTP URL that defines the location of the provider group.
Datatype: varchar2
|
|
last_updated
|
The date when the provider group definition was last updated.
Datatype: date
|
Provider group record table
type provider_group_table is table of provider_group_record;
|