- 2 Minutes to read
- PDF
Manufacturing Job Object
- 2 Minutes to read
- PDF
Manufacturing Job Object
MONumber
Description: A unique alphanumeric value to identify this manufacturing order in the warehouse.
Data Type: String
Data Length: 50
Required: Yes
WarehouseName
Description: The warehouse name.
Data Type: String
Data Length: 100
Required: Yes
FinishedGoodItemNumber
Description: The item number of the good being created.
Data Type: String
Data Length: 50
Required: Yes
BinNumber
Description: An alphanumeric value that uniquely identifies the bin to use.
Data Type: String
Data Length: 50
Required: Yes, must be a manufacturing bin.
QuantityToCreate
Description: The quantity for the finished good.
Data Type: Number
Required: Yes
QuantityPerLP
Description: The quantity of the finished good that can exist on 1 license plate.
Data Type: Number
Required: No
CreateWowJob
Description: True will create the manufacturing job in the environment, ready to start.
Data Type: Boolean
Values: true, false
Required: No
CoreValue
Description: The core value of the finished good.
Data Type: String
Data Length: 50
Required: Yes, if item is LOT, SERIAL, or DATE.
AllocationSetName
Description: The name of the allocation set to use for the finished good.
Data Type: String
Data Length: 100
Required: No
WarehouseID
Description: The unique identifier for the warehouse
Data Type: Int
Note: Read Only
KitAssemblyID
Description: The unique identifier for a finished good
Data Type: Int
Note: Read Only
QuantityCreated
Description: The quantity of the finished good created.
Data Type: Decimal
Note: Read Only
ComponentsUsed
Description: Displays all the items that were consumed to create the finished good.
Data Type: Array
Note: Read Only
Example
When using the PUT request to import a manufacturing job:
[
{
"MONumber": "", //Required - must be unique unless CreateWowJob is false
"WarehouseName": "", //Required - Character Limit 100
"FinishedGoodItemNumber": "", //Required - Must have a BOM on file - Character limit 50
"BinNumber": "", //Required - Must be a manufacturing bin - Character limit 50
"QuantityToCreate": "", //Required - Must be greater than 0
"QuantityPerLP": "", //Optional
"CreateWowJob": "", //Optional - False if left blank
"CoreValue": "", //Required if item is LOT, SERIAL, or DATE tracked
"AllocationSetName: "" //Optional
}
]
When using the GET request to view manufacturing exports:
[
{
"MONumber": "MO001",
"WarehouseName": "Warehouse",
"FinishedGoodItemNumber": "Item-01",
"BinNumber": "ManufBin1",
"QuantityToCreate": 2,
"QuantityPerLP": 2,
"CreateWowJob": false,
"CoreValue": "",
"AllocationSetName": null,
"WarehouseID": 0,
"JobID": 0,
"KitAssemblyID": 1,
"QuantityCreated": 2,
"ComponentsUsed": [
{
"ItemNumber": "KitItem01",
"CoreItemType": "Basic",
"UomTypeDesc": "EA",
"BaseConversionFactor": 1,
"SignificantDigits": 0,
"QuantityRequired": 2,
"PickOrder": 1,
"QuantityUsed": 2,
"CoreValue": ""
}
]
}
]