SAP Sales and Distribution (SD) · Schema
SlsPrcgCndnRecdValidity
Condition record validity entity (A_SlsPrcgCndnRecdValidity)
DistributionERPODataS/4HANASalesSAP
Properties
| Name | Type | Description |
|---|---|---|
| ConditionRecord | string | Condition record number |
| ConditionValidityEndDate | string | Validity end date |
| ConditionValidityStartDate | string | Validity start date |
| ConditionType | string | Condition type |
| SalesOrganization | string | Sales organization |
| DistributionChannel | string | Distribution channel |
| Customer | string | Customer number |
| Material | string | Material number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SlsPrcgCndnRecdValidity",
"title": "SlsPrcgCndnRecdValidity",
"type": "object",
"description": "Condition record validity entity (A_SlsPrcgCndnRecdValidity)",
"properties": {
"ConditionRecord": {
"type": "string",
"maxLength": 10,
"description": "Condition record number"
},
"ConditionValidityEndDate": {
"type": "string",
"format": "date",
"description": "Validity end date"
},
"ConditionValidityStartDate": {
"type": "string",
"format": "date",
"description": "Validity start date"
},
"ConditionType": {
"type": "string",
"maxLength": 4,
"description": "Condition type"
},
"SalesOrganization": {
"type": "string",
"maxLength": 4,
"description": "Sales organization"
},
"DistributionChannel": {
"type": "string",
"maxLength": 2,
"description": "Distribution channel"
},
"Customer": {
"type": "string",
"maxLength": 10,
"description": "Customer number"
},
"Material": {
"type": "string",
"maxLength": 40,
"description": "Material number"
}
}
}