SalesOrderItemCreate

Sales order item creation payload

DistributionERPODataS/4HANASalesSAP

Properties

Name Type Description
Material string Material number
RequestedQuantity string Order quantity
RequestedQuantityUnit string Sales unit
Plant string Plant
SalesOrderItemText string Item text
View JSON Schema on GitHub

JSON Schema

sap-sales-and-distribution-sd-salesorderitemcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SalesOrderItemCreate",
  "title": "SalesOrderItemCreate",
  "type": "object",
  "description": "Sales order item creation payload",
  "properties": {
    "Material": {
      "type": "string",
      "maxLength": 40,
      "description": "Material number"
    },
    "RequestedQuantity": {
      "type": "string",
      "description": "Order quantity"
    },
    "RequestedQuantityUnit": {
      "type": "string",
      "maxLength": 3,
      "description": "Sales unit"
    },
    "Plant": {
      "type": "string",
      "maxLength": 4,
      "description": "Plant"
    },
    "SalesOrderItemText": {
      "type": "string",
      "maxLength": 40,
      "description": "Item text"
    }
  }
}