This table stores return merchandise authorization
(RMA) tax credits.
Column Descriptions:
Name | Type | Description |
RMA_ID | BIGINT NOT NULL | The ID of the RMA for which this tax amount
applies. |
TAXCGRY_ID | INTEGER NOT NULL | The TaxCategory. |
TAXAMOUNT | DECIMAL (20,5) NOT NULL | Tax amount in the currency of the RMA. |
LASTUPDATE | TIMESTAMP NOT NULL | Timestamp of the last update. |
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> | RMA_ID+TAXCGRY_ID | Primary Key |
I0000751 | TAXCGRY_ID | Non-Unique Index |
Constrained By Parent Tables:
Constraint | Columns | Parent Table | Parent Columns | Type |
F_717 | TAXCGRY_ID | TAXCGRY | TAXCGRY_ID | Cascade |
F_718 | RMA_ID | RMA | RMA_ID | Cascade |