FUNCTION CommitQuantity(item$, whse$, var$, qty)
To increment quantities or one variable in the IM_ItemWarehouse table
|
Parameter | Description |
item$ |
[input, string] Item Code to increment warehouse quantities for |
whse$ |
[input, string] Warehouse Code to increment quantity for |
var$ |
[input, string] Variable name in the IM_ItemWarehouse table to increment |
qty |
[input, numeric] Numeric value to increment the variables above |
|
Returns |
SUCCESS is returned if values were incremented |
Returns |
FAILURE is returned if invalid, item, or warehouse. |
Returns |
NEW (2) is returned if a new item warehouse record was added |
|
FUNCTION CommitQuantity(item$, whse$, vars$, qtys$)
To increment quantities or one variable in the IM_ItemWarehouse table
|
Parameter | Description |
item$ |
[input, string] Item Code to increment warehouse quantities for |
whse$ |
[input, string] Warehouse Code to increment quantity for |
var$ |
[input, string] SEP separated list of variables in the IM_ItemWarehouse table to increment |
qtys$ |
[input, string] SEP separated list of values to increment the variables above |
|
Returns |
SUCCESS is returned if values were incremented |
Returns |
FAILURE is returned if invalid, item, or warehouse. |
Returns |
NEW (2) is returned if a new item warehouse record was added |
|