SAP Sales and Distribution (SD) · Schema
ReturnsDeliveryHeader
Customer returns delivery header entity
DistributionERPODataS/4HANASalesSAP
Properties
| Name | Type | Description |
|---|---|---|
| DeliveryDocument | string | Delivery document number |
| DeliveryDocumentType | string | Delivery type |
| SoldToParty | string | Sold-to party |
| ShipToParty | string | Ship-to party |
| ShippingPoint | string | Receiving point |
| DeliveryDate | string | Delivery date |
| CreationDate | string | Creation date |
| ActualGoodsMovementDate | string | Actual goods receipt date |
| OverallGoodsMovementStatus | string | Goods receipt status |
| OverallPickingStatus | string | Putaway status |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ReturnsDeliveryHeader",
"title": "ReturnsDeliveryHeader",
"type": "object",
"description": "Customer returns delivery header entity",
"properties": {
"DeliveryDocument": {
"type": "string",
"maxLength": 10,
"description": "Delivery document number"
},
"DeliveryDocumentType": {
"type": "string",
"maxLength": 4,
"description": "Delivery type"
},
"SoldToParty": {
"type": "string",
"maxLength": 10,
"description": "Sold-to party"
},
"ShipToParty": {
"type": "string",
"maxLength": 10,
"description": "Ship-to party"
},
"ShippingPoint": {
"type": "string",
"maxLength": 4,
"description": "Receiving point"
},
"DeliveryDate": {
"type": "string",
"format": "date",
"description": "Delivery date"
},
"CreationDate": {
"type": "string",
"format": "date",
"description": "Creation date"
},
"ActualGoodsMovementDate": {
"type": "string",
"format": "date",
"description": "Actual goods receipt date"
},
"OverallGoodsMovementStatus": {
"type": "string",
"maxLength": 1,
"description": "Goods receipt status"
},
"OverallPickingStatus": {
"type": "string",
"maxLength": 1,
"description": "Putaway status"
}
}
}