This table contains information about the
properties configured for a widget or container. Widgets and
containers have properties when configured on a page layout.
Column Descriptions:
| Name | Type | Description |
| PLWIDGETNVP_ID | BIGINT NOT NULL | The primary key of this table. |
| PLWIDGET_ID | BIGINT NOT NULL | The widget these properties belong to. Foreign
key to the PLWIDGET table. |
| NAME | VARCHAR (256) NOT NULL | Name of the property. |
| VALUE | VARCHAR (256) NOT NULL | Value of the property. |
| PROPERTIES | VARCHAR (1024) | Reserved for internal use. |
| SEQUENCE | DOUBLE NOT NULL DEFAULT 0.0 | Sequence of the properties. |
| OPTCOUNTER | SMALLINT NOT NULL DEFAULT 0 | The optimistic concurrency control counter for
the table. Every time there is an update to the table, the counter
is incremented. |
Indexes:
| Name | Column Names | Type |
| P_0023 | PLWIDGETNVP_ID | Primary Key |
| I0001491 | NAME+VALUE+PLWIDGET_ID | Unique Index |
| I0001519 | PLWIDGET_ID | Non-Unique Index |
Constrained By Parent Tables:
| Constraint | Columns | Parent Table | Parent Columns | Type |
| F_3755 | PLWIDGET_ID | PLWIDGET | PLWIDGET_ID | Cascade |