This table stores return merchandise authorization
(RMA) item adjustment credits. These are the portion of an order
item adjustment that is to be refunded to the buyer.
Column Descriptions:
| Name | Type | Description |
| RMAIADJCRD_ID | BIGINT NOT NULL | Generated unique key. |
| RMAITEM_ID | BIGINT NOT NULL | The RMA item for which the credit applies. |
| ORDADJUST_ID | BIGINT NOT NULL | The order adjustment that is being credited. |
| AMOUNT | DECIMAL (20,5) NOT NULL DEFAULT 0 | Amount of the RMA item adjustment credit. |
| OPTCOUNTER | SMALLINT | 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> | RMAIADJCRD_ID | Primary Key |
| I0000214 | RMAITEM_ID | Non-Unique Index |
| I0000746 | ORDADJUST_ID | Non-Unique Index |
Constrained By Parent Tables:
| Constraint | Columns | Parent Table | Parent Columns | Type |
| F_704 | ORDADJUST_ID | ORDADJUST | ORDADJUST_ID | Cascade |
| F_705 | RMAITEM_ID | RMAITEM | RMAITEM_ID | Cascade |