Workplace Layout data represents layout information for a workplace. Different layout types will require different information to be stored for each portlet. In order to generalize the persistence model all layout properties are stored in a java.util.Properties object as a simple map of arbitrary keys and values. This object is converted to an XML string before it is saved to the database.
| Column Name | Column Datatype | Column Null Option | Column Comment |
| layout_id | nvarchar(64) | not null | A layout id. |
| wp_id | nvarchar(64) | not null | A unique identifier for workplace. It is a generated uuid. |
| dflt_layout | integer | with null | Flag that denotes whether a default layout for this workplace. 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. |
| layout_props | long nvarchar | with null | A string representation of the java.util.Properties that hold the layout properties for this layout and workplace combination. |
Product Name: Portal r12
Table Type: Table