QP_PARAMETERS_B
This table stores the parameters for the processes or steps.
Details
-
Schema: FUSION
-
Object owner: QP
-
Object type: TABLE
-
Tablespace: REFERENCE
Primary Key
| Name | Columns |
|---|---|
|
QP_PARAMETERS_B_PK |
PARAMETER_ID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| PARAMETER_ID | NUMBER | 18 | Yes | The identifier of the parameter. Mandatory and Unique. | |
| PARAMETER_CODE | VARCHAR2 | 30 | Yes | The code to identify the parameter. Mandatory and Unique. | |
| PARAMETER_TYPE_CODE | VARCHAR2 | 30 | Yes | Indicates whether the parameter is of type input, output or input and output or none. | |
| PARAMETER_PARENT_TYPE_CODE | VARCHAR2 | 30 | Yes | The parent type of the parameter. | |
| PARAMETER_PARENT_ID | NUMBER | 18 | Yes | Indicates the parent of the parameter. | |
| DATATYPE_CODE | VARCHAR2 | 30 | Yes | Indicates the data type of the parameter. | |
| REQUIRED_FLAG | VARCHAR2 | 30 | Yes | Indicates if the parameter value is required at runtime. | |
| DOMAIN_ID | NUMBER | 18 | The domain to derive the parameter values. | ||
| DEFAULT_VALUE_STRING | VARCHAR2 | 240 | The default value for the parameter with string datatype. | ||
| DEFAULT_VALUE_NUMBER | NUMBER | The default value for the parameter with numeric datatype. | |||
| DEFAULT_VALUE_DATE | DATE | The default value for the parameter with date datatype. | |||
| DEFAULT_VALUE_TIMESTAMP | TIMESTAMP | The default value for the parameter with timestamp datatype. | |||
| CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
| CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
| LAST_UPDATE_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the last update of the row. | ||
| LAST_UPDATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who last updated the row. | |
| LAST_UPDATE_LOGIN | VARCHAR2 | 32 | Who column: indicates the session login associated to the user who last updated the row. | ||
| 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. |
Foreign Keys
| Table | Foreign Table | Foreign Key Column |
|---|---|---|
| QP_PARAMETERS_B | qp_domains_b | DOMAIN_ID |
| qp_parameters_tl | qp_parameters_b | PARAMETER_ID |
| qp_proc_step_param_values | qp_parameters_b | PARAMETER_ID |
| qp_proc_step_param_values | qp_parameters_b | PROCESS_PARAMETER_ID |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| QP_PARAMETERS_B_PK | Unique | FUSION_TS_SEED | PARAMETER_ID |
| QP_PARAMETERS_B_U1 | Unique | FUSION_TS_SEED | PARAMETER_PARENT_TYPE_CODE, PARAMETER_PARENT_ID, PARAMETER_CODE |