Inventory Object
  • 2 Minutes to read
  • PDF

Inventory Object

  • PDF

Article Summary

Inventory Object

 

 

WarehouseName

 

Description: Uniquely identifies the warehouse name where the inventory resides.

Data Type: String

Data Length: 100

Required: Yes

 

 

 

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: Yes

Note: For a description of Bins in WithoutWire, read the Bin Overview.

 

 

 

LicensePlateNumber

 

Description: The alphanumeric name for the pallet in the warehouse where the inventory is, or can be stored.

Data Type: String

Data Length: 10

Required: Yes

Note: To better understand how a license plate may be used, refer to the License Plate documentation. Default to an empty string if placing inventory right into the bin.

ItemNumber

 

Description: Uniquely identifies the item in inventory

Data Type: String

Data Length: 50

Required: Yes

 

 

 

ItemUoM

 

Description: Represents the Unit of Measure for the item.

Data Type: String

Data Length: 50

Required: Yes

 

 

 

BaseConvFactor

 

Description: Represents the conversion factor to the base unit of measure for the order.

Data Type: Decimal

Required: Yes

Note: An example would be if the base unit of measurement were “Can” the base conversion factor for a case would be 24.

 

 

 

BinSequence

 

Description: Each item in inventory can have one primary location. Use 1 to indicate a primary location.

Data Type: Number

 

 

 

MinQuantity

 

Description: Represents the minimum quantity for an item’s primary location.

Data Type: Number

Note: Can default to zero.

 

 

 

MaxQuantity

 

Description: Represents the maximum quantity for an item's primary location.

Data Type: Number

Note: Can default to zero.

 

 

 

Active

 

Description: Determines if an item is active in the system.

Data Type: Boolean

Value: true, false

Note: This needs to be true if you want to track inventory against the item.

 

 

 

CoreValueType

 

Description: Determines if the item is Lot, Serial, or Date Tracked.

Values: BASIC, LOT, SERIAL, or DATE.

Data Type: String

Required: Yes

 

 

 

CoreValue

 

Description: The Lot, Serial, or Date value.

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

Data Type: String

Required: Yes

 

 

 

Quantity

 

Description: The quantity available for the item in the specific bin of license plate referenced above.

Data Type: Decimal

Required: Yes

Note: This value must be greater than 1.

 

 

 

Example

 

 [    

    {

           "WarehouseName": "Appolis DC",

          "BinNumber": "Bin001",

           "LicensePlateNumber": "LP00212",

           "ItemNumber":   "Item001",

           "ItemUom": "EA",

           "BaseConvFactor": 1,

           "BinSequence": 9999,

           "MinQuantity": 0,

           "MaxQuantity": 2000,

          "Active": true,

           "CoreValueType": "BASIC",

           "CoreValue": "",

           "Quantity": 1500

     }

]