SAP Sales and Distribution (SD) · Schema
BillingDocumentItem
Billing document item entity (A_BillingDocumentItem)
DistributionERPODataS/4HANASalesSAP
Properties
| Name | Type | Description |
|---|---|---|
| BillingDocument | string | Billing document number |
| BillingDocumentItem | string | Billing item number |
| Material | string | Material number |
| Plant | string | Plant |
| BillingQuantity | string | Billing quantity in sales unit |
| BillingQuantityUnit | string | Sales unit |
| NetAmount | string | Net value of the item |
| GrossAmount | string | Gross value of the item |
| TaxAmount | string | Tax amount |
| TransactionCurrency | string | SD document currency |
| SalesDocument | string | Reference sales document |
| SalesDocumentItem | string | Reference sales document item |
| ReferenceSDDocument | string | Reference delivery document |
| ReferenceSDDocumentItem | string | Reference delivery item |
| MaterialGroup | string | Material group |
| Batch | string | Batch number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BillingDocumentItem",
"title": "BillingDocumentItem",
"type": "object",
"description": "Billing document item entity (A_BillingDocumentItem)",
"properties": {
"BillingDocument": {
"type": "string",
"maxLength": 10,
"description": "Billing document number"
},
"BillingDocumentItem": {
"type": "string",
"maxLength": 6,
"description": "Billing item number"
},
"Material": {
"type": "string",
"maxLength": 40,
"description": "Material number"
},
"Plant": {
"type": "string",
"maxLength": 4,
"description": "Plant"
},
"BillingQuantity": {
"type": "string",
"description": "Billing quantity in sales unit"
},
"BillingQuantityUnit": {
"type": "string",
"maxLength": 3,
"description": "Sales unit"
},
"NetAmount": {
"type": "string",
"description": "Net value of the item"
},
"GrossAmount": {
"type": "string",
"description": "Gross value of the item"
},
"TaxAmount": {
"type": "string",
"description": "Tax amount"
},
"TransactionCurrency": {
"type": "string",
"maxLength": 5,
"description": "SD document currency"
},
"SalesDocument": {
"type": "string",
"maxLength": 10,
"description": "Reference sales document"
},
"SalesDocumentItem": {
"type": "string",
"maxLength": 6,
"description": "Reference sales document item"
},
"ReferenceSDDocument": {
"type": "string",
"maxLength": 10,
"description": "Reference delivery document"
},
"ReferenceSDDocumentItem": {
"type": "string",
"maxLength": 6,
"description": "Reference delivery item"
},
"MaterialGroup": {
"type": "string",
"maxLength": 9,
"description": "Material group"
},
"Batch": {
"type": "string",
"maxLength": 10,
"description": "Batch number"
}
}
}