POQ_RULE_SETS
POQ_RULE_SETS stores the information of all rule sets maintained in the system. It stores the name of the rule set, description, instructions and a flag to indicate if question branching is to be used when generating a questionnaire using this rule set.
Details
-
Schema: FUSION
-
Object owner: POQ
-
Object type: TABLE
-
Tablespace: FUSION_TS_TX_DATA
Primary Key
Name | Columns |
---|---|
POQ_RULE_SETS_PK |
RULE_SET_ID |
Columns
Name | Datatype | Length | Precision | Not-null | Comments |
---|---|---|---|---|---|
RULE_SET_ID | NUMBER | 18 | Yes | System-generated unique identifier. | |
OBJECT_VERSION_NUMBER | NUMBER | 9 | Yes | 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. | |
RULE_SET_NAME | VARCHAR2 | 80 | Yes | Name of the rule set as provided by the user. | |
RULE_SET_DESCRIPTION | VARCHAR2 | 240 | User provided description for the rule set. | ||
QUESTIONNAIRE_INSTRUCTIONS | VARCHAR2 | 1000 | Instructions that are provided by the user for this questionnaire during registration. | ||
AUTO_CREATE_QUAL_FLAG | VARCHAR2 | 1 | Indicates whether qualifications should be automatically created on supplier events. | ||
SUPP_QSTNAIRE_INSTRUCTIONS | CLOB | Instructions that are provided by the user for supplier questionnaire generated as part of event based initiative creation. | |||
INT_QSTNAIRE_INSTRUCTIONS | CLOB | Instructions that are provided by the user for internal questionnaire generated as part of event based initiative creation. | |||
RULE_SET_STATUS | VARCHAR2 | 30 | Yes | Status of the rule set. Possible values are ACTIVE, INACTIVE. | |
USE_QUESTION_BRANCH_FLAG | VARCHAR2 | 1 | Indicates whether question branching should be used when creating the questionnaire. | ||
ACTIVATION_DATE | DATE | Indicates the date on which the rule set became active. | |||
CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
LAST_UPDATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who last updated the row. | |
LAST_UPDATE_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the last update of the row. | ||
LAST_UPDATE_LOGIN | VARCHAR2 | 32 | Who column: indicates the session login associated to the user who last updated the row. |
Indexes
Index | Uniqueness | Tablespace | Columns |
---|---|---|---|
POQ_RULE_SETS_PK | Unique | Default | RULE_SET_ID |
POQ_RULE_SETS_U1 | Unique | Default | UPPER("RULE_SET_NAME") |