/ProductionOrders
Description
Creates a production order using the standard production list stored in the item master, by specifying the item number of a result item and the required quantity. Alternatively, a production order can be created with any production list by specifying a production list number, one or more article numbers of result articles and the requirement quantities.
- The right ‘Anlegen’ is required for the data ‘Fertigungsauftrag’.
- Uses backend process
Request
URI Parameters
None.
Body Parameters
ArticleNumber
string
Shows the item number
Quantity
decimal number
Indicates the amount
ProductionListIdentifier
string
Optional specification of a production list
ManufactureArticles
Collection of ProductionOrderArticle
Specification of result articles with requirement quantities
Request Formats
application/json
Example:
{
"ArticleNumber": "sample string 1",
"Quantity": 1.1,
"ProductionListIdentifier": "sample string 2",
"ManufactureArticles": [
{
"ArticleNumber": "sample string 1",
"Quantity": 1.1
},
{
"ArticleNumber": "sample string 1",
"Quantity": 1.1
}
]
}
Response
Resource Description
ProductionOrderIdentifier
string
Nummer des Produktionsauftrages
Response Formats
application/json
Example:
{
"ProductionOrderIdentifier": "sample string 1"
}