SalesOrderItemUpdate

Sales order item update payload

DistributionERPODataS/4HANASalesSAP

Properties

Name Type Description
RequestedQuantity string Order quantity
Plant string
StorageLocation string
ItemBillingBlockReason string
SalesOrderItemText string
View JSON Schema on GitHub

JSON Schema

sap-sales-and-distribution-sd-salesorderitemupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SalesOrderItemUpdate",
  "title": "SalesOrderItemUpdate",
  "type": "object",
  "description": "Sales order item update payload",
  "properties": {
    "RequestedQuantity": {
      "type": "string",
      "description": "Order quantity"
    },
    "Plant": {
      "type": "string",
      "maxLength": 4
    },
    "StorageLocation": {
      "type": "string",
      "maxLength": 4
    },
    "ItemBillingBlockReason": {
      "type": "string",
      "maxLength": 2
    },
    "SalesOrderItemText": {
      "type": "string",
      "maxLength": 40
    }
  }
}