BusinessPartnerAddressCreate

Business partner address creation payload

DistributionERPODataS/4HANASalesSAP

Properties

Name Type Description
StreetName string
HouseNumber string
PostalCode string
CityName string
Region string
Country string
Language string
View JSON Schema on GitHub

JSON Schema

sap-sales-and-distribution-sd-businesspartneraddresscreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BusinessPartnerAddressCreate",
  "title": "BusinessPartnerAddressCreate",
  "type": "object",
  "description": "Business partner address creation payload",
  "properties": {
    "StreetName": {
      "type": "string",
      "maxLength": 60
    },
    "HouseNumber": {
      "type": "string",
      "maxLength": 10
    },
    "PostalCode": {
      "type": "string",
      "maxLength": 10
    },
    "CityName": {
      "type": "string",
      "maxLength": 40
    },
    "Region": {
      "type": "string",
      "maxLength": 3
    },
    "Country": {
      "type": "string",
      "maxLength": 3
    },
    "Language": {
      "type": "string",
      "maxLength": 2
    }
  }
}