This table stores return disposition codes to describe how a received item is disposed.
Column Descriptions
Column Name
| Column Type
| Description |
RTNDSPCODE_ID
| INTEGER NOT NULL
| Generated unique key.
|
RETURNTOINVENTORY
| CHAR(1) NOT NULL DEFAULT 'Y'
| A flag to decide if an item with this disposition code should be returned to inventory or not, as follows:
N = do not return to inventory
Y = return to inventory
|
STOREENT_ID
| INTEGER NOT NULL
| Store Entity of the owner.
|
CODE
| CHAR(10) NOT NULL
| Code used to reference the disposition code.
|
MARKFORDELETE
| INTEGER NOT NULL DEFAULT 0
| Indicates if this disposition code has been marked for deletion:
0 = No.
1 = Yes, this disposition code has been marked for deletion.
|
OPTCOUNTER
| SMALLINT
| Reserved for IBM internal use.
|