WIS_CONFORMANCE_PARAMETERS_B
This table stores user-defined conformance parameters in a plant.
Details
-
Schema: FUSION
-
Object owner: WIS
-
Object type: TABLE
-
Tablespace: Default
Primary Key
| Name | Columns |
|---|---|
|
WIS_CONFRM_PARAMETERS_B_PK |
CONFORMANCE_PARAMETER_ID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| CONFORMANCE_PARAMETER_ID | NUMBER | 18 | Yes | The unique identifier of a conformance parameter. Its value is an application generated unique id. | |
| 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. | |
| PARAMETER_CODE | VARCHAR2 | 30 | Yes | Represents the user-defined code that identifies a specific conformance parameter used within the plant. | |
| ORGANIZATION_ID | NUMBER | 18 | Yes | The organization identifier that represents the manufacturing plant to which the conformance parameter belongs. | |
| DATA_TYPE | VARCHAR2 | 30 | Yes | Indicates the data type used to evaluate the conformance parameter. Valid values are Weight % and Volume %. It will be derived from the lookup ORA_WIS_CONFRM_PARAM_DATA_TYPE. | |
| DECIMAL_PRECISION | NUMBER | 18 | Number of digits allowed to the right of the decimal point when capturing values for this parameter. | ||
| UOM_CODE | VARCHAR2 | 3 | Yes | The unit of measure code for the conformance parameter. | |
| MIN_VALUE | NUMBER | Yes | User-defined minimum allowed value of the conformance parameter. | ||
| MAX_VALUE | NUMBER | Yes | User-defined maximum allowed value of the conformance parameter. | ||
| ENABLED_FLAG | VARCHAR2 | 1 | Yes | Indicates whether the conformance parameter is enabled (Y) or disabled (N). Default is Y. | |
| 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. |
Foreign Keys
| Table | Foreign Table | Foreign Key Column |
|---|---|---|
| wis_confrm_param_target_values | wis_conformance_parameters_b | CONFORMANCE_PARAMETER_ID |
| wis_confrm_param_assignments | wis_conformance_parameters_b | CONFORMANCE_PARAMETER_ID |
| wis_conformance_parameters_tl | wis_conformance_parameters_b | CONFORMANCE_PARAMETER_ID |
| wis_confrm_param_actual_values | wis_conformance_parameters_b | CONFORMANCE_PARAMETER_ID |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| WIS_CONFRM_PARAMETERS_B_U01 | Unique | Default | CONFORMANCE_PARAMETER_ID |
| WIS_CONFRM_PARAMETERS_B_U02 | Unique | Default | ORGANIZATION_ID, PARAMETER_CODE |