OutbDeliveryHeaderCreate

Outbound delivery creation payload

DistributionERPODataS/4HANASalesSAP

Properties

Name Type Description
DeliveryDocumentType string
ShippingPoint string
SoldToParty string
DeliveryDate string
to_DeliveryDocumentItem object
View JSON Schema on GitHub

JSON Schema

sap-sales-and-distribution-sd-outbdeliveryheadercreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OutbDeliveryHeaderCreate",
  "title": "OutbDeliveryHeaderCreate",
  "type": "object",
  "description": "Outbound delivery creation payload",
  "properties": {
    "DeliveryDocumentType": {
      "type": "string",
      "maxLength": 4
    },
    "ShippingPoint": {
      "type": "string",
      "maxLength": 4
    },
    "SoldToParty": {
      "type": "string",
      "maxLength": 10
    },
    "DeliveryDate": {
      "type": "string",
      "format": "date"
    },
    "to_DeliveryDocumentItem": {
      "type": "object",
      "properties": {
        "results": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/OutbDeliveryItemCreate"
          }
        }
      }
    }
  }
}