Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Stores enumeration labels and label values for enumerations in the [System_Runtime].[Enumerations] view. Note that some fields will be NULL depending on the label type. Refer to the LabelKind field in the [System_Runtime].[Enumerations] view.
Fields
The following table lists the fields in the EnumerationLabels view.
| Column | Type | Required | Description |
|---|---|---|---|
Id |
bigint |
yes |
The identifier of the enumeration label. |
BoolValue |
bit |
The bit value of the label. Valid for enumerations whose label type is bool (LabelKind = 1). |
|
CharValue |
nvarchar(max) |
The string value of the label. Valid for enumerations whose label type is char (LabelKind = 2). |
|
Enumeration |
bigint |
yes |
The enumeration that contains this label and label value. References the [System_Runtime].[Enumerations] view. |
Label |
nvarchar(max) |
yes |
The enumeration label name. |
FloatValue |
float |
The float value of the label. Valid for enumerations whose label type is double (LabelKind = 3). |
|
Folder |
int |
yes |
The “Oslo” repository Folder associated with the enumeration label. References the [Repository.Item].[Folders] view. (Default = 100) |
IntegralValue |
decimal(28,6) |
The integer value of the label. Valid for enumerations whose label types are signed integers, unsigned integers, and pointers (LabelKind >= 4 and LabelKind <=13). |