Mappings between parameters which do not fit in the schema. The 'category' field provides the types of mappings
| Name | Type | Nullable | Default value | Comment |
|---|
| PARAM1_STR | VARCHAR2(50) | Y | | The domain element (the "key") of the mapping, as a string. |
| PARAM1_NUM | NUMBER(38) | Y | | The domain element (the "key") of the mapping, as a number. |
| CATEGORY | VARCHAR2(50) | N | | The unique identifier indicating the type of mapping given by the row; a foreign key to D_PARAMMAP_ITEMS.CATEGORY. |
| PARAM2_STR | VARCHAR2(50) | Y | | The range element (the "value") of the mapping, as a string. |
| PARAM2_NUM | NUMBER(38) | Y | | The range element (the "value") of the mapping, as a number. |
| ORDER_NUM | NUMBER(38) | Y | | For multi-part mappings, the order of application. |
| VALID_FLG | CHAR(1) | N | | An indication of whether the mapping given by this row is currently valid; 'Y' indicates yes, while 'N' indicates no. |
| COMMENTS | VARCHAR2(255) | Y | | Row-specific, human-readable comments. |