SAP Sales and Distribution (SD) · Schema
ProductSalesDelivery
Product sales and delivery entity
DistributionERPODataS/4HANASalesSAP
Properties
| Name | Type | Description |
|---|---|---|
| Product | string | Material number |
| ProductSalesOrg | string | Sales organization |
| ProductDistributionChnl | string | Distribution channel |
| MinimumOrderQuantity | string | Minimum order quantity |
| DeliveryQuantityUnit | string | Delivery unit |
| DeliveryQuantity | string | Delivery quantity |
| SupplyingPlant | string | Delivering plant |
| ItemCategoryGroup | string | Item category group |
| AccountDetnProductGroup | string | Account assignment group |
| ProductSalesStatus | string | Distribution-chain-specific status |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProductSalesDelivery",
"title": "ProductSalesDelivery",
"type": "object",
"description": "Product sales and delivery entity",
"properties": {
"Product": {
"type": "string",
"maxLength": 40,
"description": "Material number"
},
"ProductSalesOrg": {
"type": "string",
"maxLength": 4,
"description": "Sales organization"
},
"ProductDistributionChnl": {
"type": "string",
"maxLength": 2,
"description": "Distribution channel"
},
"MinimumOrderQuantity": {
"type": "string",
"description": "Minimum order quantity"
},
"DeliveryQuantityUnit": {
"type": "string",
"maxLength": 3,
"description": "Delivery unit"
},
"DeliveryQuantity": {
"type": "string",
"description": "Delivery quantity"
},
"SupplyingPlant": {
"type": "string",
"maxLength": 4,
"description": "Delivering plant"
},
"ItemCategoryGroup": {
"type": "string",
"maxLength": 4,
"description": "Item category group"
},
"AccountDetnProductGroup": {
"type": "string",
"maxLength": 2,
"description": "Account assignment group"
},
"ProductSalesStatus": {
"type": "string",
"maxLength": 2,
"description": "Distribution-chain-specific status"
}
}
}