Each row of this table represents a price constant
value. Price constant value could be number or monetary amount.
Column Descriptions:
Name | Type | Description |
PRCONSTANT_ID | BIGINT NOT NULL | Generated Key |
CURRENCY | CHAR (3) NOT NULL | The currency for the monetary type price
constant. If empty, it indicates the value is a number type price
constant. |
VALUE | DECIMAL (20,5) NOT NULL | The value of the price constant. |
OPTCOUNTER | SMALLINT NOT NULL DEFAULT 0 | The optimistic concurrency control counter for
the table. Every time there is an update to the table, the counter
is incremented. |
Indexes:
Name | Column Names | Type |
<SYSTEM-GENERATED> | PRCONSTANT_ID+CURRENCY | Primary Key |
Constrained By Parent Tables:
Constraint | Columns | Parent Table | Parent Columns | Type |
F_3638 | PRCONSTANT_ID | PRCONSTANT | PRCONSTANT_ID | Cascade |