Customer

Customer entity (A_Customer)

DistributionERPODataS/4HANASalesSAP

Properties

Name Type Description
Customer string Customer number
CustomerAccountGroup string Customer account group
CustomerName string Customer name
DeliveryIsBlocked string Delivery block
OrderIsBlocked string Order block
PostingIsBlocked boolean Posting block
CreationDate string Customer creation date
CustomerClassification string Customer classification
IndustryCode1 string Industry key
NFPartnerIsNaturalPerson string Natural person indicator
View JSON Schema on GitHub

JSON Schema

sap-sales-and-distribution-sd-customer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Customer",
  "title": "Customer",
  "type": "object",
  "description": "Customer entity (A_Customer)",
  "properties": {
    "Customer": {
      "type": "string",
      "maxLength": 10,
      "description": "Customer number"
    },
    "CustomerAccountGroup": {
      "type": "string",
      "maxLength": 4,
      "description": "Customer account group"
    },
    "CustomerName": {
      "type": "string",
      "maxLength": 80,
      "description": "Customer name"
    },
    "DeliveryIsBlocked": {
      "type": "string",
      "maxLength": 2,
      "description": "Delivery block"
    },
    "OrderIsBlocked": {
      "type": "string",
      "maxLength": 2,
      "description": "Order block"
    },
    "PostingIsBlocked": {
      "type": "boolean",
      "description": "Posting block"
    },
    "CreationDate": {
      "type": "string",
      "format": "date",
      "description": "Customer creation date"
    },
    "CustomerClassification": {
      "type": "string",
      "maxLength": 2,
      "description": "Customer classification"
    },
    "IndustryCode1": {
      "type": "string",
      "maxLength": 4,
      "description": "Industry key"
    },
    "NFPartnerIsNaturalPerson": {
      "type": "string",
      "maxLength": 1,
      "description": "Natural person indicator"
    }
  }
}