DebitMemoRequestCreate

DistributionERPODataS/4HANASalesSAP

Properties

Name Type Description
DebitMemoRequestType string
SalesOrganization string
DistributionChannel string
OrganizationDivision string
SoldToParty string
DebitMemoRequestDate string
SDDocumentReason string
to_Item object
View JSON Schema on GitHub

JSON Schema

sap-sales-and-distribution-sd-debitmemorequestcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DebitMemoRequestCreate",
  "title": "DebitMemoRequestCreate",
  "type": "object",
  "required": [
    "DebitMemoRequestType",
    "SalesOrganization",
    "DistributionChannel",
    "OrganizationDivision"
  ],
  "properties": {
    "DebitMemoRequestType": {
      "type": "string",
      "maxLength": 4
    },
    "SalesOrganization": {
      "type": "string",
      "maxLength": 4
    },
    "DistributionChannel": {
      "type": "string",
      "maxLength": 2
    },
    "OrganizationDivision": {
      "type": "string",
      "maxLength": 2
    },
    "SoldToParty": {
      "type": "string",
      "maxLength": 10
    },
    "DebitMemoRequestDate": {
      "type": "string",
      "format": "date"
    },
    "SDDocumentReason": {
      "type": "string",
      "maxLength": 3
    },
    "to_Item": {
      "type": "object",
      "properties": {
        "results": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/DebitMemoRequestItemCreate"
          }
        }
      }
    }
  }
}