info@selectline.de | +49 391 5555-080 | SelectLine - suits every company
/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

Model: ProductionOrderCreate
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

Model: ProductionOrderCreated
ProductionOrderIdentifier
string
Nummer des Produktionsauftrages

Response Formats
application/json
Example:
    {
  "ProductionOrderIdentifier": "sample string 1"
}