SDM_FORM_COLUMN
This table stores all attributes of section for detailed view.
Primary Key
Table 4-71 Primary Key Table
Constraint Name | Columns |
---|---|
SDM_FORM_COLUMN_PK | FORM_COLUMN_ID |
Foreign Key
Table 4-72 Foreign Key Table
Table | Foreign Table | Foreign Key Columns |
---|---|---|
SDM_FORM_COLUMN | SDM_CONNECTION | CONNECTION_ID |
SDM_FORM_COLUMN | SDM_DATA_SET_COLUMN | DATA_SET_COLUMN_ID |
SDM_FORM_COLUMN | SDM_FORM_SECTION | FORM_SECTION_ID |
Columns
Table 4-73 Column Details Table
Name | Data Type | Length | Precision | Scale | Null Allowed | Comments |
---|---|---|---|---|---|---|
FORM_COLUMN_ID | NUMBER | 18 | 0 | No | Unique identifier of the record. | |
FORM_SECTION_ID | NUMBER | 18 | 0 | No | Section, to which, this attribute belongs. Refers to FORM_SECTION_ID of SDM_FORM_SECTION table. | |
DATA_SET_COLUMN_ID | NUMBER | 18 | 0 | No | Indicates data set attribute, which is included in this section. Refers to DATA_SET_COLUMN_ID of SDM_DATA_SET_COLUMN table. | |
VIEW_ONLY | CHAR | 1 | No | Indicates whether this attribute is view only or not. Value is Y or N. If value is Y then user cannot enter any data for this attribute. | ||
COLUMN_ORDER | NUMBER | 4 | 0 | No | Indicates the order, in which, attributes should be displayed. | |
DISPLAY_WIDTH_OPTION | VARCHAR2 | 20 | No | Indicates the option chosen for display width, to be used to display this attribute in FAP. Small - 50, Medium - 100, Large - 300, SizeToFit, Custom. | ||
DISPLAY_WIDTH | NUMBER | 3 | 0 | Yes | Indicates width in pixel for Custom option, to be used to display this attribute in FAP. | |
DISPLAY_COLUMN_NUMBER | NUMBER | 40 | Yes | This indicates the layout column number in which attribute should be displayed. | ||
CONNECTION_ID | NUMBER | 18 | 0 | Yes | Indicates connection detail to another system. Refers to CONNECTION_ID of SDM_CONNECTION table. | |
TOT_VALIDATION_POV | VARCHAR2 | 2000 | Yes | Indicates POV of target system, from which, data should be pulled for validation. | ||
PLAN_TYPE_NAME | VARCHAR2 | 80 | Yes | Indicates the name of the plan type under which the POV is defined. | ||
DCP_ID | NUMBER | 18 | 0 | Yes | Data Collection Period, to which, this copy record belongs. Refers to DCP_ID of SDM_DATA_COLLECTION_PERIOD table. | |
APP_ID | NUMBER | 1 | 0 | No | Identifier for the application to which the row corresponds to, for example, SDM:4. | |
OBJECT_VERSION_NUMBER | NUMBER | 9 | 0 | No | Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried. | |
LAST_UPDATE_LOGIN | VARCHAR2 | 255 | Yes | Who column: indicates the session login associated to the user who last updated the row. | ||
LAST_UPDATED_BY | VARCHAR2 | 255 | No | Who column: indicates the user who last updated the row. | ||
LAST_UPDATE_DATE | DATE | No | Who column: indicates the date and time of the last update of the row. | |||
CREATED_BY | VARCHAR2 | 255 | No | Who column: indicates the user who created the row. | ||
CREATION_DATE | DATE | No | Who column: indicates the date and time of the creation of the row. |
Indexes
Table 4-74 Index Table
Index | Uniqueness | Columns |
---|---|---|
SDM_FORM_COLUMN_PK | UNIQUE | FORM_COLUMN_ID |
SDM_FORM_CLMN_U1_SCTN_DSCLMN | UNIQUE | FORM_SECTION_ID, DATA_SET_COLUMN_I |