Portlet Entity represents an instance of the Portlet. It is based on the specification of its Portlet Definition. Each Portlet Entity has its own context data that sets it apart from other instances of the same definition. This context data is referred to as Portlet Preferences, and is a collection of name value pairs.
| Column Name | Column Datatype | Column Null Option | Column Comment |
| portlet_entity_id | nvarchar(64) | not null | A unique identifier for portlet entity. It is a generated uuid. |
| portlet_entity_alias | nvarchar(128) | not null | A unique alias for this portlet entity. Alias is a user friendly id, so that portlet entity can be referenced through a portlet tag form any arbitrarty web page. |
| title | nvarchar(128) | with null | A title of the portlet entity. |
| portlet_entity_desc | long nvarchar | with null | A description of a portlet entity. |
| parent | nvarchar(128) | with null | Represents the parent of the portlet entity. |
| personalization_level | integer | with null | Represents the personalization level of the portlet entity. Possible values are: 1- definition level, 2 - global level, 3 - user level. |
| entity_prefs | long nvarchar | with null | A string representation of the java.util.Properties that hold the global portlet properties. |
| remote | integer | with null | Flag that denotes whether this portlet entity can be exposed as a remote portlet through WSRP producer. Possible values are 0 (false), 1 (true). This filed is not a Boolean because it is not possible to constrain on a boolean in EJBQL. |
| cons_configured | integer | with null | Flag that denotes whether this portlet entity if exposed as a remote portlet through WSRP producer, can be configured by the WSRP consumer. Possible values are 0 (false), 1 (true). This filed is not a Boolean because it is not possible to constrain on a boolean in EJBQL. |
| portlet_entity_edition | integer | with null | Represents the version of entity. This field is incremented each time entity is updated. It is used to prevent stale updates. Valid values are positive numbers. |
| portlet_defn_id | nvarchar(64) | with null | A unique identifier for portlet definition. It is a generated uuid. |
| portal_instance_id | nvarchar(64) | with null | Id of the portal instance. |
Product Name: Portal r12
Table Type: Table