- 2 Minutes to read
- PDF
Inventory Adjustment Object
- 2 Minutes to read
- PDF
Inventory Adjustment Object
BinNumber
Description: The alphanumeric name for the position in the warehouse where the inventory is or can be stored.
Data Type: String
Data Length: 10
Required: True
Note: For a description of Bins in WithoutWire, read Bin Overview.
ItemNumber
Description: Uniquely identifies the item to be adjusted.
Data Type: String
Data Length: 50
Required: True
CoreValue
Description: Determines if the item is Lot, Serial, or Date tracked.
Values: BASIC, LOT, SERIAL, or DATE
This value must be empty if the item is set to BASIC
If SERIAL is chosen, then the quantity cannot be greater than 1.
If DATE is chosen, then the value must be a valid date.
Required: True if LOT, SERIAL, or DATE.
Warehouse
Description: The name of the warehouse to make the adjustment against.
Data Type: String
Data Length: 100
Required: True
Qty
Description: The quantity to adjust.
Data Type: Number
Required: True
MovementType
Description: The type of adjustment being made.
Data Type: String
Values: Adjustment In+, Damage, Obsolescence, Physical Inventory, Variance.
Required: True
ErpShortCode
Data Type: String
Required: False
Note: Use “default” as the default
Note
Description: Optional notes about the adjustment.
Data Type: String
Required: Depends on configuration setting.
Note: Leave blank if not used
OrderNumber
Default to an empty string.
Data Type: String
Required: True
UnitNumber
Default to an empty string.
Data Type: String
Required: True
InternalOnly
If true, WoW will not export the adjustment to the ERP. Defaults to false.
Data Type: Boolean
Required: No
Example:
[
{
"BinNumber": "Bin001", //Required - Character limit 50
"ItemNumber": "Item-01", //Required - Character limit 50
"CoreValue": "", //Required if core item type is LOT, SERIAL, DATE - Character limit 50
"Warehouse": "Warehouse", //Required - Character limit 100
"Qty": "5", //Required
"MovementType": "Adjustment in+", //Required (Adjustment In+, Damage, Obsolescence, Physical Inventory, Variance)
"ErpShortCode": "", //Optional
"Note": "Test", //Optional or Required depending on configuration setting - Character limit 500
"OrderNumber": "", //Optional - Character Limit 50
"UnitNumber": "", //Optional - Character Limit 50
"InternalOnly": "" //Optional - False if left blank, 1 for WoW only
}
]