Portal templates control the user interface look-and-feel. The template table stores template attributes such as its unique id, title, and locale.
| Column Name | Column Datatype | Column Null Option | Column Comment |
| templatekey | integer | not null | Unique ID of this template.
Type: PK |
| objectkey | integer | not null | Represents the UID of a Portal Object.
Type: FK |
| name | nvarchar(40) | not null | Name of this template. |
| frames | integer | not null | Boolean value 0/1 describing whether or not this template is a framed template. |
| cache | integer | not null | Boolean value 0/1 describing whether or not this template should be cached in memory. |
| locale | nvarchar(10) | not null | The locale of this template. If multiple templates exist from different locale, a user will be shown the template that most closely matches their locale. |
| defptr | integer | not null | In the case that a template is a localized version of another template, this points to the parent template. |
| description | nvarchar(255) | with null | A description of this template. |
Product Name: Portal
Table Type: Table