Overview
The ERP SD Sales Order Proxy service is a business service that is used for manipulating sales orders in the connected SAP ERP system.
Using this service, you can:
- Get recent ERP SD sales orders using the relevant ERP customer ID.
- Get all ERP SD sales orders using the relevant ERP customer ID, material ID, and creation date.
- Get detailed information of an ERP SD sales order using the relevant sales order ID.
- Simulate ERP sales order creation.
- Create ERP SD sales orders using two approaches with different BAPIs. For more information about the BAPIs, see SAP Note 93091.
- Change ERP SD sales orders using a custom remote-enabled function module. For more information about the function module, see SAP Note 2339873.
Before you use the service, you need to configure the ERP system settings in the ERP SD Configuration service.
API Reference
/{tenant}/erpsalesorder/customer/{customerId}/recentItems
Get recent ERP SD sales order items.
/{tenant}/erpsalesorder/customer/{customerId}/recentItems
Get recent ERP SD sales orders for the given ERP customer.
The statuses that are treated to be CLOSE
: completed
The statuses that are treated to be OPEN
: created
Required scope: hybris.sdorderproxy_view
get /{tenant}/erpsalesorder/customer/{customerId}/recentItems
Get recent ERP SD sales orders for the given ERP customer.
The statuses that are treated to be CLOSE
: completed
The statuses that are treated to be OPEN
: created
Required scope: hybris.sdorderproxy_view
URI Parameters
- Tenant: required (string - minLength: 3 - maxLength: 16 - pattern: [a-z][a-z0-9]+)
Stands for the "project" that requests this resource. Must match the "project" that is associated with the access token in the Authorization header.
Example:
myexampleshop
- customerId: required (string)
Headers
- Accept-Language: (string - repeat: true)
The value of the locale identifier of the language in which the attribute should be returned. Provide several values separated by comma, in order to specify fallback languages.
Example:
pl
- hybris-languages: (string - repeat: true)
Comma separated list of language identifiers for which the localization for an attribute should be provided.
Example:
en,pl,it
- Authorization: required (string)
Used to send a valid OAuth2 access token.
Example:
Bearer access_token
Query Parameters
- pageNumber: (integer - default: 1 - minimum: 1)
The page number to be retrieved where the size of the pages must be specified by the pageSize parameter. The number of the first page is 1.
Example:
1
- pageSize: (integer - default: 16 - minimum: 1)
The number of documents being retrieved on the page.
Example:
16
- qSalesOrganization: (string)
Sales Organization
Example:
1000
HTTP status code 200
OK
Headers
- Link: required (string - repeat: true)
Link to the current page, the next page and the previous page. Marked accordingly with rel self, rel next and rel prev. The syntax must be conform to RFC-5988. The link to the current page (self) is required and must be provided always. The link to the next page (next) is optional. If not present, the next page is not available, as the current page is the last page of the result. The link to the previous page (prev) is optional. If not present, the previous page is not available, as the current page is the first page of the result.
Example:
<http://sample.com?pageNumber=2&pageSize=10>; rel="self", <http://sample.com?pageNumber=3&pageSize=10>; rel="next"
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "RecentSDOrderListResponse",
"type": "object",
"properties": {
"numberOfClosedItems": {
"title": "numberOfClosedItems",
"type": "integer",
"description": "Number of closed sales order"
},
"numberOfOpenItems": {
"title": "numberOfOpenItems",
"type": "integer",
"description": "Number of open sales order"
},
"recentClosedItems": {
"title": "recentClosedItems",
"type": "array",
"description": "array of the most recent closed order with header item",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "RecentSDOrderItem",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier of the SD sales order"
},
"name": {
"type": "string",
"description": "human-readable identifier of the SD sales order"
},
"description": {
"type": "string",
"description": "description of the SD sales order"
},
"statusDescription": {
"type": "string",
"description": "status descripiton of the SD sales order"
},
"modifiedAt": {
"type": "string",
"description": "latest modification time with UTC format for the SD sales order"
}
},
"required": [
"id",
"name",
"statusDescription",
"modifiedAt"
]
}
},
"recentOpenItems": {
"title": "recentOpenItems",
"type": "array",
"description": "array of the most recent open order with header item",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "RecentSDOrderItem",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier of the SD sales order"
},
"name": {
"type": "string",
"description": "human-readable identifier of the SD sales order"
},
"description": {
"type": "string",
"description": "description of the SD sales order"
},
"statusDescription": {
"type": "string",
"description": "status descripiton of the SD sales order"
},
"modifiedAt": {
"type": "string",
"description": "latest modification time with UTC format for the SD sales order"
}
},
"required": [
"id",
"name",
"statusDescription",
"modifiedAt"
]
}
}
},
"required": [
"numberOfClosedItems",
"numberOfOpenItems",
"recentClosedItems",
"recentOpenItems"
]
}
Example:
{
"numberOfClosedItems": 33,
"numberOfOpenItems": 50,
"recentClosedItems": [
{
"id": "0000000642",
"name": "0000000642",
"description": "Notebook X15",
"statusDescription": "Completed",
"modifiedAt": "2015-03-19 11:13:08"
},
{
"id": "0000000622",
"name": "0000000622",
"description": "Notebook X15",
"statusDescription": "Completed",
"modifiedAt": "2015-03-19 10:09:05"
},
{
"id": "0000000602",
"name": "0000000602",
"description": "Notebook X15",
"statusDescription": "Completed",
"modifiedAt": "2015-03-19 09:38:24"
}
],
"recentOpenItems": [
{
"id": "0000000779",
"name": "0000000779",
"description": "Notebook X15",
"statusDescription": "Not delivered",
"modifiedAt": "2015-09-02 09:24:38"
},
{
"id": "0000000774",
"name": "0000000774",
"description": "Notebook X15",
"statusDescription": "Not delivered",
"modifiedAt": "2015-09-02 09:04:58"
},
{
"id": "0000000760",
"name": "0000000760",
"description": "Notebook X15",
"statusDescription": "Not delivered",
"modifiedAt": "2015-09-01 10:43:58"
}
]
}
HTTP status code 400
Request syntactically incorrect. Any details will be provided within the response payload.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 400,
"message": "There are validation problems, see details section for more information",
"moreInfo": "https://api.yaas.io/patterns/errortypes.html",
"type": "validation_violation",
"details": [
{
"field": "Accept-Language",
"message": "not a language",
"type": "invalid_header"
}
]
}
HTTP status code 401
Given request is unauthorized. Bad or expired token. Reauthenticate the user. Any details will be provided within the response payload.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 401,
"message": "Authorization: Unauthorized. Bearer TOKEN is invalid",
"type": "insufficient_credentials",
"moreInfo": "https://api.yaas.io/patterns/errortypes.html"
}
HTTP status code 403
Evaluated request scopes in access token are not sufficient and do not match required scopes.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 403,
"message": "Given request does not have required scopes in access token. It is not authorized to perform this operation.",
"type": "insufficient_permissions"
}
HTTP status code 408
Request timed out.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 408,
"type": "request_timeout",
"message": "The request timed out."
}
HTTP status code 500
An internal server error occurred.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 500,
"type": "internal_service_error",
"message": "An internal server error occurred."
}
/{tenant}/erpsalesorder/customer/{customerId}/allItems
Get brief information of ERP SD sales order items.
/{tenant}/erpsalesorder/customer/{customerId}/allItems
Get a list of ERP SD sales orders.
Required scope: hybris.sdorderproxy_view
get /{tenant}/erpsalesorder/customer/{customerId}/allItems
Get a list of ERP SD sales orders.
Required scope: hybris.sdorderproxy_view
URI Parameters
- Tenant: required (string - minLength: 3 - maxLength: 16 - pattern: [a-z][a-z0-9]+)
Stands for the "project" that requests this resource. Must match the "project" that is associated with the access token in the Authorization header.
Example:
myexampleshop
- customerId: required (string)
Headers
- Accept-Language: (string - repeat: true)
The value of the locale identifier of the language in which the attribute should be returned. Provide several values separated by comma, in order to specify fallback languages.
Example:
pl
- hybris-languages: (string - repeat: true)
Comma separated list of language identifiers for which the localization for an attribute should be provided.
Example:
en,pl,it
- Authorization: required (string)
Used to send a valid OAuth2 access token.
Example:
Bearer access_token
Query Parameters
- pageNumber: (integer - default: 1 - minimum: 1)
The page number to be retrieved where the size of the pages must be specified by the pageSize parameter. The number of the first page is 1.
Example:
1
- pageSize: (integer - default: 16 - minimum: 1)
The number of documents being retrieved on the page.
Example:
16
- qSalesOrganization: (string)
Sales Organization
Example:
1000
- qMaterialId: (string)
Material identifier
Example:
H18
- qCreationDate: (string - pattern: ([0-9]{3}[1-9]|[0-9]{2}[1-9][0-9]{1}|[0-9]{1}[1-9][0-9]{2}|[1-9][0-9]{3})[-|.|/](((0[13578]|1[02])-(0[1-9]|[12][0-9]|3[01]))|((0[469]|11)[-|.|/](0[1-9]|[12][0-9]|30))|(02-(0[1-9]|[1][0-9]|2[0-8]))) )
Creation date
HTTP status code 200
OK
Headers
- Link: required (string - repeat: true)
Link to the current page, the next page and the previous page. Marked accordingly with rel self, rel next and rel prev. The syntax must be conform to RFC-5988. The link to the current page (self) is required and must be provided always. The link to the next page (next) is optional. If not present, the next page is not available, as the current page is the last page of the result. The link to the previous page (prev) is optional. If not present, the previous page is not available, as the current page is the first page of the result.
Example:
<http://sample.com?pageNumber=2&pageSize=10>; rel="self", <http://sample.com?pageNumber=3&pageSize=10>; rel="next"
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "SDOrderAllItemsListResponse",
"type": "object",
"properties": {
"RETURN": {
"title": "BAPIRETURN",
"type": "object",
"description": "Error Text",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"TYPE": {
"title": "TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"CODE": {
"title": "CODE",
"type": "string",
"description": "",
"maxLength": 5
},
"MESSAGE": {
"title": "MESSAGE",
"type": "string",
"description": "",
"maxLength": 220
},
"LOG_NO": {
"title": "LOG_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"LOG_MSG_NO": {
"title": "LOG_MSG_NO",
"type": "integer",
"description": ""
},
"MESSAGE_V1": {
"title": "MESSAGE_V1",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V2": {
"title": "MESSAGE_V2",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V3": {
"title": "MESSAGE_V3",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V4": {
"title": "MESSAGE_V4",
"type": "string",
"description": "",
"maxLength": 50
}
},
"required": []
},
"EXTENSIONEX": {
"title": "EXTENSIONEX",
"type": "array",
"description": "Reference Structure for BAPI Parameters ExtensionIn/ExtensionOut",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIPAREX",
"type": "object",
"properties": {
"STRUCTURE": {
"title": "STRUCTURE",
"type": "string",
"description": "",
"maxLength": 30
},
"VALUEPART1": {
"title": "VALUEPART1",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART2": {
"title": "VALUEPART2",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART3": {
"title": "VALUEPART3",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART4": {
"title": "VALUEPART4",
"type": "string",
"description": "",
"maxLength": 240
}
},
"required": []
}
},
"EXTENSIONIN": {
"title": "EXTENSIONIN",
"type": "array",
"description": "Reference Structure for BAPI Parameters ExtensionIn/ExtensionOut",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIPAREX",
"type": "object",
"properties": {
"STRUCTURE": {
"title": "STRUCTURE",
"type": "string",
"description": "",
"maxLength": 30
},
"VALUEPART1": {
"title": "VALUEPART1",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART2": {
"title": "VALUEPART2",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART3": {
"title": "VALUEPART3",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART4": {
"title": "VALUEPART4",
"type": "string",
"description": "",
"maxLength": 240
}
},
"required": []
}
},
"SALES_ORDERS": {
"title": "SALES_ORDERS",
"type": "array",
"description": "Table of orders for the customer",
"items": {
"title": "SALESORDERS",
"type": "object",
"properties": {
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"salesorderItems": {
"title": "SALESORDER Items",
"type": "array",
"description": "Salesorder list to collect the same items under one salesorder",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIORDERS",
"type": "object",
"properties": {
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"MATERIAL": {
"title": "MATERIAL",
"type": "string",
"description": "",
"maxLength": 18
},
"SHORT_TEXT": {
"title": "SHORT_TEXT",
"type": "string",
"description": "",
"maxLength": 40
},
"DOC_TYPE": {
"title": "DOC_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"DOC_DATE": {
"title": "DOC_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "number",
"description": ""
},
"REQ_DATE": {
"title": "REQ_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"PURCH_NO": {
"title": "PURCH_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"BATCH": {
"title": "BATCH",
"type": "string",
"description": "",
"maxLength": 10
},
"VALID_FROM": {
"title": "VALID_FROM",
"type": "string",
"description": "",
"maxLength": 8
},
"VALID_TO": {
"title": "VALID_TO",
"type": "string",
"description": "",
"maxLength": 8
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"DLV_BLOCK": {
"title": "DLV_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"SOLD_TO": {
"title": "SOLD_TO",
"type": "string",
"description": "",
"maxLength": 10
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 35
},
"EXCHG_RATE": {
"title": "EXCHG_RATE",
"type": "number",
"description": ""
},
"DLV_QTY": {
"title": "DLV_QTY",
"type": "number",
"description": ""
},
"BASE_UOM": {
"title": "BASE_UOM",
"type": "string",
"description": "",
"maxLength": 3
},
"NET_PRICE": {
"title": "NET_PRICE",
"type": "number",
"description": ""
},
"COND_P_UNT": {
"title": "COND_P_UNT",
"type": "number",
"description": ""
},
"COND_UNIT": {
"title": "COND_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"NET_VAL_HD": {
"title": "NET_VAL_HD",
"type": "number",
"description": ""
},
"NET_VALUE": {
"title": "NET_VALUE",
"type": "number",
"description": ""
},
"DIVISION": {
"title": "DIVISION",
"type": "string",
"description": "",
"maxLength": 2
},
"DOC_STATUS": {
"title": "DOC_STATUS",
"type": "string",
"description": "",
"maxLength": 20
},
"SALES_GRP": {
"title": "SALES_GRP",
"type": "string",
"description": "",
"maxLength": 3
},
"SALES_OFF": {
"title": "SALES_OFF",
"type": "string",
"description": "",
"maxLength": 4
},
"SALES_ORG": {
"title": "SALES_ORG",
"type": "string",
"description": "",
"maxLength": 4
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"SHIP_POINT": {
"title": "SHIP_POINT",
"type": "string",
"description": "",
"maxLength": 4
},
"DISTR_CHAN": {
"title": "DISTR_CHAN",
"type": "string",
"description": "",
"maxLength": 2
},
"GI_DATE": {
"title": "GI_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"PLANT": {
"title": "PLANT",
"type": "string",
"description": "",
"maxLength": 4
},
"STORE_LOC": {
"title": "STORE_LOC",
"type": "string",
"description": "",
"maxLength": 4
},
"ORD_REASON": {
"title": "ORD_REASON",
"type": "string",
"description": "",
"maxLength": 3
},
"REASON_REJ": {
"title": "REASON_REJ",
"type": "string",
"description": "",
"maxLength": 2
},
"B_UOM_ISO": {
"title": "B_UOM_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_UNT_ISO": {
"title": "CD_UNT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"S_UNIT_ISO": {
"title": "S_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 35
},
"EXCHG_RATE_V": {
"title": "EXCHG_RATE_V",
"type": "number",
"description": ""
},
"MAT_EXT": {
"title": "MAT_EXT",
"type": "string",
"description": "",
"maxLength": 40
},
"MAT_GUID": {
"title": "MAT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_VERS": {
"title": "MAT_VERS",
"type": "string",
"description": "",
"maxLength": 10
},
"CREATION_DATE": {
"title": "CREATION_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"CREATION_TIME": {
"title": "CREATION_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"STATUS_DOC": {
"title": "STATUS_DOC",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_SEGMENT": {
"title": "REQ_SEGMENT",
"type": "string",
"description": "",
"maxLength": 16
}
},
"required": []
}
}
}
}
}
},
"required": [
"RETURN",
"SALES_ORDERS"
]
}
HTTP status code 400
Request syntactically incorrect. Any details will be provided within the response payload.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 400,
"message": "There are validation problems, see details section for more information",
"moreInfo": "https://api.yaas.io/patterns/errortypes.html",
"type": "validation_violation",
"details": [
{
"field": "Accept-Language",
"message": "not a language",
"type": "invalid_header"
}
]
}
HTTP status code 401
Given request is unauthorized. Bad or expired token. Reauthenticate the user. Any details will be provided within the response payload.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 401,
"message": "Authorization: Unauthorized. Bearer TOKEN is invalid",
"type": "insufficient_credentials",
"moreInfo": "https://api.yaas.io/patterns/errortypes.html"
}
HTTP status code 403
Evaluated request scopes in access token are not sufficient and do not match required scopes.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 403,
"message": "Given request does not have required scopes in access token. It is not authorized to perform this operation.",
"type": "insufficient_permissions"
}
HTTP status code 408
Request timed out.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 408,
"type": "request_timeout",
"message": "The request timed out."
}
HTTP status code 500
An internal server error occurred.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 500,
"type": "internal_service_error",
"message": "An internal server error occurred."
}
/{tenant}/erpsalesorder/{salesorderId}
Manage a specific ERP sales order.
/{tenant}/erpsalesorder/{salesorderId}
Get the details of specific ERP SD sales order using the sales order identifier and the required ERP configuration parameters.
Required scope: hybris.sdorderproxy_view
Update a specific ERP SD sales order. Before using the operation, you need to implement the SAP note 2339873 to create a custom function module. For more information about this note, find [SAP Note 2339873] at http://service.sap.com/sap/support/notes/2339873.
When you change an ERP SD Sales Order, you can change the relevant information, for example:
- Insert ERP SD Sales Order items
- Delete ERP SD Sales Order items
- Change ERP SD Sales Order items materials and quantity and some other information
Required scope: hybris.sdorderproxy_manage
get /{tenant}/erpsalesorder/{salesorderId}
Get the details of specific ERP SD sales order using the sales order identifier and the required ERP configuration parameters.
Required scope: hybris.sdorderproxy_view
URI Parameters
- Tenant: required (string - minLength: 3 - maxLength: 16 - pattern: [a-z][a-z0-9]+)
Stands for the "project" that requests this resource. Must match the "project" that is associated with the access token in the Authorization header.
Example:
myexampleshop
- salesorderId: required (string)
Headers
- Accept-Language: (string - repeat: true)
The value of the locale identifier of the language in which the attribute should be returned. Provide several values separated by comma, in order to specify fallback languages.
Example:
pl
- hybris-languages: (string - repeat: true)
Comma separated list of language identifiers for which the localization for an attribute should be provided.
Example:
en,pl,it
- Authorization: required (string)
Used to send a valid OAuth2 access token.
Example:
Bearer access_token
Query Parameters
- qHEADER: (boolean)
Header
Example:
true
- qITEM: (boolean)
Item
Example:
true
- qSDSCHEDULE: (boolean)
SDSchedule
Example:
true
- qBUSINESS: (boolean)
Business
Example:
true
- qPARTNER: (boolean)
Partner
Example:
true
- qADDRESS: (boolean)
Address
Example:
true
- qSTATUS_H: (boolean)
Status_H
Example:
true
- qSTATUS_I: (boolean)
Status_I
Example:
true
- qSDCOND: (boolean)
SDCond
Example:
true
- qSDCOND_ADD: (boolean)
SDCond_Add
Example:
true
- qCONTRACT: (boolean)
Contract
Example:
true
- qTEXT: (boolean)
Text
Example:
true
- qFLOW: (boolean)
Flow
- qBILLPLAN: (boolean)
Bill Plan
Example:
true
- qCONFIGURE: (boolean)
Configure
Example:
true
- qCREDCARD: (boolean)
Credit Card
Example:
true
- qINCOMP_LOG: (boolean)
INCOMP_LOG
Example:
true
HTTP status code 200
OK
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "OutputOfBAPISDORDER_GETDETAILEDLIST",
"type": "object",
"properties": {
"EXTENSIONOUT": {
"title": "EXTENSIONOUT",
"type": "array",
"description": "",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIPAREX",
"type": "object",
"properties": {
"STRUCTURE": {
"title": "STRUCTURE",
"type": "string",
"description": "",
"maxLength": 30
},
"VALUEPART1": {
"title": "VALUEPART1",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART2": {
"title": "VALUEPART2",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART3": {
"title": "VALUEPART3",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART4": {
"title": "VALUEPART4",
"type": "string",
"description": "",
"maxLength": 240
}
},
"required": []
}
},
"ORDER_ADDRESS_OUT": {
"title": "ORDER_ADDRESS_OUT",
"type": "array",
"description": "",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDCOAD",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"ADDRESS": {
"title": "ADDRESS",
"type": "string",
"description": "",
"maxLength": 10
},
"FORMOFADDR": {
"title": "FORMOFADDR",
"type": "string",
"description": "",
"maxLength": 15
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_2": {
"title": "NAME_2",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_3": {
"title": "NAME_3",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_4": {
"title": "NAME_4",
"type": "string",
"description": "",
"maxLength": 35
},
"STREET": {
"title": "STREET",
"type": "string",
"description": "",
"maxLength": 35
},
"COUNTRY": {
"title": "COUNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"COUNTRYISO": {
"title": "COUNTRYISO",
"type": "string",
"description": "",
"maxLength": 2
},
"POSTL_CODE": {
"title": "POSTL_CODE",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_PCD": {
"title": "POBX_PCD",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_CTY": {
"title": "POBX_CTY",
"type": "string",
"description": "",
"maxLength": 35
},
"CITY": {
"title": "CITY",
"type": "string",
"description": "",
"maxLength": 35
},
"DISTRICT": {
"title": "DISTRICT",
"type": "string",
"description": "",
"maxLength": 35
},
"REGION": {
"title": "REGION",
"type": "string",
"description": "",
"maxLength": 3
},
"CITY_CODE": {
"title": "CITY_CODE",
"type": "string",
"description": "",
"maxLength": 4
},
"COUNTY_CDE": {
"title": "COUNTY_CDE",
"type": "string",
"description": "",
"maxLength": 3
},
"PO_BOX": {
"title": "PO_BOX",
"type": "string",
"description": "",
"maxLength": 10
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"TELEPHONE2": {
"title": "TELEPHONE2",
"type": "string",
"description": "",
"maxLength": 16
},
"TELEBOX": {
"title": "TELEBOX",
"type": "string",
"description": "",
"maxLength": 15
},
"FAX_NUMBER": {
"title": "FAX_NUMBER",
"type": "string",
"description": "",
"maxLength": 31
},
"TELETEX": {
"title": "TELETEX",
"type": "string",
"description": "",
"maxLength": 30
},
"TELEX": {
"title": "TELEX",
"type": "string",
"description": "",
"maxLength": 30
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"LANGU_ISO": {
"title": "LANGU_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"TRANSPZONE": {
"title": "TRANSPZONE",
"type": "string",
"description": "",
"maxLength": 10
},
"HOUSE_NO": {
"title": "HOUSE_NO",
"type": "integer",
"description": ""
},
"GENDER": {
"title": "GENDER",
"type": "string",
"description": "",
"maxLength": 1
},
"NAME_LIST": {
"title": "NAME_LIST",
"type": "string",
"description": "",
"maxLength": 35
},
"TAXJURCODE": {
"title": "TAXJURCODE",
"type": "string",
"description": "",
"maxLength": 15
},
"PERS_NO": {
"title": "PERS_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"ADDR_TYPE": {
"title": "ADDR_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"NRELSTAT": {
"title": "NRELSTAT",
"type": "string",
"description": "",
"maxLength": 1
},
"INDIUPDATE": {
"title": "INDIUPDATE",
"type": "string",
"description": "",
"maxLength": 1
},
"STREETNA": {
"title": "STREETNA",
"type": "string",
"description": "",
"maxLength": 35
},
"HOUSE_NO_LONG": {
"title": "HOUSE_NO_LONG",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
},
"ORDER_BILLINGDATES_OUT": {
"title": "ORDER_BILLINGDATES_OUT",
"type": "array",
"description": "Billing Plan Deadlines for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDBPLD",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"BILL_PLAN": {
"title": "BILL_PLAN",
"type": "string",
"description": "",
"maxLength": 10
},
"BILL_PLANI": {
"title": "BILL_PLANI",
"type": "integer",
"description": ""
},
"DATETYPE": {
"title": "DATETYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"DATEDESCRI": {
"title": "DATEDESCRI",
"type": "string",
"description": "",
"maxLength": 4
},
"SETTLEDATE": {
"title": "SETTLEDATE",
"type": "string",
"description": "",
"maxLength": 8
},
"IDADOPTBIL": {
"title": "IDADOPTBIL",
"type": "string",
"description": "",
"maxLength": 1
},
"RULEBILLPL": {
"title": "RULEBILLPL",
"type": "string",
"description": "",
"maxLength": 1
},
"INVOICEPER": {
"title": "INVOICEPER",
"type": "number",
"description": ""
},
"CURRENCKEY": {
"title": "CURRENCKEY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURRENCISO": {
"title": "CURRENCISO",
"type": "string",
"description": "",
"maxLength": 3
},
"EXCHANRATE": {
"title": "EXCHANRATE",
"type": "number",
"description": ""
},
"VALONDATE": {
"title": "VALONDATE",
"type": "number",
"description": ""
},
"BILLBLOCK": {
"title": "BILLBLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"ORDBILLTYP": {
"title": "ORDBILLTYP",
"type": "string",
"description": "",
"maxLength": 4
},
"STATBILLPL": {
"title": "STATBILLPL",
"type": "string",
"description": "",
"maxLength": 1
},
"RULEORINEX": {
"title": "RULEORINEX",
"type": "string",
"description": "",
"maxLength": 2
},
"LENSTANPER": {
"title": "LENSTANPER",
"type": "integer",
"description": ""
},
"MILESTONNO": {
"title": "MILESTONNO",
"type": "integer",
"description": ""
},
"MILESTONE": {
"title": "MILESTONE",
"type": "string",
"description": "",
"maxLength": 5
},
"PMNTTRMS": {
"title": "PMNTTRMS",
"type": "string",
"description": "",
"maxLength": 4
},
"PAYER": {
"title": "PAYER",
"type": "string",
"description": "",
"maxLength": 10
},
"TAX_CLASS1": {
"title": "TAX_CLASS1",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"ADD_VAL_DY": {
"title": "ADD_VAL_DY",
"type": "integer",
"description": ""
},
"FIX_VAL_DY": {
"title": "FIX_VAL_DY",
"type": "string",
"description": "",
"maxLength": 8
},
"SETTLEDAT": {
"title": "SETTLEDAT",
"type": "string",
"description": "",
"maxLength": 8
},
"PROCASMANU": {
"title": "PROCASMANU",
"type": "string",
"description": "",
"maxLength": 1
},
"CALDEFDAYS": {
"title": "CALDEFDAYS",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_DATE": {
"title": "BILL_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"NET_VALUE": {
"title": "NET_VALUE",
"type": "number",
"description": ""
},
"NET_PRICE": {
"title": "NET_PRICE",
"type": "number",
"description": ""
},
"COST_DOC_C": {
"title": "COST_DOC_C",
"type": "number",
"description": ""
},
"SUBTOT_PP1": {
"title": "SUBTOT_PP1",
"type": "number",
"description": ""
},
"SUBTOT_PP2": {
"title": "SUBTOT_PP2",
"type": "number",
"description": ""
},
"SUBTOT_PP3": {
"title": "SUBTOT_PP3",
"type": "number",
"description": ""
},
"SUBTOT_PP4": {
"title": "SUBTOT_PP4",
"type": "number",
"description": ""
},
"SUBTOT_PP5": {
"title": "SUBTOT_PP5",
"type": "number",
"description": ""
},
"SUBTOT_PP6": {
"title": "SUBTOT_PP6",
"type": "number",
"description": ""
},
"CREDPRICIT": {
"title": "CREDPRICIT",
"type": "number",
"description": ""
},
"AMOUNTELIG": {
"title": "AMOUNTELIG",
"type": "number",
"description": ""
},
"REBATEBAS": {
"title": "REBATEBAS",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURREN_ISO": {
"title": "CURREN_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"PRICE_OK": {
"title": "PRICE_OK",
"type": "string",
"description": "",
"maxLength": 1
},
"MEANSOFPAY": {
"title": "MEANSOFPAY",
"type": "string",
"description": "",
"maxLength": 1
},
"CREDITPRED": {
"title": "CREDITPRED",
"type": "number",
"description": ""
},
"HILEVPAYNO": {
"title": "HILEVPAYNO",
"type": "string",
"description": "",
"maxLength": 10
},
"HILEVITBIL": {
"title": "HILEVITBIL",
"type": "integer",
"description": ""
},
"EXCHRATEFI": {
"title": "EXCHRATEFI",
"type": "number",
"description": ""
},
"ACCOUNTNO": {
"title": "ACCOUNTNO",
"type": "string",
"description": "",
"maxLength": 10
},
"INDICORDAT": {
"title": "INDICORDAT",
"type": "string",
"description": "",
"maxLength": 1
},
"ORIGBILDAT": {
"title": "ORIGBILDAT",
"type": "string",
"description": "",
"maxLength": 8
},
"EXCHANRATE_V": {
"title": "EXCHANRATE_V",
"type": "number",
"description": ""
},
"EXCHRATEFI_V": {
"title": "EXCHRATEFI_V",
"type": "number",
"description": ""
}
},
"required": []
}
},
"ORDER_BILLINGPLANS_OUT": {
"title": "ORDER_BILLINGPLANS_OUT",
"type": "array",
"description": "Billing Plan for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDBPL",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"BILL_PLAN": {
"title": "BILL_PLAN",
"type": "string",
"description": "",
"maxLength": 10
},
"BILLPLATYP": {
"title": "BILLPLATYP",
"type": "string",
"description": "",
"maxLength": 1
},
"B_INPLATYP": {
"title": "B_INPLATYP",
"type": "string",
"description": "",
"maxLength": 2
},
"SORT_FLD": {
"title": "SORT_FLD",
"type": "string",
"description": "",
"maxLength": 10
},
"BILLSTADAT": {
"title": "BILLSTADAT",
"type": "string",
"description": "",
"maxLength": 8
},
"BILLENDDAT": {
"title": "BILLENDDAT",
"type": "string",
"description": "",
"maxLength": 8
},
"RULEDETHOR": {
"title": "RULEDETHOR",
"type": "string",
"description": "",
"maxLength": 2
},
"RULEORISTA": {
"title": "RULEORISTA",
"type": "string",
"description": "",
"maxLength": 2
},
"RULEORIEND": {
"title": "RULEORIEND",
"type": "string",
"description": "",
"maxLength": 2
},
"RULEORINEX": {
"title": "RULEORINEX",
"type": "string",
"description": "",
"maxLength": 2
},
"LENSTANPER": {
"title": "LENSTANPER",
"type": "integer",
"description": ""
},
"STANBILLNO": {
"title": "STANBILLNO",
"type": "string",
"description": "",
"maxLength": 10
},
"DATESFROM": {
"title": "DATESFROM",
"type": "string",
"description": "",
"maxLength": 8
},
"BILLCREAIA": {
"title": "BILLCREAIA",
"type": "string",
"description": "",
"maxLength": 1
},
"RULEDATFRO": {
"title": "RULEDATFRO",
"type": "string",
"description": "",
"maxLength": 2
},
"RULEDETBIL": {
"title": "RULEDETBIL",
"type": "string",
"description": "",
"maxLength": 2
},
"CALDEFDAYS": {
"title": "CALDEFDAYS",
"type": "string",
"description": "",
"maxLength": 2
},
"DATESTO": {
"title": "DATESTO",
"type": "string",
"description": "",
"maxLength": 8
},
"RULDATESTO": {
"title": "RULDATESTO",
"type": "string",
"description": "",
"maxLength": 2
},
"ROUTING_NO": {
"title": "ROUTING_NO",
"type": "integer",
"description": ""
},
"CO_APLZL": {
"title": "CO_APLZL",
"type": "integer",
"description": ""
},
"RESERV_NO": {
"title": "RESERV_NO",
"type": "integer",
"description": ""
},
"RES_ITEM": {
"title": "RES_ITEM",
"type": "integer",
"description": ""
},
"PO_NUMBER": {
"title": "PO_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"ITUNLIMIT": {
"title": "ITUNLIMIT",
"type": "integer",
"description": ""
},
"PAYCARDS1": {
"title": "PAYCARDS1",
"type": "string",
"description": "",
"maxLength": 1
},
"PAYCARDS2": {
"title": "PAYCARDS2",
"type": "string",
"description": "",
"maxLength": 1
},
"PAYCARDS3": {
"title": "PAYCARDS3",
"type": "string",
"description": "",
"maxLength": 1
},
"PAYCARDS4": {
"title": "PAYCARDS4",
"type": "string",
"description": "",
"maxLength": 1
},
"PAYCARDS5": {
"title": "PAYCARDS5",
"type": "string",
"description": "",
"maxLength": 1
},
"INTPROJNO": {
"title": "INTPROJNO",
"type": "integer",
"description": ""
},
"AUTOCREATE": {
"title": "AUTOCREATE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_BUSINESS_OUT": {
"title": "ORDER_BUSINESS_OUT",
"type": "array",
"description": "Business Data for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDBUSI",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"PRICE_GRP": {
"title": "PRICE_GRP",
"type": "string",
"description": "",
"maxLength": 2
},
"CUST_GROUP": {
"title": "CUST_GROUP",
"type": "string",
"description": "",
"maxLength": 2
},
"SALES_DIST": {
"title": "SALES_DIST",
"type": "string",
"description": "",
"maxLength": 6
},
"PRICE_LIST": {
"title": "PRICE_LIST",
"type": "string",
"description": "",
"maxLength": 2
},
"INCOTERMS1": {
"title": "INCOTERMS1",
"type": "string",
"description": "",
"maxLength": 3
},
"INCOTERMS2": {
"title": "INCOTERMS2",
"type": "string",
"description": "",
"maxLength": 28
},
"ORDCOMBIND": {
"title": "ORDCOMBIND",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_SCHED": {
"title": "BILL_SCHED",
"type": "string",
"description": "",
"maxLength": 2
},
"INVO_SCHED": {
"title": "INVO_SCHED",
"type": "string",
"description": "",
"maxLength": 2
},
"MN_INVOICE": {
"title": "MN_INVOICE",
"type": "string",
"description": "",
"maxLength": 1
},
"EXCHRATEFI": {
"title": "EXCHRATEFI",
"type": "number",
"description": ""
},
"ADD_VAL_DY": {
"title": "ADD_VAL_DY",
"type": "integer",
"description": ""
},
"FIX_VAL_DY": {
"title": "FIX_VAL_DY",
"type": "string",
"description": "",
"maxLength": 8
},
"PMNTTRMS": {
"title": "PMNTTRMS",
"type": "string",
"description": "",
"maxLength": 4
},
"PAYMETHODE": {
"title": "PAYMETHODE",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCNT_ASGN": {
"title": "ACCNT_ASGN",
"type": "string",
"description": "",
"maxLength": 2
},
"EXCHG_RATE": {
"title": "EXCHG_RATE",
"type": "number",
"description": ""
},
"PRICE_DATE": {
"title": "PRICE_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"BILL_DATE": {
"title": "BILL_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"SERV_DATE": {
"title": "SERV_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"FISC_YEAR": {
"title": "FISC_YEAR",
"type": "integer",
"description": ""
},
"POSTPERIOD": {
"title": "POSTPERIOD",
"type": "integer",
"description": ""
},
"EXCHRATEST": {
"title": "EXCHRATEST",
"type": "number",
"description": ""
},
"DUNN_KEY": {
"title": "DUNN_KEY",
"type": "string",
"description": "",
"maxLength": 1
},
"DUNN_BLOCK": {
"title": "DUNN_BLOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_PLAN": {
"title": "BILL_PLAN",
"type": "string",
"description": "",
"maxLength": 10
},
"PROMOTION": {
"title": "PROMOTION",
"type": "string",
"description": "",
"maxLength": 10
},
"PAY_GUARAN": {
"title": "PAY_GUARAN",
"type": "string",
"description": "",
"maxLength": 6
},
"FINDOCPROC": {
"title": "FINDOCPROC",
"type": "string",
"description": "",
"maxLength": 10
},
"J_1AFITP_D": {
"title": "J_1AFITP_D",
"type": "string",
"description": "",
"maxLength": 2
},
"REAS_0_VAT": {
"title": "REAS_0_VAT",
"type": "string",
"description": "",
"maxLength": 1
},
"REGION": {
"title": "REGION",
"type": "string",
"description": "",
"maxLength": 3
},
"ACTIVICODE": {
"title": "ACTIVICODE",
"type": "string",
"description": "",
"maxLength": 2
},
"DISTRIBTYP": {
"title": "DISTRIBTYP",
"type": "string",
"description": "",
"maxLength": 2
},
"TAX_CLASS": {
"title": "TAX_CLASS",
"type": "string",
"description": "",
"maxLength": 10
},
"DEPART_NO": {
"title": "DEPART_NO",
"type": "string",
"description": "",
"maxLength": 4
},
"REC_POINT": {
"title": "REC_POINT",
"type": "string",
"description": "",
"maxLength": 25
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 35
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 12
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 35
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 12
},
"POITMNOS": {
"title": "POITMNOS",
"type": "string",
"description": "",
"maxLength": 6
},
"SD000TRANS_DATE": {
"title": "TRANS_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"TRANSDATE": {
"title": "TRANSDATE",
"type": "string",
"description": "",
"maxLength": 8
},
"CUSTCONGR1": {
"title": "CUSTCONGR1",
"type": "string",
"description": "",
"maxLength": 2
},
"CUSTCONGR2": {
"title": "CUSTCONGR2",
"type": "string",
"description": "",
"maxLength": 2
},
"CUSTCONGR3": {
"title": "CUSTCONGR3",
"type": "string",
"description": "",
"maxLength": 2
},
"CUSTCONGR4": {
"title": "CUSTCONGR4",
"type": "string",
"description": "",
"maxLength": 2
},
"CUSTCONGR5": {
"title": "CUSTCONGR5",
"type": "string",
"description": "",
"maxLength": 2
},
"VALCONTCUR": {
"title": "VALCONTCUR",
"type": "string",
"description": "",
"maxLength": 5
},
"ISOVALCONT": {
"title": "ISOVALCONT",
"type": "string",
"description": "",
"maxLength": 3
},
"EXCHRATECO": {
"title": "EXCHRATECO",
"type": "number",
"description": ""
},
"CURRENCKEY": {
"title": "CURRENCKEY",
"type": "string",
"description": "",
"maxLength": 5
},
"ISOCURRKEY": {
"title": "ISOCURRKEY",
"type": "string",
"description": "",
"maxLength": 3
},
"EXCHRATELC": {
"title": "EXCHRATELC",
"type": "number",
"description": ""
},
"CEPRPERCEN": {
"title": "CEPRPERCEN",
"type": "number",
"description": ""
},
"INFLAT_IDX": {
"title": "INFLAT_IDX",
"type": "string",
"description": "",
"maxLength": 5
},
"BASDATEIDX": {
"title": "BASDATEIDX",
"type": "string",
"description": "",
"maxLength": 8
},
"CUST_PO_NO": {
"title": "CUST_PO_NO",
"type": "string",
"description": "",
"maxLength": 35
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 3
},
"DLI_PROFIL": {
"title": "DLI_PROFIL",
"type": "string",
"description": "",
"maxLength": 8
},
"CALC_MOTIVE": {
"title": "CALC_MOTIVE",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_FORM": {
"title": "BILL_FORM",
"type": "string",
"description": "",
"maxLength": 2
},
"REVENUETYP": {
"title": "REVENUETYP",
"type": "string",
"description": "",
"maxLength": 1
},
"BEGDEMAPER": {
"title": "BEGDEMAPER",
"type": "string",
"description": "",
"maxLength": 1
},
"EXCHRATELC_V": {
"title": "EXCHRATELC_V",
"type": "number",
"description": ""
},
"EXCH_RATE_FI_V": {
"title": "EXCH_RATE_FI_V",
"type": "number",
"description": ""
},
"EXCHG_RATE_V": {
"title": "EXCHG_RATE_V",
"type": "number",
"description": ""
},
"EXCHRATEST_V": {
"title": "EXCHRATEST_V",
"type": "number",
"description": ""
},
"EXCHRATECO_V": {
"title": "EXCHRATECO_V",
"type": "number",
"description": ""
},
"DELIV_TYPE": {
"title": "DELIV_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"TRANS_CAT": {
"title": "TRANS_CAT",
"type": "string",
"description": "",
"maxLength": 4
},
"TRANS_MAT": {
"title": "TRANS_MAT",
"type": "string",
"description": "",
"maxLength": 18
},
"SPEC_PROC": {
"title": "SPEC_PROC",
"type": "string",
"description": "",
"maxLength": 4
},
"PRODCAT": {
"title": "PRODCAT",
"type": "string",
"description": "",
"maxLength": 10
},
"FUNC_AREA": {
"title": "FUNC_AREA",
"type": "string",
"description": "",
"maxLength": 4
},
"POD_PROC": {
"title": "POD_PROC",
"type": "string",
"description": "",
"maxLength": 1
},
"CAMPAIGN": {
"title": "CAMPAIGN",
"type": "string",
"description": "",
"maxLength": 16
},
"FKK_CONACCT": {
"title": "FKK_CONACCT",
"type": "string",
"description": "",
"maxLength": 12
},
"FUNC_AREA_LONG": {
"title": "FUNC_AREA_LONG",
"type": "string",
"description": "",
"maxLength": 16
},
"FKK_CONACCT_GUID": {
"title": "FKK_CONACCT_GUID",
"type": "string",
"description": "",
"maxLength": 16
},
"TRANS_MAT_EXTERNAL": {
"title": "TRANS_MAT_EXTERNAL",
"type": "string",
"description": "",
"maxLength": 40
},
"TRANS_MAT_GUID": {
"title": "TRANS_MAT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"TRANS_MAT_VERSION": {
"title": "TRANS_MAT_VERSION",
"type": "string",
"description": "",
"maxLength": 10
},
"SEPA_MANDATE_ID": {
"title": "SEPA_MANDATE_ID",
"type": "string",
"description": "",
"maxLength": 35
}
},
"required": []
}
},
"ORDER_CFGS_CUBLBS_OUT": {
"title": "ORDER_CFGS_CUBLBS_OUT",
"type": "array",
"description": "Configuration BLOB for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUBLBM",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"CONTEXT": {
"title": "CONTEXT",
"type": "string",
"description": "",
"maxLength": 250
}
},
"required": []
}
},
"ORDER_CFGS_CUCFGS_OUT": {
"title": "ORDER_CFGS_CUCFGS_OUT",
"type": "array",
"description": "Configuration Data for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUCFGM",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"POSEX": {
"title": "POSEX",
"type": "string",
"description": "",
"maxLength": 6
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"ROOT_ID": {
"title": "ROOT_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"SCE": {
"title": "SCE",
"type": "string",
"description": "",
"maxLength": 1
},
"KBNAME": {
"title": "KBNAME",
"type": "string",
"description": "",
"maxLength": 30
},
"KBVERSION": {
"title": "KBVERSION",
"type": "string",
"description": "",
"maxLength": 30
},
"COMPLETE": {
"title": "COMPLETE",
"type": "string",
"description": "",
"maxLength": 1
},
"CONSISTENT": {
"title": "CONSISTENT",
"type": "string",
"description": "",
"maxLength": 1
},
"CFGINFO": {
"title": "CFGINFO",
"type": "string",
"description": "",
"maxLength": 250
},
"KBPROFILE": {
"title": "KBPROFILE",
"type": "string",
"description": "",
"maxLength": 30
},
"KBLANGUAGE": {
"title": "KBLANGUAGE",
"type": "string",
"description": "",
"maxLength": 1
},
"CBASE_ID": {
"title": "CBASE_ID",
"type": "string",
"description": "",
"maxLength": 32
},
"CBASE_ID_TYPE": {
"title": "CBASE_ID_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_CUINS_OUT": {
"title": "ORDER_CFGS_CUINS_OUT",
"type": "array",
"description": "Instance Data for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUINSM",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"OBJ_TYPE": {
"title": "OBJ_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"CLASS_TYPE": {
"title": "CLASS_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"OBJ_KEY": {
"title": "OBJ_KEY",
"type": "string",
"description": "",
"maxLength": 50
},
"OBJ_TXT": {
"title": "OBJ_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"QUANTITY": {
"title": "QUANTITY",
"type": "string",
"description": "",
"maxLength": 15
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"QUANTITY_UNIT": {
"title": "QUANTITY_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"COMPLETE": {
"title": "COMPLETE",
"type": "string",
"description": "",
"maxLength": 1
},
"CONSISTENT": {
"title": "CONSISTENT",
"type": "string",
"description": "",
"maxLength": 1
},
"OBJECT_GUID": {
"title": "OBJECT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"PERSIST_ID": {
"title": "PERSIST_ID",
"type": "string",
"description": "",
"maxLength": 32
},
"PERSIST_ID_TYPE": {
"title": "PERSIST_ID_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_CUPRTS_OUT": {
"title": "ORDER_CFGS_CUPRTS_OUT",
"type": "array",
"description": "PartOf Data for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUPRTM",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"PARENT_ID": {
"title": "PARENT_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"PART_OF_NO": {
"title": "PART_OF_NO",
"type": "string",
"description": "",
"maxLength": 4
},
"OBJ_TYPE": {
"title": "OBJ_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"CLASS_TYPE": {
"title": "CLASS_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"OBJ_KEY": {
"title": "OBJ_KEY",
"type": "string",
"description": "",
"maxLength": 50
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_RELEVANT": {
"title": "SALES_RELEVANT",
"type": "string",
"description": "",
"maxLength": 1
},
"PART_OF_GUID": {
"title": "PART_OF_GUID",
"type": "string",
"description": "",
"maxLength": 32
}
},
"required": []
}
},
"ORDER_CFGS_CUREFS_OUT": {
"title": "ORDER_CFGS_CUREFS_OUT",
"type": "array",
"description": "Instance in the Configuration for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUREFM",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"POSEX": {
"title": "POSEX",
"type": "string",
"description": "",
"maxLength": 6
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
}
},
"required": []
}
},
"ORDER_CFGS_CUVALS_OUT": {
"title": "ORDER_CFGS_CUVALS_OUT",
"type": "array",
"description": "Characteristic Value Assignment for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUVALM",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"CHARC": {
"title": "CHARC",
"type": "string",
"description": "",
"maxLength": 40
},
"CHARC_TXT": {
"title": "CHARC_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"VALUE": {
"title": "VALUE",
"type": "string",
"description": "",
"maxLength": 40
},
"VALUE_TXT": {
"title": "VALUE_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"VALUE_TO": {
"title": "VALUE_TO",
"type": "string",
"description": "",
"maxLength": 40
},
"VALCODE": {
"title": "VALCODE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_CUVKS_OUT": {
"title": "ORDER_CFGS_CUVKS_OUT",
"type": "array",
"description": "",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUVKM",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"VKEY": {
"title": "VKEY",
"type": "string",
"description": "",
"maxLength": 26
},
"FACTOR": {
"title": "FACTOR",
"type": "string",
"description": "",
"maxLength": 15
}
},
"required": []
}
},
"ORDER_CONDITIONS_OUT": {
"title": "ORDER_CONDITIONS_OUT",
"type": "array",
"description": "Order Conditions for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDCOND",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"CONDIT_NO": {
"title": "CONDIT_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"COND_ST_NO": {
"title": "COND_ST_NO",
"type": "integer",
"description": ""
},
"SD000COND_COUNT": {
"title": "COND_COUNT",
"type": "integer",
"description": ""
},
"APPLICATIO": {
"title": "APPLICATIO",
"type": "string",
"description": "",
"maxLength": 2
},
"SD000COND_TYPE": {
"title": "COND_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"CONPRICDAT": {
"title": "CONPRICDAT",
"type": "string",
"description": "",
"maxLength": 8
},
"CALCTYPCON": {
"title": "CALCTYPCON",
"type": "string",
"description": "",
"maxLength": 1
},
"CONBASEVAL": {
"title": "CONBASEVAL",
"type": "number",
"description": ""
},
"SDCURRENCY": {
"title": "SDCURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURREN_ISO": {
"title": "CURREN_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"SD000COND_VALUE": {
"title": "COND_VALUE",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURRENCISO": {
"title": "CURRENCISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CONEXCHRAT": {
"title": "CONEXCHRAT",
"type": "number",
"description": ""
},
"COND_P_UNT": {
"title": "COND_P_UNT",
"type": "number",
"description": ""
},
"COND_D_UNT": {
"title": "COND_D_UNT",
"type": "string",
"description": "",
"maxLength": 3
},
"SD000T_UNIT_ISO": {
"title": "T_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"NUMCONVERT": {
"title": "NUMCONVERT",
"type": "number",
"description": ""
},
"DENOMINATO": {
"title": "DENOMINATO",
"type": "number",
"description": ""
},
"CONDTYPE": {
"title": "CONDTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"STAT_CON": {
"title": "STAT_CON",
"type": "string",
"description": "",
"maxLength": 1
},
"SCALETYPE": {
"title": "SCALETYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCRUALS": {
"title": "ACCRUALS",
"type": "string",
"description": "",
"maxLength": 1
},
"CONINVOLST": {
"title": "CONINVOLST",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDORIGIN": {
"title": "CONDORIGIN",
"type": "string",
"description": "",
"maxLength": 1
},
"GROUPCOND": {
"title": "GROUPCOND",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_UPDAT": {
"title": "COND_UPDAT",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCESS_SEQ": {
"title": "ACCESS_SEQ",
"type": "integer",
"description": ""
},
"COND_NO": {
"title": "COND_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"CONDCOUNT": {
"title": "CONDCOUNT",
"type": "integer",
"description": ""
},
"ACCOUNTKEY": {
"title": "ACCOUNTKEY",
"type": "string",
"description": "",
"maxLength": 3
},
"SD000GL_ACCOUNT": {
"title": "GL_ACCOUNT",
"type": "string",
"description": "",
"maxLength": 10
},
"TAX_CODE": {
"title": "TAX_CODE",
"type": "string",
"description": "",
"maxLength": 2
},
"ACCOUNT_KE": {
"title": "ACCOUNT_KE",
"type": "string",
"description": "",
"maxLength": 3
},
"GLACCOUNT": {
"title": "GLACCOUNT",
"type": "string",
"description": "",
"maxLength": 10
},
"WITHTAXCOD": {
"title": "WITHTAXCOD",
"type": "string",
"description": "",
"maxLength": 2
},
"VENDOR_NO": {
"title": "VENDOR_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"CUSTNO_RR": {
"title": "CUSTNO_RR",
"type": "string",
"description": "",
"maxLength": 10
},
"ROUNDOFFDI": {
"title": "ROUNDOFFDI",
"type": "number",
"description": ""
},
"CONDVALUE": {
"title": "CONDVALUE",
"type": "number",
"description": ""
},
"CONDCNTRL": {
"title": "CONDCNTRL",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDISACTI": {
"title": "CONDISACTI",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDCLASS": {
"title": "CONDCLASS",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDCOINHD": {
"title": "CONDCOINHD",
"type": "integer",
"description": ""
},
"INDIBASVAL": {
"title": "INDIBASVAL",
"type": "string",
"description": "",
"maxLength": 1
},
"INDICONVAL": {
"title": "INDICONVAL",
"type": "string",
"description": "",
"maxLength": 1
},
"FACTBASVAL": {
"title": "FACTBASVAL",
"type": "number",
"description": ""
},
"STRUCTCOND": {
"title": "STRUCTCOND",
"type": "string",
"description": "",
"maxLength": 1
},
"FACTCONBAS": {
"title": "FACTCONBAS",
"type": "number",
"description": ""
},
"PRICELEVEL": {
"title": "PRICELEVEL",
"type": "string",
"description": "",
"maxLength": 4
},
"CONDFORMUL": {
"title": "CONDFORMUL",
"type": "integer",
"description": ""
},
"SCALETYP": {
"title": "SCALETYP",
"type": "string",
"description": "",
"maxLength": 1
},
"INCREMSCAL": {
"title": "INCREMSCAL",
"type": "number",
"description": ""
},
"INCREASCAL": {
"title": "INCREASCAL",
"type": "number",
"description": ""
},
"SD000INDEX_NO": {
"title": "INDEX_NO",
"type": "string",
"description": ""
},
"INDEXNO": {
"title": "INDEXNO",
"type": "string",
"description": ""
},
"CONDITIDX": {
"title": "CONDITIDX",
"type": "integer",
"description": ""
},
"PRINT_ID": {
"title": "PRINT_ID",
"type": "string",
"description": "",
"maxLength": 1
},
"FROREFSTEP": {
"title": "FROREFSTEP",
"type": "integer",
"description": ""
},
"FROMREFSTE": {
"title": "FROMREFSTE",
"type": "integer",
"description": ""
},
"CONDSUBTOT": {
"title": "CONDSUBTOT",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_FORM": {
"title": "COND_FORM",
"type": "integer",
"description": ""
},
"COND_FORM1": {
"title": "COND_FORM1",
"type": "integer",
"description": ""
},
"MAKMANENTR": {
"title": "MAKMANENTR",
"type": "string",
"description": "",
"maxLength": 1
},
"ROUNDRULE": {
"title": "ROUNDRULE",
"type": "string",
"description": "",
"maxLength": 1
},
"PMSIGNAMOU": {
"title": "PMSIGNAMOU",
"type": "string",
"description": "",
"maxLength": 1
},
"CURRCONVER": {
"title": "CURRCONVER",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDISMAND": {
"title": "CONDISMAND",
"type": "string",
"description": "",
"maxLength": 1
},
"RATEOFCHA1": {
"title": "RATEOFCHA1",
"type": "string",
"description": "",
"maxLength": 1
},
"RATEOFCHA2": {
"title": "RATEOFCHA2",
"type": "string",
"description": "",
"maxLength": 1
},
"RATEOFCHA3": {
"title": "RATEOFCHA3",
"type": "string",
"description": "",
"maxLength": 1
},
"RATEOFCHA4": {
"title": "RATEOFCHA4",
"type": "string",
"description": "",
"maxLength": 1
},
"RATEOFCHA5": {
"title": "RATEOFCHA5",
"type": "string",
"description": "",
"maxLength": 1
},
"RATEOFCHA6": {
"title": "RATEOFCHA6",
"type": "string",
"description": "",
"maxLength": 1
},
"TERMSOFPAY": {
"title": "TERMSOFPAY",
"type": "string",
"description": "",
"maxLength": 1
},
"MESSAGENO": {
"title": "MESSAGENO",
"type": "string",
"description": "",
"maxLength": 3
},
"INDIUPDATE": {
"title": "INDIUPDATE",
"type": "string",
"description": "",
"maxLength": 1
},
"SELECTION": {
"title": "SELECTION",
"type": "string",
"description": "",
"maxLength": 1
},
"SCALEBASIN": {
"title": "SCALEBASIN",
"type": "string",
"description": "",
"maxLength": 1
},
"SCALBASVAL": {
"title": "SCALBASVAL",
"type": "number",
"description": ""
},
"UNITMEASUR": {
"title": "UNITMEASUR",
"type": "string",
"description": "",
"maxLength": 3
},
"TUNITISO": {
"title": "TUNITISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CURRENCKEY": {
"title": "CURRENCKEY",
"type": "string",
"description": "",
"maxLength": 5
},
"CORRENISO": {
"title": "CORRENISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CONDCURREN": {
"title": "CONDCURREN",
"type": "string",
"description": "",
"maxLength": 5
},
"CORR_ISO": {
"title": "CORR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CONBASVAL": {
"title": "CONBASVAL",
"type": "number",
"description": ""
},
"CONDIVALUE": {
"title": "CONDIVALUE",
"type": "number",
"description": ""
},
"CONDINCOMP": {
"title": "CONDINCOMP",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDCONFIG": {
"title": "CONDCONFIG",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDCHAMAN": {
"title": "CONDCHAMAN",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICESOURC": {
"title": "PRICESOURC",
"type": "string",
"description": "",
"maxLength": 1
},
"VARIANCOND": {
"title": "VARIANCOND",
"type": "string",
"description": "",
"maxLength": 26
},
"LEVEL_BOM": {
"title": "LEVEL_BOM",
"type": "number",
"description": ""
},
"PATH_BOM": {
"title": "PATH_BOM",
"type": "number",
"description": ""
},
"STATOFAGRE": {
"title": "STATOFAGRE",
"type": "string",
"description": "",
"maxLength": 1
},
"REB_RETROA": {
"title": "REB_RETROA",
"type": "string",
"description": "",
"maxLength": 1
},
"INDIDELETE": {
"title": "INDIDELETE",
"type": "string",
"description": "",
"maxLength": 1
},
"AGREE_COND": {
"title": "AGREE_COND",
"type": "string",
"description": "",
"maxLength": 10
},
"CALCULBASE": {
"title": "CALCULBASE",
"type": "string",
"description": "",
"maxLength": 1
},
"SH_MAT_TYP": {
"title": "SH_MAT_TYP",
"type": "string",
"description": "",
"maxLength": 4
},
"ROUNDDIFCO": {
"title": "ROUNDDIFCO",
"type": "string",
"description": "",
"maxLength": 1
},
"QTYCONVERS": {
"title": "QTYCONVERS",
"type": "string",
"description": "",
"maxLength": 1
},
"CONCBUFFER": {
"title": "CONCBUFFER",
"type": "string",
"description": "",
"maxLength": 1
},
"RELACCASSI": {
"title": "RELACCASSI",
"type": "string",
"description": "",
"maxLength": 1
},
"INDIMATMAI": {
"title": "INDIMATMAI",
"type": "string",
"description": "",
"maxLength": 1
},
"TAXJURISDI": {
"title": "TAXJURISDI",
"type": "string",
"description": "",
"maxLength": 1
},
"CONEXCHRAT_V": {
"title": "CONEXCHRAT_V",
"type": "number",
"description": ""
}
},
"required": []
}
},
"ORDER_COND_HEAD": {
"title": "ORDER_COND_HEAD",
"type": "array",
"description": "",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICONDHD",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"COND_NO": {
"title": "COND_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"CREATED_BY": {
"title": "CREATED_BY",
"type": "string",
"description": "",
"maxLength": 12
},
"CREAT_DATE": {
"title": "CREAT_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"COND_USAGE": {
"title": "COND_USAGE",
"type": "string",
"description": "",
"maxLength": 1
},
"TABLE_NO": {
"title": "TABLE_NO",
"type": "string",
"description": "",
"maxLength": 3
},
"APPLICATIO": {
"title": "APPLICATIO",
"type": "string",
"description": "",
"maxLength": 2
},
"COND_TYPE": {
"title": "COND_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"VARKEY": {
"title": "VARKEY",
"type": "string",
"description": "",
"maxLength": 100
},
"VALID_FROM": {
"title": "VALID_FROM",
"type": "string",
"description": "",
"maxLength": 8
},
"VALID_TO": {
"title": "VALID_TO",
"type": "string",
"description": "",
"maxLength": 8
},
"SEARCHTERM": {
"title": "SEARCHTERM",
"type": "string",
"description": "",
"maxLength": 10
},
"RESPONS": {
"title": "RESPONS",
"type": "string",
"description": "",
"maxLength": 3
},
"PROMOT_NO": {
"title": "PROMOT_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"SALES_DEAL": {
"title": "SALES_DEAL",
"type": "string",
"description": "",
"maxLength": 10
},
"SALESQUOTE": {
"title": "SALESQUOTE",
"type": "string",
"description": "",
"maxLength": 10
},
"STD_AGRMNT": {
"title": "STD_AGRMNT",
"type": "string",
"description": "",
"maxLength": 10
},
"PROMOTION": {
"title": "PROMOTION",
"type": "string",
"description": "",
"maxLength": 10
},
"REBAGREEMT": {
"title": "REBAGREEMT",
"type": "string",
"description": "",
"maxLength": 10
},
"LIC_NO": {
"title": "LIC_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"LIC_DATE": {
"title": "LIC_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"VARDATE": {
"title": "VARDATE",
"type": "string",
"description": "",
"maxLength": 100
}
},
"required": []
}
},
"ORDER_COND_ITEM": {
"title": "ORDER_COND_ITEM",
"type": "array",
"description": "",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICONDIT",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"COND_NO": {
"title": "COND_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"COND_COUNT": {
"title": "COND_COUNT",
"type": "integer",
"description": ""
},
"APPLICATIO": {
"title": "APPLICATIO",
"type": "string",
"description": "",
"maxLength": 2
},
"COND_TYPE": {
"title": "COND_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"TEXT_NO": {
"title": "TEXT_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"SCALETYPE": {
"title": "SCALETYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"SCALEBASIN": {
"title": "SCALEBASIN",
"type": "string",
"description": "",
"maxLength": 1
},
"SCALE_QTY": {
"title": "SCALE_QTY",
"type": "number",
"description": ""
},
"UNITMEASUR": {
"title": "UNITMEASUR",
"type": "string",
"description": "",
"maxLength": 3
},
"MEASUR_ISO": {
"title": "MEASUR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"SCALE_VAL": {
"title": "SCALE_VAL",
"type": "number",
"description": ""
},
"CURRENCKEY": {
"title": "CURRENCKEY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURREN_ISO": {
"title": "CURREN_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CALCTYPCON": {
"title": "CALCTYPCON",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_VALUE": {
"title": "COND_VALUE",
"type": "number",
"description": ""
},
"CONDCURR": {
"title": "CONDCURR",
"type": "string",
"description": "",
"maxLength": 5
},
"COND_ISO": {
"title": "COND_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"COND_P_UNT": {
"title": "COND_P_UNT",
"type": "number",
"description": ""
},
"COND_UNIT": {
"title": "COND_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"CONUNITISO": {
"title": "CONUNITISO",
"type": "string",
"description": "",
"maxLength": 3
},
"PRICELEVEL": {
"title": "PRICELEVEL",
"type": "string",
"description": "",
"maxLength": 4
},
"NUMCONVERT": {
"title": "NUMCONVERT",
"type": "number",
"description": ""
},
"DENOMINATO": {
"title": "DENOMINATO",
"type": "number",
"description": ""
},
"BASE_UOM": {
"title": "BASE_UOM",
"type": "string",
"description": "",
"maxLength": 3
},
"BASEQTYISO": {
"title": "BASEQTYISO",
"type": "string",
"description": "",
"maxLength": 3
},
"LOWERLIMIT": {
"title": "LOWERLIMIT",
"type": "number",
"description": ""
},
"UPPERLIMIT": {
"title": "UPPERLIMIT",
"type": "number",
"description": ""
},
"PLCONDVAL": {
"title": "PLCONDVAL",
"type": "number",
"description": ""
},
"CUM_VALUE": {
"title": "CUM_VALUE",
"type": "number",
"description": ""
},
"CUMM_ACCR": {
"title": "CUMM_ACCR",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CONDCURREN": {
"title": "CONDCURREN",
"type": "string",
"description": "",
"maxLength": 5
},
"ISOCURRENC": {
"title": "ISOCURRENC",
"type": "string",
"description": "",
"maxLength": 3
},
"PLAN_BASIS": {
"title": "PLAN_BASIS",
"type": "number",
"description": ""
},
"RATE_UNIT": {
"title": "RATE_UNIT",
"type": "string",
"description": "",
"maxLength": 5
},
"EXCLUSION": {
"title": "EXCLUSION",
"type": "string",
"description": "",
"maxLength": 1
},
"CUSTOMER": {
"title": "CUSTOMER",
"type": "string",
"description": "",
"maxLength": 10
},
"VENDOR_NO": {
"title": "VENDOR_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"TAX_CODE": {
"title": "TAX_CODE",
"type": "string",
"description": "",
"maxLength": 2
},
"INDIDELETE": {
"title": "INDIDELETE",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDITIDX": {
"title": "CONDITIDX",
"type": "integer",
"description": ""
},
"MATLSETTL": {
"title": "MATLSETTL",
"type": "string",
"description": "",
"maxLength": 18
},
"ACCRUALS": {
"title": "ACCRUALS",
"type": "number",
"description": ""
},
"REB_RETROA": {
"title": "REB_RETROA",
"type": "string",
"description": "",
"maxLength": 1
},
"STATOFAGRE": {
"title": "STATOFAGRE",
"type": "string",
"description": "",
"maxLength": 1
},
"PROMOT_NO": {
"title": "PROMOT_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"SALES_DEAL": {
"title": "SALES_DEAL",
"type": "string",
"description": "",
"maxLength": 10
},
"SALESQUOTE": {
"title": "SALESQUOTE",
"type": "string",
"description": "",
"maxLength": 10
},
"ADD_VAL_DY": {
"title": "ADD_VAL_DY",
"type": "integer",
"description": ""
},
"FIX_VAL_DY": {
"title": "FIX_VAL_DY",
"type": "string",
"description": "",
"maxLength": 8
},
"PMNTTRMS": {
"title": "PMNTTRMS",
"type": "string",
"description": "",
"maxLength": 4
},
"NUMBORDERS": {
"title": "NUMBORDERS",
"type": "integer",
"description": ""
},
"MINCONBAVA": {
"title": "MINCONBAVA",
"type": "number",
"description": ""
},
"MAXCONBAVA": {
"title": "MAXCONBAVA",
"type": "number",
"description": ""
},
"MAXCONVAL": {
"title": "MAXCONVAL",
"type": "number",
"description": ""
},
"INCR_SCALE": {
"title": "INCR_SCALE",
"type": "integer",
"description": ""
},
"PRICSCALE": {
"title": "PRICSCALE",
"type": "integer",
"description": ""
},
"RELPRCG": {
"title": "RELPRCG",
"type": "string",
"description": "",
"maxLength": 1
},
"PROMOTION": {
"title": "PROMOTION",
"type": "string",
"description": "",
"maxLength": 10
},
"REBAGREEMT": {
"title": "REBAGREEMT",
"type": "string",
"description": "",
"maxLength": 10
},
"WITHTAXCOD": {
"title": "WITHTAXCOD",
"type": "string",
"description": "",
"maxLength": 2
},
"CONTRACT": {
"title": "CONTRACT",
"type": "string",
"description": "",
"maxLength": 1
},
"CONTRACTNO": {
"title": "CONTRACTNO",
"type": "string",
"description": "",
"maxLength": 13
},
"FLOW_TYPE": {
"title": "FLOW_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"INDIMATMAI": {
"title": "INDIMATMAI",
"type": "string",
"description": "",
"maxLength": 1
},
"STATUS": {
"title": "STATUS",
"type": "string",
"description": "",
"maxLength": 1
},
"UMSABST": {
"title": "UMSABST",
"type": "string",
"description": "",
"maxLength": 1
},
"MATLSETTL_EXTERNAL": {
"title": "MATLSETTL_EXTERNAL",
"type": "string",
"description": "",
"maxLength": 40
},
"MATLSETTL_GUID": {
"title": "MATLSETTL_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MATLSETTL_VERSION": {
"title": "MATLSETTL_VERSION",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
},
"ORDER_COND_QTY_SCALE": {
"title": "ORDER_COND_QTY_SCALE",
"type": "array",
"description": "",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICONDQS",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"COND_NO": {
"title": "COND_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"COND_COUNT": {
"title": "COND_COUNT",
"type": "integer",
"description": ""
},
"LINE_NO": {
"title": "LINE_NO",
"type": "integer",
"description": ""
},
"SCALE_QTY": {
"title": "SCALE_QTY",
"type": "number",
"description": ""
},
"COND_UNIT": {
"title": "COND_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"T_UNIT_ISO": {
"title": "T_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CURRENCY": {
"title": "CURRENCY",
"type": "number",
"description": ""
},
"CONDCURR": {
"title": "CONDCURR",
"type": "string",
"description": "",
"maxLength": 5
},
"CURREN_ISO": {
"title": "CURREN_ISO",
"type": "string",
"description": "",
"maxLength": 3
}
},
"required": []
}
},
"ORDER_COND_VAL_SCALE": {
"title": "ORDER_COND_VAL_SCALE",
"type": "array",
"description": "",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICONDVS",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"COND_NO": {
"title": "COND_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"COND_COUNT": {
"title": "COND_COUNT",
"type": "integer",
"description": ""
},
"LINE_NO": {
"title": "LINE_NO",
"type": "integer",
"description": ""
},
"SCALE_VAL": {
"title": "SCALE_VAL",
"type": "number",
"description": ""
},
"CURRENCKEY": {
"title": "CURRENCKEY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURRENCISO": {
"title": "CURRENCISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CURRENCY": {
"title": "CURRENCY",
"type": "number",
"description": ""
},
"CONDCURR": {
"title": "CONDCURR",
"type": "string",
"description": "",
"maxLength": 5
},
"CURREN_ISO": {
"title": "CURREN_ISO",
"type": "string",
"description": "",
"maxLength": 3
}
},
"required": []
}
},
"ORDER_CONTRACTS_OUT": {
"title": "ORDER_CONTRACTS_OUT",
"type": "array",
"description": "Contract Data for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDCNTR",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"VAL_PER": {
"title": "VAL_PER",
"type": "integer",
"description": ""
},
"VALPERUNIT": {
"title": "VALPERUNIT",
"type": "string",
"description": "",
"maxLength": 1
},
"VALPERCAT": {
"title": "VALPERCAT",
"type": "string",
"description": "",
"maxLength": 2
},
"INST_DATE": {
"title": "INST_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"ACCEPTDATE": {
"title": "ACCEPTDATE",
"type": "string",
"description": "",
"maxLength": 8
},
"CONTSTADAT": {
"title": "CONTSTADAT",
"type": "string",
"description": "",
"maxLength": 8
},
"CONTSIGDAT": {
"title": "CONTSIGDAT",
"type": "string",
"description": "",
"maxLength": 8
},
"CANC_PROC": {
"title": "CANC_PROC",
"type": "string",
"description": "",
"maxLength": 4
},
"CONTENDACT": {
"title": "CONTENDACT",
"type": "string",
"description": "",
"maxLength": 4
},
"CONTCANDAT": {
"title": "CONTCANDAT",
"type": "string",
"description": "",
"maxLength": 8
},
"REQCANCDAT": {
"title": "REQCANCDAT",
"type": "string",
"description": "",
"maxLength": 8
},
"CANC_PARTY": {
"title": "CANC_PARTY",
"type": "string",
"description": "",
"maxLength": 1
},
"CANCREASON": {
"title": "CANCREASON",
"type": "string",
"description": "",
"maxLength": 2
},
"CONTENDDAT": {
"title": "CONTENDDAT",
"type": "string",
"description": "",
"maxLength": 8
},
"CANC_DOC": {
"title": "CANC_DOC",
"type": "string",
"description": "",
"maxLength": 20
},
"CANCDOCDAT": {
"title": "CANCDOCDAT",
"type": "string",
"description": "",
"maxLength": 8
},
"CONTSTARUL": {
"title": "CONTSTARUL",
"type": "string",
"description": "",
"maxLength": 2
},
"LEADTIMACT": {
"title": "LEADTIMACT",
"type": "integer",
"description": ""
},
"LEADTIMUNI": {
"title": "LEADTIMUNI",
"type": "string",
"description": "",
"maxLength": 1
},
"DISM_DATE": {
"title": "DISM_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"ACTIONDATE": {
"title": "ACTIONDATE",
"type": "string",
"description": "",
"maxLength": 8
},
"WI_ID": {
"title": "WI_ID",
"type": "integer",
"description": ""
},
"ACTDATRULE": {
"title": "ACTDATRULE",
"type": "string",
"description": "",
"maxLength": 2
},
"CONTENDRUL": {
"title": "CONTENDRUL",
"type": "string",
"description": "",
"maxLength": 2
}
},
"required": []
}
},
"ORDER_CREDITCARDS_OUT": {
"title": "ORDER_CREDITCARDS_OUT",
"type": "array",
"description": "Credit Cards for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICCARDM",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"CC_TYPE": {
"title": "CC_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"CC_NUMBER": {
"title": "CC_NUMBER",
"type": "string",
"description": "",
"maxLength": 25
},
"CC_VALID_F": {
"title": "CC_VALID_F",
"type": "string",
"description": "",
"maxLength": 8
},
"CC_VALID_T": {
"title": "CC_VALID_T",
"type": "string",
"description": "",
"maxLength": 8
},
"CC_NAME": {
"title": "CC_NAME",
"type": "string",
"description": "",
"maxLength": 40
},
"DATAORIGIN": {
"title": "DATAORIGIN",
"type": "string",
"description": "",
"maxLength": 1
},
"AUTHAMOUNT": {
"title": "AUTHAMOUNT",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CC_SETTLED": {
"title": "CC_SETTLED",
"type": "string",
"description": "",
"maxLength": 1
},
"AUTH_CC_NO": {
"title": "AUTH_CC_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"AUTH_REFNO": {
"title": "AUTH_REFNO",
"type": "string",
"description": "",
"maxLength": 15
},
"AUTH_DATE": {
"title": "AUTH_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"AUTH_TIME": {
"title": "AUTH_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"MERCHIDCL": {
"title": "MERCHIDCL",
"type": "string",
"description": "",
"maxLength": 15
},
"PNTOFRECEI": {
"title": "PNTOFRECEI",
"type": "string",
"description": "",
"maxLength": 10
},
"TERMINAL": {
"title": "TERMINAL",
"type": "string",
"description": "",
"maxLength": 10
},
"SETTLEMRUN": {
"title": "SETTLEMRUN",
"type": "string",
"description": "",
"maxLength": 10
},
"CARDCATEGO": {
"title": "CARDCATEGO",
"type": "string",
"description": "",
"maxLength": 2
},
"AUTHORTYPE": {
"title": "AUTHORTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"STATEXTSYS": {
"title": "STATEXTSYS",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_REACT": {
"title": "CC_REACT",
"type": "string",
"description": "",
"maxLength": 1
},
"AMOUNTAUTH": {
"title": "AMOUNTAUTH",
"type": "number",
"description": ""
},
"CURR_CRED": {
"title": "CURR_CRED",
"type": "string",
"description": "",
"maxLength": 5
},
"CURCREDISO": {
"title": "CURCREDISO",
"type": "string",
"description": "",
"maxLength": 3
},
"AUTH_EXPIR": {
"title": "AUTH_EXPIR",
"type": "string",
"description": "",
"maxLength": 1
},
"AMOUNTCHAN": {
"title": "AMOUNTCHAN",
"type": "string",
"description": "",
"maxLength": 1
},
"PRE_AUTH": {
"title": "PRE_AUTH",
"type": "string",
"description": "",
"maxLength": 1
},
"HIGHLEAUTH": {
"title": "HIGHLEAUTH",
"type": "integer",
"description": ""
},
"RADRCHECK1": {
"title": "RADRCHECK1",
"type": "string",
"description": "",
"maxLength": 4
},
"RADRCHECK2": {
"title": "RADRCHECK2",
"type": "string",
"description": "",
"maxLength": 4
},
"RADRCHECK3": {
"title": "RADRCHECK3",
"type": "string",
"description": "",
"maxLength": 4
},
"RCARDCHECK": {
"title": "RCARDCHECK",
"type": "string",
"description": "",
"maxLength": 4
},
"REASONTEXT": {
"title": "REASONTEXT",
"type": "string",
"description": "",
"maxLength": 40
},
"CC_LIMIT": {
"title": "CC_LIMIT",
"type": "number",
"description": ""
},
"AUTH_USED": {
"title": "AUTH_USED",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_LIMITED": {
"title": "CC_LIMITED",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_FLOWS_OUT": {
"title": "ORDER_FLOWS_OUT",
"type": "array",
"description": "Document Flows for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDFLOW",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"PRECSDDOC": {
"title": "PRECSDDOC",
"type": "string",
"description": "",
"maxLength": 10
},
"PREDITDOC": {
"title": "PREDITDOC",
"type": "integer",
"description": ""
},
"SUBSSDDOC": {
"title": "SUBSSDDOC",
"type": "string",
"description": "",
"maxLength": 10
},
"SUBSITDOC": {
"title": "SUBSITDOC",
"type": "integer",
"description": ""
},
"DOCCATEGOR": {
"title": "DOCCATEGOR",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_QTY": {
"title": "REF_QTY",
"type": "number",
"description": ""
},
"BASE_UOM": {
"title": "BASE_UOM",
"type": "string",
"description": "",
"maxLength": 3
},
"T_UNIT_ISO": {
"title": "T_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"REFERENVAL": {
"title": "REFERENVAL",
"type": "number",
"description": ""
},
"STATISCURR": {
"title": "STATISCURR",
"type": "string",
"description": "",
"maxLength": 5
},
"CURRENCISO": {
"title": "CURRENCISO",
"type": "string",
"description": "",
"maxLength": 3
},
"DOC_CAT_SD": {
"title": "DOC_CAT_SD",
"type": "string",
"description": "",
"maxLength": 1
},
"QTYPOSCALC": {
"title": "QTYPOSCALC",
"type": "string",
"description": "",
"maxLength": 1
},
"ID_MM_WM": {
"title": "ID_MM_WM",
"type": "string",
"description": "",
"maxLength": 1
},
"CREAT_DATE": {
"title": "CREAT_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"REC_TIME": {
"title": "REC_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"MATERIAL": {
"title": "MATERIAL",
"type": "string",
"description": "",
"maxLength": 18
},
"MOVE_TYP": {
"title": "MOVE_TYP",
"type": "string",
"description": "",
"maxLength": 3
},
"REQ_TYPE": {
"title": "REQ_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"PLTYPE": {
"title": "PLTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"LEVELFLOWR": {
"title": "LEVELFLOWR",
"type": "integer",
"description": ""
},
"WHSE_NO": {
"title": "WHSE_NO",
"type": "string",
"description": "",
"maxLength": 3
},
"CH_ON": {
"title": "CH_ON",
"type": "string",
"description": "",
"maxLength": 8
},
"BILLINGTYP": {
"title": "BILLINGTYP",
"type": "string",
"description": "",
"maxLength": 1
},
"GROSS_WT": {
"title": "GROSS_WT",
"type": "number",
"description": ""
},
"UNIT_OF_WT": {
"title": "UNIT_OF_WT",
"type": "string",
"description": "",
"maxLength": 3
},
"UNITWTISO": {
"title": "UNITWTISO",
"type": "string",
"description": "",
"maxLength": 3
},
"VOLUME": {
"title": "VOLUME",
"type": "number",
"description": ""
},
"VOLUMEUNIT": {
"title": "VOLUMEUNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"VOLUNITISO": {
"title": "VOLUNITISO",
"type": "string",
"description": "",
"maxLength": 3
},
"BILL_PLAN": {
"title": "BILL_PLAN",
"type": "string",
"description": "",
"maxLength": 10
},
"BILL_PLANI": {
"title": "BILL_PLANI",
"type": "integer",
"description": ""
},
"REFQTYUNIT": {
"title": "REFQTYUNIT",
"type": "number",
"description": ""
},
"REFQTYFLOA": {
"title": "REFQTYFLOA",
"type": "number",
"description": ""
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"ISOCODUNIT": {
"title": "ISOCODUNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"GURANTEED": {
"title": "GURANTEED",
"type": "number",
"description": ""
},
"SPEC_STOCK": {
"title": "SPEC_STOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"SP_STCK_NO": {
"title": "SP_STCK_NO",
"type": "string",
"description": "",
"maxLength": 16
},
"INDINVMANG": {
"title": "INDINVMANG",
"type": "string",
"description": "",
"maxLength": 1
},
"NET_WEIGHT": {
"title": "NET_WEIGHT",
"type": "number",
"description": ""
},
"MATERIAL_EXTERNAL": {
"title": "MATERIAL_EXTERNAL",
"type": "string",
"description": "",
"maxLength": 40
},
"MATERIAL_GUID": {
"title": "MATERIAL_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MATERIAL_VERSION": {
"title": "MATERIAL_VERSION",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
},
"ORDER_HEADERS_OUT": {
"title": "ORDER_HEADERS_OUT",
"type": "array",
"description": "Order Headers for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDHD",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"REC_DATE": {
"title": "REC_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"REC_TIME": {
"title": "REC_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"CREATED_BY": {
"title": "CREATED_BY",
"type": "string",
"description": "",
"maxLength": 12
},
"QT_VALID_F": {
"title": "QT_VALID_F",
"type": "string",
"description": "",
"maxLength": 8
},
"QT_VALID_T": {
"title": "QT_VALID_T",
"type": "string",
"description": "",
"maxLength": 8
},
"DOC_DATE": {
"title": "DOC_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"SD_DOC_CAT": {
"title": "SD_DOC_CAT",
"type": "string",
"description": "",
"maxLength": 1
},
"TRAN_GROUP": {
"title": "TRAN_GROUP",
"type": "string",
"description": "",
"maxLength": 1
},
"DOC_TYPE": {
"title": "DOC_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"ORD_REASON": {
"title": "ORD_REASON",
"type": "string",
"description": "",
"maxLength": 3
},
"WAR_DATE": {
"title": "WAR_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"SD_COL_NUM": {
"title": "SD_COL_NUM",
"type": "string",
"description": "",
"maxLength": 10
},
"DLV_BLOCK": {
"title": "DLV_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"NET_VAL_HD": {
"title": "NET_VAL_HD",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURREN_ISO": {
"title": "CURREN_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"SALES_ORG": {
"title": "SALES_ORG",
"type": "string",
"description": "",
"maxLength": 4
},
"DISTR_CHAN": {
"title": "DISTR_CHAN",
"type": "string",
"description": "",
"maxLength": 2
},
"DIVISION": {
"title": "DIVISION",
"type": "string",
"description": "",
"maxLength": 2
},
"SALES_GRP": {
"title": "SALES_GRP",
"type": "string",
"description": "",
"maxLength": 3
},
"SALES_OFF": {
"title": "SALES_OFF",
"type": "string",
"description": "",
"maxLength": 4
},
"BUS_AREA": {
"title": "BUS_AREA",
"type": "string",
"description": "",
"maxLength": 4
},
"CT_AREA": {
"title": "CT_AREA",
"type": "string",
"description": "",
"maxLength": 4
},
"CT_VALID_F": {
"title": "CT_VALID_F",
"type": "string",
"description": "",
"maxLength": 8
},
"CT_VALID_T": {
"title": "CT_VALID_T",
"type": "string",
"description": "",
"maxLength": 8
},
"CONDITIONS": {
"title": "CONDITIONS",
"type": "string",
"description": "",
"maxLength": 10
},
"REQ_DATE_H": {
"title": "REQ_DATE_H",
"type": "string",
"description": "",
"maxLength": 8
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"COMPL_DLV": {
"title": "COMPL_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"DOC_CLASS": {
"title": "DOC_CLASS",
"type": "string",
"description": "",
"maxLength": 9
},
"DOC_INDIC": {
"title": "DOC_INDIC",
"type": "string",
"description": "",
"maxLength": 1
},
"SD_PRIC_PR": {
"title": "SD_PRIC_PR",
"type": "string",
"description": "",
"maxLength": 6
},
"SHIP_COND": {
"title": "SHIP_COND",
"type": "string",
"description": "",
"maxLength": 2
},
"ORDBILLTYP": {
"title": "ORDBILLTYP",
"type": "string",
"description": "",
"maxLength": 4
},
"ORD_PROBAB": {
"title": "ORD_PROBAB",
"type": "integer",
"description": ""
},
"SEAR_PRPR": {
"title": "SEAR_PRPR",
"type": "string",
"description": "",
"maxLength": 40
},
"PURCH_NO": {
"title": "PURCH_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 4
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_SUPPLEM": {
"title": "PO_SUPPLEM",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 12
},
"ORDERER_NA": {
"title": "ORDERER_NA",
"type": "string",
"description": "",
"maxLength": 35
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"DUN_COUNT": {
"title": "DUN_COUNT",
"type": "number",
"description": ""
},
"DUN_DATE": {
"title": "DUN_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"SOLD_TO": {
"title": "SOLD_TO",
"type": "string",
"description": "",
"maxLength": 10
},
"COSTCENTER": {
"title": "COSTCENTER",
"type": "string",
"description": "",
"maxLength": 10
},
"UPDATE_GRP": {
"title": "UPDATE_GRP",
"type": "string",
"description": "",
"maxLength": 6
},
"STAT_CURR": {
"title": "STAT_CURR",
"type": "string",
"description": "",
"maxLength": 5
},
"ISOSTATCUR": {
"title": "ISOSTATCUR",
"type": "string",
"description": "",
"maxLength": 3
},
"CH_ON": {
"title": "CH_ON",
"type": "string",
"description": "",
"maxLength": 8
},
"CUST_GRP1": {
"title": "CUST_GRP1",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP2": {
"title": "CUST_GRP2",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP3": {
"title": "CUST_GRP3",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP4": {
"title": "CUST_GRP4",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP5": {
"title": "CUST_GRP5",
"type": "string",
"description": "",
"maxLength": 3
},
"AGREE_COND": {
"title": "AGREE_COND",
"type": "string",
"description": "",
"maxLength": 10
},
"CO_AREA": {
"title": "CO_AREA",
"type": "string",
"description": "",
"maxLength": 4
},
"WBS_ELEM": {
"title": "WBS_ELEM",
"type": "integer",
"description": ""
},
"EXCHG_RATE": {
"title": "EXCHG_RATE",
"type": "string",
"description": "",
"maxLength": 4
},
"C_CTR_AREA": {
"title": "C_CTR_AREA",
"type": "string",
"description": "",
"maxLength": 4
},
"CRED_ACCNT": {
"title": "CRED_ACCNT",
"type": "string",
"description": "",
"maxLength": 10
},
"CRED_GROUP": {
"title": "CRED_GROUP",
"type": "string",
"description": "",
"maxLength": 4
},
"REPR_GROUP": {
"title": "REPR_GROUP",
"type": "string",
"description": "",
"maxLength": 3
},
"RISK_CATEG": {
"title": "RISK_CATEG",
"type": "string",
"description": "",
"maxLength": 3
},
"CURR_CRED": {
"title": "CURR_CRED",
"type": "string",
"description": "",
"maxLength": 5
},
"ISOCURRCRE": {
"title": "ISOCURRCRE",
"type": "string",
"description": "",
"maxLength": 3
},
"REL_DAT_DD": {
"title": "REL_DAT_DD",
"type": "string",
"description": "",
"maxLength": 8
},
"NEXT_CHDAT": {
"title": "NEXT_CHDAT",
"type": "string",
"description": "",
"maxLength": 8
},
"NEXT_DATE": {
"title": "NEXT_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"REL_CREDIT": {
"title": "REL_CREDIT",
"type": "number",
"description": ""
},
"HI_TYPE_PR": {
"title": "HI_TYPE_PR",
"type": "string",
"description": "",
"maxLength": 1
},
"DLVSCHEDUS": {
"title": "DLVSCHEDUS",
"type": "string",
"description": "",
"maxLength": 3
},
"PLAN_DLV": {
"title": "PLAN_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC": {
"title": "REF_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"OB_JNR_HD": {
"title": "OB_JNR_HD",
"type": "string",
"description": "",
"maxLength": 22
},
"COMP_CODE": {
"title": "COMP_CODE",
"type": "string",
"description": "",
"maxLength": 4
},
"ALT_TAX_CL": {
"title": "ALT_TAX_CL",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC_L": {
"title": "REF_DOC_L",
"type": "string",
"description": "",
"maxLength": 16
},
"ASS_NUMBER": {
"title": "ASS_NUMBER",
"type": "string",
"description": "",
"maxLength": 18
},
"DOC_CAT_SD": {
"title": "DOC_CAT_SD",
"type": "string",
"description": "",
"maxLength": 1
},
"KALSM_CH": {
"title": "KALSM_CH",
"type": "string",
"description": "",
"maxLength": 6
},
"ACC_PERIOD": {
"title": "ACC_PERIOD",
"type": "integer",
"description": ""
},
"ORDERID": {
"title": "ORDERID",
"type": "string",
"description": "",
"maxLength": 12
},
"NOTIF_NO": {
"title": "NOTIF_NO",
"type": "string",
"description": "",
"maxLength": 12
},
"MASTER_CON": {
"title": "MASTER_CON",
"type": "string",
"description": "",
"maxLength": 10
},
"REF_PROC": {
"title": "REF_PROC",
"type": "string",
"description": "",
"maxLength": 4
},
"CHECK_PART": {
"title": "CHECK_PART",
"type": "string",
"description": "",
"maxLength": 1
},
"PICK_UP_DA": {
"title": "PICK_UP_DA",
"type": "string",
"description": "",
"maxLength": 8
},
"PICK_UP_T1": {
"title": "PICK_UP_T1",
"type": "string",
"description": "",
"maxLength": 6
},
"PICK_UP_T2": {
"title": "PICK_UP_T2",
"type": "string",
"description": "",
"maxLength": 6
},
"NUM_PAY_CA": {
"title": "NUM_PAY_CA",
"type": "string",
"description": "",
"maxLength": 10
},
"LINE_TIME": {
"title": "LINE_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"TAX_DEST_CT": {
"title": "TAX_DEST_CT",
"type": "string",
"description": "",
"maxLength": 3
},
"ISOTAXDEST": {
"title": "ISOTAXDEST",
"type": "string",
"description": "",
"maxLength": 2
},
"TAX_DEPART": {
"title": "TAX_DEPART",
"type": "string",
"description": "",
"maxLength": 3
},
"ISOTAXDEPA": {
"title": "ISOTAXDEPA",
"type": "string",
"description": "",
"maxLength": 2
},
"EU_TRIANG": {
"title": "EU_TRIANG",
"type": "string",
"description": "",
"maxLength": 1
},
"MAST_CONTR": {
"title": "MAST_CONTR",
"type": "string",
"description": "",
"maxLength": 1
},
"CML_QTY_DA": {
"title": "CML_QTY_DA",
"type": "string",
"description": "",
"maxLength": 8
},
"MS_DATE": {
"title": "MS_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"VERSION": {
"title": "VERSION",
"type": "string",
"description": "",
"maxLength": 12
},
"REF_DOC_L_LONG": {
"title": "REF_DOC_L_LONG",
"type": "string",
"description": "",
"maxLength": 35
},
"CRM_GUID": {
"title": "CRM_GUID",
"type": "string",
"description": "",
"maxLength": 70
}
},
"required": []
}
},
"ORDER_ITEMS_OUT": {
"title": "ORDER_ITEMS_OUT",
"type": "array",
"description": "Order Item Data for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDIT",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"MATERIAL": {
"title": "MATERIAL",
"type": "string",
"description": "",
"maxLength": 18
},
"MAT_ENTRD": {
"title": "MAT_ENTRD",
"type": "string",
"description": "",
"maxLength": 18
},
"PR_REF_MAT": {
"title": "PR_REF_MAT",
"type": "string",
"description": "",
"maxLength": 18
},
"BATCH": {
"title": "BATCH",
"type": "string",
"description": "",
"maxLength": 10
},
"MATL_GROUP": {
"title": "MATL_GROUP",
"type": "string",
"description": "",
"maxLength": 9
},
"SHORT_TEXT": {
"title": "SHORT_TEXT",
"type": "string",
"description": "",
"maxLength": 40
},
"ITEM_CATEG": {
"title": "ITEM_CATEG",
"type": "string",
"description": "",
"maxLength": 4
},
"ITEM_TYPE": {
"title": "ITEM_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"REL_FOR_DE": {
"title": "REL_FOR_DE",
"type": "string",
"description": "",
"maxLength": 1
},
"REL_FOR_BI": {
"title": "REL_FOR_BI",
"type": "string",
"description": "",
"maxLength": 1
},
"HG_LV_ITEM": {
"title": "HG_LV_ITEM",
"type": "integer",
"description": ""
},
"ALTERN_ITM": {
"title": "ALTERN_ITM",
"type": "integer",
"description": ""
},
"REA_FOR_RE": {
"title": "REA_FOR_RE",
"type": "string",
"description": "",
"maxLength": 2
},
"PROD_HIER": {
"title": "PROD_HIER",
"type": "string",
"description": "",
"maxLength": 18
},
"OUT_AGR_TA": {
"title": "OUT_AGR_TA",
"type": "number",
"description": ""
},
"TARGET_QTY": {
"title": "TARGET_QTY",
"type": "number",
"description": ""
},
"TARGET_QU": {
"title": "TARGET_QU",
"type": "string",
"description": "",
"maxLength": 3
},
"T_UNIT_ISO": {
"title": "T_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"TARG_QTY_N": {
"title": "TARG_QTY_N",
"type": "number",
"description": ""
},
"TARG_QTY_D": {
"title": "TARG_QTY_D",
"type": "number",
"description": ""
},
"BASE_UOM": {
"title": "BASE_UOM",
"type": "string",
"description": "",
"maxLength": 3
},
"T_BAS_UNIT": {
"title": "T_BAS_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"SCALE_QUAN": {
"title": "SCALE_QUAN",
"type": "number",
"description": ""
},
"ROUND_DLV": {
"title": "ROUND_DLV",
"type": "number",
"description": ""
},
"RECON_DATE": {
"title": "RECON_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"MAX_DEVIAT": {
"title": "MAX_DEVIAT",
"type": "number",
"description": ""
},
"PO_ITM_NO": {
"title": "PO_ITM_NO",
"type": "string",
"description": "",
"maxLength": 6
},
"CUST_MAT22": {
"title": "CUST_MAT22",
"type": "string",
"description": "",
"maxLength": 22
},
"MAX_DEV_PE": {
"title": "MAX_DEV_PE",
"type": "number",
"description": ""
},
"MAX_DEV_DA": {
"title": "MAX_DEV_DA",
"type": "number",
"description": ""
},
"REPAIR_PRO": {
"title": "REPAIR_PRO",
"type": "string",
"description": "",
"maxLength": 3
},
"DLVSCHEDUS": {
"title": "DLVSCHEDUS",
"type": "string",
"description": "",
"maxLength": 3
},
"DLV_GROUP": {
"title": "DLV_GROUP",
"type": "integer",
"description": ""
},
"FIXED_QUAN": {
"title": "FIXED_QUAN",
"type": "string",
"description": "",
"maxLength": 1
},
"DELI_UNLIM": {
"title": "DELI_UNLIM",
"type": "string",
"description": "",
"maxLength": 1
},
"OVER_DLV_T": {
"title": "OVER_DLV_T",
"type": "number",
"description": ""
},
"UNDER_DLV": {
"title": "UNDER_DLV",
"type": "number",
"description": ""
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"REPLACE_PT": {
"title": "REPLACE_PT",
"type": "string",
"description": "",
"maxLength": 1
},
"METH_BILL": {
"title": "METH_BILL",
"type": "string",
"description": "",
"maxLength": 1
},
"DIVISION": {
"title": "DIVISION",
"type": "string",
"description": "",
"maxLength": 2
},
"BUS_AREA": {
"title": "BUS_AREA",
"type": "string",
"description": "",
"maxLength": 4
},
"NET_VALUE": {
"title": "NET_VALUE",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURREN_ISO": {
"title": "CURREN_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"MAX_PL_DLV": {
"title": "MAX_PL_DLV",
"type": "number",
"description": ""
},
"PART_DLV": {
"title": "PART_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"BTCH_SPLIT": {
"title": "BTCH_SPLIT",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "number",
"description": ""
},
"CUM_REQ_DE": {
"title": "CUM_REQ_DE",
"type": "number",
"description": ""
},
"CUM_CF_QTY": {
"title": "CUM_CF_QTY",
"type": "number",
"description": ""
},
"CUM_CON_QU": {
"title": "CUM_CON_QU",
"type": "number",
"description": ""
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"ISOCODUNIT": {
"title": "ISOCODUNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"SALES_QTY1": {
"title": "SALES_QTY1",
"type": "number",
"description": ""
},
"SALES_QTY2": {
"title": "SALES_QTY2",
"type": "number",
"description": ""
},
"GROSS_WEIG": {
"title": "GROSS_WEIG",
"type": "number",
"description": ""
},
"NET_WEIGHT": {
"title": "NET_WEIGHT",
"type": "number",
"description": ""
},
"UNIT_OF_WT": {
"title": "UNIT_OF_WT",
"type": "string",
"description": "",
"maxLength": 3
},
"UNIT_WTISO": {
"title": "UNIT_WTISO",
"type": "string",
"description": "",
"maxLength": 3
},
"VOLUME": {
"title": "VOLUME",
"type": "number",
"description": ""
},
"VOLUMEUNIT": {
"title": "VOLUMEUNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"VOLUNITISO": {
"title": "VOLUNITISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CAU_VBELN": {
"title": "CAU_VBELN",
"type": "string",
"description": "",
"maxLength": 10
},
"CAU_POSNR": {
"title": "CAU_POSNR",
"type": "integer",
"description": ""
},
"REF_DOC": {
"title": "REF_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"POSNR_VOR": {
"title": "POSNR_VOR",
"type": "integer",
"description": ""
},
"OBJ_COPY": {
"title": "OBJ_COPY",
"type": "string",
"description": "",
"maxLength": 1
},
"UPDAT_FLAG": {
"title": "UPDAT_FLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"END_RULE": {
"title": "END_RULE",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_PRIO": {
"title": "DLV_PRIO",
"type": "string",
"description": "",
"maxLength": 2
},
"PLANT": {
"title": "PLANT",
"type": "string",
"description": "",
"maxLength": 4
},
"STGE_LOC": {
"title": "STGE_LOC",
"type": "string",
"description": "",
"maxLength": 4
},
"SHIP_POINT": {
"title": "SHIP_POINT",
"type": "string",
"description": "",
"maxLength": 4
},
"ROUTE": {
"title": "ROUTE",
"type": "string",
"description": "",
"maxLength": 6
},
"KEY_ST": {
"title": "KEY_ST",
"type": "string",
"description": "",
"maxLength": 1
},
"DATE_ST": {
"title": "DATE_ST",
"type": "string",
"description": "",
"maxLength": 8
},
"NBR_ST": {
"title": "NBR_ST",
"type": "string",
"description": "",
"maxLength": 8
},
"STPOS_VBAP": {
"title": "STPOS_VBAP",
"type": "number",
"description": ""
},
"ORDER_PROB": {
"title": "ORDER_PROB",
"type": "integer",
"description": ""
},
"CREAT_DATE": {
"title": "CREAT_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"CREATED_BY": {
"title": "CREATED_BY",
"type": "string",
"description": "",
"maxLength": 12
},
"REC_TIME": {
"title": "REC_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"TAX_CLASS1": {
"title": "TAX_CLASS1",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"FIX_SP_DAY": {
"title": "FIX_SP_DAY",
"type": "number",
"description": ""
},
"VAR_SP_DAY": {
"title": "VAR_SP_DAY",
"type": "number",
"description": ""
},
"PREC_DOC": {
"title": "PREC_DOC",
"type": "string",
"description": "",
"maxLength": 1
},
"NET_PRICE": {
"title": "NET_PRICE",
"type": "number",
"description": ""
},
"COND_P_UNT": {
"title": "COND_P_UNT",
"type": "number",
"description": ""
},
"COND_UNIT": {
"title": "COND_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"CONISOUNIT": {
"title": "CONISOUNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"RETOURE": {
"title": "RETOURE",
"type": "string",
"description": "",
"maxLength": 1
},
"CASH_DISC": {
"title": "CASH_DISC",
"type": "string",
"description": "",
"maxLength": 1
},
"AVAILCHECK": {
"title": "AVAILCHECK",
"type": "string",
"description": "",
"maxLength": 2
},
"SUM_REQUIR": {
"title": "SUM_REQUIR",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_PR_GRP": {
"title": "MAT_PR_GRP",
"type": "string",
"description": "",
"maxLength": 2
},
"ACCT_ASSGT": {
"title": "ACCT_ASSGT",
"type": "string",
"description": "",
"maxLength": 2
},
"REBATE_GRP": {
"title": "REBATE_GRP",
"type": "string",
"description": "",
"maxLength": 2
},
"COMM_GROUP": {
"title": "COMM_GROUP",
"type": "string",
"description": "",
"maxLength": 2
},
"EUR_ART_NR": {
"title": "EUR_ART_NR",
"type": "string",
"description": "",
"maxLength": 13
},
"PRICE_OK": {
"title": "PRICE_OK",
"type": "string",
"description": "",
"maxLength": 1
},
"VAL_TYPE": {
"title": "VAL_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"SEP_VALUAT": {
"title": "SEP_VALUAT",
"type": "string",
"description": "",
"maxLength": 1
},
"BATCH_MGMT": {
"title": "BATCH_MGMT",
"type": "string",
"description": "",
"maxLength": 1
},
"IND_BTCH": {
"title": "IND_BTCH",
"type": "string",
"description": "",
"maxLength": 1
},
"MIN_DELY": {
"title": "MIN_DELY",
"type": "number",
"description": ""
},
"UPDATE_GRP": {
"title": "UPDATE_GRP",
"type": "string",
"description": "",
"maxLength": 6
},
"COST_DOC_C": {
"title": "COST_DOC_C",
"type": "number",
"description": ""
},
"SUBTOT_PP1": {
"title": "SUBTOT_PP1",
"type": "number",
"description": ""
},
"SUBTOT_PP2": {
"title": "SUBTOT_PP2",
"type": "number",
"description": ""
},
"SUBTOT_PP3": {
"title": "SUBTOT_PP3",
"type": "number",
"description": ""
},
"SUBTOT_PP4": {
"title": "SUBTOT_PP4",
"type": "number",
"description": ""
},
"SUBTOT_PP5": {
"title": "SUBTOT_PP5",
"type": "number",
"description": ""
},
"SUBTOT_PP6": {
"title": "SUBTOT_PP6",
"type": "number",
"description": ""
},
"EXCH_RATE": {
"title": "EXCH_RATE",
"type": "number",
"description": ""
},
"CH_ON": {
"title": "CH_ON",
"type": "string",
"description": "",
"maxLength": 8
},
"EAN_UPC": {
"title": "EAN_UPC",
"type": "string",
"description": "",
"maxLength": 18
},
"FIX_DATE": {
"title": "FIX_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"PROFIT_CTR": {
"title": "PROFIT_CTR",
"type": "string",
"description": "",
"maxLength": 10
},
"PRC_GROUP1": {
"title": "PRC_GROUP1",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP2": {
"title": "PRC_GROUP2",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP3": {
"title": "PRC_GROUP3",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP4": {
"title": "PRC_GROUP4",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP5": {
"title": "PRC_GROUP5",
"type": "string",
"description": "",
"maxLength": 3
},
"COMPON_QTY": {
"title": "COMPON_QTY",
"type": "number",
"description": ""
},
"SUBSTREASO": {
"title": "SUBSTREASO",
"type": "string",
"description": "",
"maxLength": 4
},
"SPEC_STOCK": {
"title": "SPEC_STOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"ALLOC_INDI": {
"title": "ALLOC_INDI",
"type": "string",
"description": "",
"maxLength": 1
},
"PROFIT_SEG": {
"title": "PROFIT_SEG",
"type": "integer",
"description": ""
},
"WBS_ELEM": {
"title": "WBS_ELEM",
"type": "integer",
"description": ""
},
"ORDERID": {
"title": "ORDERID",
"type": "string",
"description": "",
"maxLength": 12
},
"PLNG_MATL": {
"title": "PLNG_MATL",
"type": "string",
"description": "",
"maxLength": 18
},
"PLNG_PLANT": {
"title": "PLNG_PLANT",
"type": "string",
"description": "",
"maxLength": 4
},
"BASE_UNIT": {
"title": "BASE_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"ISOBASUNIT": {
"title": "ISOBASUNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"CONV_FACT": {
"title": "CONV_FACT",
"type": "number",
"description": ""
},
"ACCTASSCAT": {
"title": "ACCTASSCAT",
"type": "string",
"description": "",
"maxLength": 1
},
"CONSUMPT": {
"title": "CONSUMPT",
"type": "string",
"description": "",
"maxLength": 1
},
"BOMEXPLNO": {
"title": "BOMEXPLNO",
"type": "string",
"description": "",
"maxLength": 8
},
"OBJ_NR_IT": {
"title": "OBJ_NR_IT",
"type": "string",
"description": "",
"maxLength": 22
},
"RES_ANAL": {
"title": "RES_ANAL",
"type": "string",
"description": "",
"maxLength": 6
},
"REQMTSTYP": {
"title": "REQMTSTYP",
"type": "string",
"description": "",
"maxLength": 4
},
"CREDPRICIT": {
"title": "CREDPRICIT",
"type": "number",
"description": ""
},
"PARTRELID": {
"title": "PARTRELID",
"type": "string",
"description": "",
"maxLength": 1
},
"ACTCREDID": {
"title": "ACTCREDID",
"type": "string",
"description": "",
"maxLength": 1
},
"CR_EXCHRAT": {
"title": "CR_EXCHRAT",
"type": "number",
"description": ""
},
"CONFIG": {
"title": "CONFIG",
"type": "integer",
"description": ""
},
"CHCLASS_IN": {
"title": "CHCLASS_IN",
"type": "integer",
"description": ""
},
"STAT_PRICE": {
"title": "STAT_PRICE",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_UPDAT": {
"title": "COND_UPDAT",
"type": "string",
"description": "",
"maxLength": 1
},
"SERNO_PROF": {
"title": "SERNO_PROF",
"type": "string",
"description": "",
"maxLength": 4
},
"NO_OF_SERI": {
"title": "NO_OF_SERI",
"type": "string",
"description": ""
},
"NOGRPOSTED": {
"title": "NOGRPOSTED",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_GRP_SM": {
"title": "MAT_GRP_SM",
"type": "string",
"description": "",
"maxLength": 4
},
"MAN_PR_CH": {
"title": "MAN_PR_CH",
"type": "string",
"description": "",
"maxLength": 1
},
"DOC_CAT_SD": {
"title": "DOC_CAT_SD",
"type": "string",
"description": "",
"maxLength": 1
},
"MATDETERID": {
"title": "MATDETERID",
"type": "string",
"description": "",
"maxLength": 1
},
"ITUSAGEID": {
"title": "ITUSAGEID",
"type": "string",
"description": "",
"maxLength": 1
},
"COSTESTNR": {
"title": "COSTESTNR",
"type": "integer",
"description": ""
},
"CSTG_VRNT": {
"title": "CSTG_VRNT",
"type": "string",
"description": "",
"maxLength": 4
},
"BOMITEMNR": {
"title": "BOMITEMNR",
"type": "string",
"description": "",
"maxLength": 4
},
"STAT_VAL": {
"title": "STAT_VAL",
"type": "string",
"description": "",
"maxLength": 1
},
"STAT_DATE": {
"title": "STAT_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"BUS_TRANST": {
"title": "BUS_TRANST",
"type": "string",
"description": "",
"maxLength": 2
},
"PREF_INDIC": {
"title": "PREF_INDIC",
"type": "string",
"description": "",
"maxLength": 1
},
"NRCONDREC": {
"title": "NRCONDREC",
"type": "string",
"description": "",
"maxLength": 10
},
"INTCLASSNR": {
"title": "INTCLASSNR",
"type": "integer",
"description": ""
},
"BATCH_EXIT": {
"title": "BATCH_EXIT",
"type": "integer",
"description": ""
},
"BOM_CATEGO": {
"title": "BOM_CATEGO",
"type": "string",
"description": "",
"maxLength": 1
},
"BOM_IT_NR": {
"title": "BOM_IT_NR",
"type": "integer",
"description": ""
},
"COUNTER": {
"title": "COUNTER",
"type": "integer",
"description": ""
},
"INCONSCONF": {
"title": "INCONSCONF",
"type": "string",
"description": "",
"maxLength": 1
},
"OVERH_KEY": {
"title": "OVERH_KEY",
"type": "string",
"description": "",
"maxLength": 6
},
"CSTG_SHEET": {
"title": "CSTG_SHEET",
"type": "string",
"description": "",
"maxLength": 6
},
"CSTG_VRNT1": {
"title": "CSTG_VRNT1",
"type": "string",
"description": "",
"maxLength": 4
},
"PROD_ALLOC": {
"title": "PROD_ALLOC",
"type": "string",
"description": "",
"maxLength": 18
},
"PRICE_REF": {
"title": "PRICE_REF",
"type": "string",
"description": "",
"maxLength": 18
},
"MATPRICGRP": {
"title": "MATPRICGRP",
"type": "string",
"description": "",
"maxLength": 2
},
"MATFRGTGRP": {
"title": "MATFRGTGRP",
"type": "string",
"description": "",
"maxLength": 8
},
"PLANDLVSCH": {
"title": "PLANDLVSCH",
"type": "string",
"description": "",
"maxLength": 4
},
"SEQUENCENO": {
"title": "SEQUENCENO",
"type": "string",
"description": "",
"maxLength": 35
},
"CREDPRIC": {
"title": "CREDPRIC",
"type": "number",
"description": ""
},
"PAY_GUARAN": {
"title": "PAY_GUARAN",
"type": "string",
"description": "",
"maxLength": 2
},
"GURANTEED": {
"title": "GURANTEED",
"type": "number",
"description": ""
},
"CFOP_CODE": {
"title": "CFOP_CODE",
"type": "string",
"description": "",
"maxLength": 5
},
"TAXLAWICMS": {
"title": "TAXLAWICMS",
"type": "string",
"description": "",
"maxLength": 3
},
"TAXLAWIPI": {
"title": "TAXLAWIPI",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_TAXCODE": {
"title": "SD_TAXCODE",
"type": "string",
"description": "",
"maxLength": 2
},
"VALCONTRNR": {
"title": "VALCONTRNR",
"type": "string",
"description": "",
"maxLength": 10
},
"VALCONTRIT": {
"title": "VALCONTRIT",
"type": "integer",
"description": ""
},
"ASSORT_MOD": {
"title": "ASSORT_MOD",
"type": "string",
"description": "",
"maxLength": 18
},
"VALSPECSTO": {
"title": "VALSPECSTO",
"type": "string",
"description": "",
"maxLength": 1
},
"MATGRHIE1": {
"title": "MATGRHIE1",
"type": "string",
"description": "",
"maxLength": 18
},
"MATGRHIE2": {
"title": "MATGRHIE2",
"type": "string",
"description": "",
"maxLength": 18
},
"PROMOTION": {
"title": "PROMOTION",
"type": "string",
"description": "",
"maxLength": 10
},
"SALES_DEAL": {
"title": "SALES_DEAL",
"type": "string",
"description": "",
"maxLength": 10
},
"FLGLEADUNI": {
"title": "FLGLEADUNI",
"type": "string",
"description": "",
"maxLength": 1
},
"FREE_GOODS": {
"title": "FREE_GOODS",
"type": "string",
"description": "",
"maxLength": 1
},
"VALID_OBJ": {
"title": "VALID_OBJ",
"type": "string",
"description": "",
"maxLength": 12
},
"TAX_AMOUNT": {
"title": "TAX_AMOUNT",
"type": "number",
"description": ""
},
"MRP_AREA": {
"title": "MRP_AREA",
"type": "string",
"description": "",
"maxLength": 10
},
"CUST_MAT35": {
"title": "CUST_MAT35",
"type": "string",
"description": "",
"maxLength": 35
},
"CR_EXCHRAT_V": {
"title": "CR_EXCHRAT_V",
"type": "number",
"description": ""
},
"EXCHRATEST_V": {
"title": "EXCHRATEST_V",
"type": "number",
"description": ""
},
"ITM_TYPE_USAGE": {
"title": "ITM_TYPE_USAGE",
"type": "string",
"description": "",
"maxLength": 4
},
"CFOP_LONG": {
"title": "CFOP_LONG",
"type": "string",
"description": "",
"maxLength": 10
},
"GROSS_VAL": {
"title": "GROSS_VAL",
"type": "number",
"description": ""
},
"LOG_SYSTEM_OWN": {
"title": "LOG_SYSTEM_OWN",
"type": "string",
"description": "",
"maxLength": 10
},
"TAXLAWISS": {
"title": "TAXLAWISS",
"type": "string",
"description": "",
"maxLength": 3
},
"TAXLAWCOFINS": {
"title": "TAXLAWCOFINS",
"type": "string",
"description": "",
"maxLength": 3
},
"TAXLAWPIS": {
"title": "TAXLAWPIS",
"type": "string",
"description": "",
"maxLength": 3
}
},
"required": []
}
},
"ORDER_PARTNERS_OUT": {
"title": "ORDER_PARTNERS_OUT",
"type": "array",
"description": "Order Partners for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDPART",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"PARTN_ROLE": {
"title": "PARTN_ROLE",
"type": "string",
"description": "",
"maxLength": 2
},
"CUSTOMER": {
"title": "CUSTOMER",
"type": "string",
"description": "",
"maxLength": 10
},
"VENDOR_NO": {
"title": "VENDOR_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"PERSON_NO": {
"title": "PERSON_NO",
"type": "integer",
"description": ""
},
"CONTACT": {
"title": "CONTACT",
"type": "integer",
"description": ""
},
"ADDRESS": {
"title": "ADDRESS",
"type": "string",
"description": "",
"maxLength": 10
},
"UNLOAD_PT": {
"title": "UNLOAD_PT",
"type": "string",
"description": "",
"maxLength": 25
},
"COUNTRY": {
"title": "COUNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"COUNTRYISO": {
"title": "COUNTRYISO",
"type": "string",
"description": "",
"maxLength": 2
},
"ADDRE_INDI": {
"title": "ADDRE_INDI",
"type": "string",
"description": "",
"maxLength": 1
},
"ACC_1_TIME": {
"title": "ACC_1_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"CUSTHITYP": {
"title": "CUSTHITYP",
"type": "string",
"description": "",
"maxLength": 1
},
"PRIC_REL": {
"title": "PRIC_REL",
"type": "string",
"description": "",
"maxLength": 1
},
"REBATE_REL": {
"title": "REBATE_REL",
"type": "string",
"description": "",
"maxLength": 1
},
"LEVEL_NR": {
"title": "LEVEL_NR",
"type": "integer",
"description": ""
},
"DESC_PARTN": {
"title": "DESC_PARTN",
"type": "string",
"description": "",
"maxLength": 30
},
"TRANSPZONE": {
"title": "TRANSPZONE",
"type": "string",
"description": "",
"maxLength": 10
},
"ASSIGN_HI": {
"title": "ASSIGN_HI",
"type": "integer",
"description": ""
},
"VAT_REG_NO": {
"title": "VAT_REG_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"FURTHERPAR": {
"title": "FURTHERPAR",
"type": "string",
"description": "",
"maxLength": 1
},
"PERS_NO": {
"title": "PERS_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"CALEND_UPD": {
"title": "CALEND_UPD",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_SCHEDULES_OUT": {
"title": "ORDER_SCHEDULES_OUT",
"type": "array",
"description": "Order Schedule Lines for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDHEDU",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"SCHED_LINE": {
"title": "SCHED_LINE",
"type": "integer",
"description": ""
},
"SCHED_TYPE": {
"title": "SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"RELFORDEL": {
"title": "RELFORDEL",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_DATE": {
"title": "REQ_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"REQ_TIME": {
"title": "REQ_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "number",
"description": ""
},
"CONFIR_QTY": {
"title": "CONFIR_QTY",
"type": "number",
"description": ""
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"ISOCODUNIT": {
"title": "ISOCODUNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"REQ_QTY1": {
"title": "REQ_QTY1",
"type": "number",
"description": ""
},
"BASE_UOM": {
"title": "BASE_UOM",
"type": "string",
"description": "",
"maxLength": 3
},
"ISOBASUNIT": {
"title": "ISOBASUNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"REQ_DATE1": {
"title": "REQ_DATE1",
"type": "string",
"description": "",
"maxLength": 8
},
"REQ_TYPE": {
"title": "REQ_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"PLTYPE": {
"title": "PLTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"BUSIDOCNR": {
"title": "BUSIDOCNR",
"type": "string",
"description": "",
"maxLength": 10
},
"BUSIITNR": {
"title": "BUSIITNR",
"type": "integer",
"description": ""
},
"SCHED_LIN1": {
"title": "SCHED_LIN1",
"type": "integer",
"description": ""
},
"EARL_DATE": {
"title": "EARL_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"MAINT_REQ": {
"title": "MAINT_REQ",
"type": "integer",
"description": ""
},
"PREQ_NO": {
"title": "PREQ_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_TYPE": {
"title": "PO_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"DOC_CAT": {
"title": "DOC_CAT",
"type": "string",
"description": "",
"maxLength": 1
},
"CONF_STAT": {
"title": "CONF_STAT",
"type": "string",
"description": "",
"maxLength": 1
},
"IR_IND": {
"title": "IR_IND",
"type": "string",
"description": "",
"maxLength": 1
},
"RETURNDATE": {
"title": "RETURNDATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_DATE": {
"title": "TP_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"MS_DATE": {
"title": "MS_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"LOAD_DATE": {
"title": "LOAD_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"GI_DATE": {
"title": "GI_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"CORR_QTY": {
"title": "CORR_QTY",
"type": "number",
"description": ""
},
"REQ_DLV_BL": {
"title": "REQ_DLV_BL",
"type": "string",
"description": "",
"maxLength": 2
},
"GRP_DEFIN": {
"title": "GRP_DEFIN",
"type": "integer",
"description": ""
},
"RELEASTYP": {
"title": "RELEASTYP",
"type": "string",
"description": "",
"maxLength": 1
},
"FORCAST_NR": {
"title": "FORCAST_NR",
"type": "integer",
"description": ""
},
"COMMIT_QTY": {
"title": "COMMIT_QTY",
"type": "number",
"description": ""
},
"SIZE2": {
"title": "SIZE2",
"type": "number",
"description": ""
},
"SIZE3": {
"title": "SIZE3",
"type": "number",
"description": ""
},
"UNIT_MEAS": {
"title": "UNIT_MEAS",
"type": "string",
"description": "",
"maxLength": 3
},
"ISO_ROMEI": {
"title": "ISO_ROMEI",
"type": "string",
"description": "",
"maxLength": 3
},
"FORMULAKEY": {
"title": "FORMULAKEY",
"type": "string",
"description": "",
"maxLength": 2
},
"SALESQTYNR": {
"title": "SALESQTYNR",
"type": "number",
"description": ""
},
"SALESQTYDE": {
"title": "SALESQTYDE",
"type": "number",
"description": ""
},
"AVAIL_CON": {
"title": "AVAIL_CON",
"type": "string",
"description": "",
"maxLength": 1
},
"MOVE_TYPE": {
"title": "MOVE_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"PREQ_ITEM": {
"title": "PREQ_ITEM",
"type": "integer",
"description": ""
},
"LINTYP_EDI": {
"title": "LINTYP_EDI",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDERID": {
"title": "ORDERID",
"type": "string",
"description": "",
"maxLength": 12
},
"PLANORDNR": {
"title": "PLANORDNR",
"type": "string",
"description": "",
"maxLength": 10
},
"BOMEXPL_NO": {
"title": "BOMEXPL_NO",
"type": "string",
"description": "",
"maxLength": 8
},
"CUSTCHSTAT": {
"title": "CUSTCHSTAT",
"type": "string",
"description": "",
"maxLength": 17
},
"GURANTEED": {
"title": "GURANTEED",
"type": "number",
"description": ""
},
"MS_TIME": {
"title": "MS_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"TP_TIME": {
"title": "TP_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"LOAD_TIME": {
"title": "LOAD_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"GI_TIME": {
"title": "GI_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"ROUTESCHED": {
"title": "ROUTESCHED",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
},
"ORDER_STATUSHEADERS_OUT": {
"title": "ORDER_STATUSHEADERS_OUT",
"type": "array",
"description": "Header Status for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDHDST",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"REFDOCHDST": {
"title": "REFDOCHDST",
"type": "string",
"description": "",
"maxLength": 1
},
"TOTREFSTAT": {
"title": "TOTREFSTAT",
"type": "string",
"description": "",
"maxLength": 1
},
"CONFIRSTAT": {
"title": "CONFIRSTAT",
"type": "string",
"description": "",
"maxLength": 1
},
"DELIV_STAT": {
"title": "DELIV_STAT",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_STAT_H": {
"title": "DLV_STAT_H",
"type": "string",
"description": "",
"maxLength": 1
},
"TOTGOODSMV": {
"title": "TOTGOODSMV",
"type": "string",
"description": "",
"maxLength": 1
},
"BILLSTATUS": {
"title": "BILLSTATUS",
"type": "string",
"description": "",
"maxLength": 1
},
"BILLINGSTA": {
"title": "BILLINGSTA",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCOUNTSTA": {
"title": "ACCOUNTSTA",
"type": "string",
"description": "",
"maxLength": 1
},
"OVERALLREJ": {
"title": "OVERALLREJ",
"type": "string",
"description": "",
"maxLength": 1
},
"PRC_STAT_H": {
"title": "PRC_STAT_H",
"type": "string",
"description": "",
"maxLength": 1
},
"OVERALLPIC": {
"title": "OVERALLPIC",
"type": "string",
"description": "",
"maxLength": 1
},
"OVERALL_WM": {
"title": "OVERALL_WM",
"type": "string",
"description": "",
"maxLength": 1
},
"TOTINCOMPL": {
"title": "TOTINCOMPL",
"type": "string",
"description": "",
"maxLength": 1
},
"TOTINCOMIT": {
"title": "TOTINCOMIT",
"type": "string",
"description": "",
"maxLength": 1
},
"TOTINCOMBI": {
"title": "TOTINCOMBI",
"type": "string",
"description": "",
"maxLength": 1
},
"GENINCOMHD": {
"title": "GENINCOMHD",
"type": "string",
"description": "",
"maxLength": 1
},
"HDIMCOMDEL": {
"title": "HDIMCOMDEL",
"type": "string",
"description": "",
"maxLength": 1
},
"HDINCOMBIL": {
"title": "HDINCOMBIL",
"type": "string",
"description": "",
"maxLength": 1
},
"DOCIMCOMPR": {
"title": "DOCIMCOMPR",
"type": "string",
"description": "",
"maxLength": 1
},
"SD_DOC_CAT": {
"title": "SD_DOC_CAT",
"type": "string",
"description": "",
"maxLength": 1
},
"SDDOCOBJ": {
"title": "SDDOCOBJ",
"type": "string",
"description": "",
"maxLength": 1
},
"CH_ON": {
"title": "CH_ON",
"type": "string",
"description": "",
"maxLength": 8
},
"BILTOTSTAT": {
"title": "BILTOTSTAT",
"type": "string",
"description": "",
"maxLength": 1
},
"INVOICSTAT": {
"title": "INVOICSTAT",
"type": "string",
"description": "",
"maxLength": 1
},
"CUSTRESHD1": {
"title": "CUSTRESHD1",
"type": "string",
"description": "",
"maxLength": 1
},
"CUSTRESHD2": {
"title": "CUSTRESHD2",
"type": "string",
"description": "",
"maxLength": 1
},
"CUSTRESHD3": {
"title": "CUSTRESHD3",
"type": "string",
"description": "",
"maxLength": 1
},
"CUSTRESHD4": {
"title": "CUSTRESHD4",
"type": "string",
"description": "",
"maxLength": 1
},
"CUSTRESHD5": {
"title": "CUSTRESHD5",
"type": "string",
"description": "",
"maxLength": 1
},
"CUSTRESIT1": {
"title": "CUSTRESIT1",
"type": "string",
"description": "",
"maxLength": 1
},
"CUSTRESIT2": {
"title": "CUSTRESIT2",
"type": "string",
"description": "",
"maxLength": 1
},
"CUSTRESIT3": {
"title": "CUSTRESIT3",
"type": "string",
"description": "",
"maxLength": 1
},
"CUSTRESIT4": {
"title": "CUSTRESIT4",
"type": "string",
"description": "",
"maxLength": 1
},
"CUSTRESIT5": {
"title": "CUSTRESIT5",
"type": "string",
"description": "",
"maxLength": 1
},
"TOTSTATIT": {
"title": "TOTSTATIT",
"type": "string",
"description": "",
"maxLength": 1
},
"STATSTACLC": {
"title": "STATSTACLC",
"type": "string",
"description": "",
"maxLength": 1
},
"STATDYNCLC": {
"title": "STATDYNCLC",
"type": "string",
"description": "",
"maxLength": 1
},
"STATCREDCH": {
"title": "STATCREDCH",
"type": "string",
"description": "",
"maxLength": 1
},
"STATCRECH1": {
"title": "STATCRECH1",
"type": "string",
"description": "",
"maxLength": 1
},
"STATCRECH2": {
"title": "STATCRECH2",
"type": "string",
"description": "",
"maxLength": 1
},
"STATCRECH3": {
"title": "STATCRECH3",
"type": "string",
"description": "",
"maxLength": 1
},
"STATCRECH4": {
"title": "STATCRECH4",
"type": "string",
"description": "",
"maxLength": 1
},
"STATCRECH5": {
"title": "STATCRECH5",
"type": "string",
"description": "",
"maxLength": 1
},
"STATCRECH6": {
"title": "STATCRECH6",
"type": "string",
"description": "",
"maxLength": 1
},
"STATCRECH7": {
"title": "STATCRECH7",
"type": "string",
"description": "",
"maxLength": 1
},
"STATCRECH8": {
"title": "STATCRECH8",
"type": "string",
"description": "",
"maxLength": 1
},
"STATCRECH9": {
"title": "STATCRECH9",
"type": "string",
"description": "",
"maxLength": 1
},
"STATCRECHA": {
"title": "STATCRECHA",
"type": "string",
"description": "",
"maxLength": 1
},
"STATCRECHB": {
"title": "STATCRECHB",
"type": "string",
"description": "",
"maxLength": 1
},
"STATCRECHC": {
"title": "STATCRECHC",
"type": "string",
"description": "",
"maxLength": 1
},
"TOTSTATCCH": {
"title": "TOTSTATCCH",
"type": "string",
"description": "",
"maxLength": 1
},
"TRNSPLANST": {
"title": "TRNSPLANST",
"type": "string",
"description": "",
"maxLength": 1
},
"QUITTSTAT": {
"title": "QUITTSTAT",
"type": "string",
"description": "",
"maxLength": 1
},
"CONFIRMSTA": {
"title": "CONFIRMSTA",
"type": "string",
"description": "",
"maxLength": 1
},
"SAPRELEASE": {
"title": "SAPRELEASE",
"type": "string",
"description": "",
"maxLength": 4
},
"TOTINCOMI": {
"title": "TOTINCOMI",
"type": "string",
"description": "",
"maxLength": 1
},
"TOTINCOMI1": {
"title": "TOTINCOMI1",
"type": "string",
"description": "",
"maxLength": 1
},
"TOTINCOMI2": {
"title": "TOTINCOMI2",
"type": "string",
"description": "",
"maxLength": 1
},
"HDINCOMPL": {
"title": "HDINCOMPL",
"type": "string",
"description": "",
"maxLength": 1
},
"HDINCOMPL1": {
"title": "HDINCOMPL1",
"type": "string",
"description": "",
"maxLength": 1
},
"HDINCOMPL2": {
"title": "HDINCOMPL2",
"type": "string",
"description": "",
"maxLength": 1
},
"HDINCOMPL3": {
"title": "HDINCOMPL3",
"type": "string",
"description": "",
"maxLength": 1
},
"CREDCHECK": {
"title": "CREDCHECK",
"type": "string",
"description": "",
"maxLength": 1
},
"DELAYSTAT": {
"title": "DELAYSTAT",
"type": "string",
"description": "",
"maxLength": 1
},
"SHIPPUNIT": {
"title": "SHIPPUNIT",
"type": "string",
"description": "",
"maxLength": 1
},
"DISTRISTAT": {
"title": "DISTRISTAT",
"type": "string",
"description": "",
"maxLength": 1
},
"REVDETSTAT": {
"title": "REVDETSTAT",
"type": "string",
"description": "",
"maxLength": 1
},
"INDIDOCACH": {
"title": "INDIDOCACH",
"type": "string",
"description": "",
"maxLength": 1
},
"TOBILBLOST": {
"title": "TOBILBLOST",
"type": "string",
"description": "",
"maxLength": 1
},
"TODELBLOST": {
"title": "TODELBLOST",
"type": "string",
"description": "",
"maxLength": 1
},
"TOBLOCKSTA": {
"title": "TOBLOCKSTA",
"type": "string",
"description": "",
"maxLength": 1
},
"LEBHEADSTA": {
"title": "LEBHEADSTA",
"type": "string",
"description": "",
"maxLength": 1
},
"FMSTATUS": {
"title": "FMSTATUS",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_STATUSITEMS_OUT": {
"title": "ORDER_STATUSITEMS_OUT",
"type": "array",
"description": "Item Status for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDITST",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"REFERNSTAT": {
"title": "REFERNSTAT",
"type": "string",
"description": "",
"maxLength": 1
},
"REFTOTSTAT": {
"title": "REFTOTSTAT",
"type": "string",
"description": "",
"maxLength": 1
},
"CONFSTATIT": {
"title": "CONFSTATIT",
"type": "string",
"description": "",
"maxLength": 1
},
"DELIV_STAT": {
"title": "DELIV_STAT",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_STAT_I": {
"title": "DLV_STAT_I",
"type": "string",
"description": "",
"maxLength": 1
},
"GOODSMVSTA": {
"title": "GOODSMVSTA",
"type": "string",
"description": "",
"maxLength": 1
},
"BILLSTATHD": {
"title": "BILLSTATHD",
"type": "string",
"description": "",
"maxLength": 1
},
"BILLSTATIT": {
"title": "BILLSTATIT",
"type": "string",
"description": "",
"maxLength": 1
},
"REJSTATIT": {
"title": "REJSTATIT",
"type": "string",
"description": "",
"maxLength": 1
},
"OVRPROCSTA": {
"title": "OVRPROCSTA",
"type": "string",
"description": "",
"maxLength": 1
},
"PICKINGSTA": {
"title": "PICKINGSTA",
"type": "string",
"description": "",
"maxLength": 1
},
"WHMANAGSTA": {
"title": "WHMANAGSTA",
"type": "string",
"description": "",
"maxLength": 1
},
"GENINCOMST": {
"title": "GENINCOMST",
"type": "string",
"description": "",
"maxLength": 1
},
"INCOMSTDEL": {
"title": "INCOMSTDEL",
"type": "string",
"description": "",
"maxLength": 1
},
"INCOMSTBIL": {
"title": "INCOMSTBIL",
"type": "string",
"description": "",
"maxLength": 1
},
"INCOMSTPRI": {
"title": "INCOMSTPRI",
"type": "string",
"description": "",
"maxLength": 1
},
"BILLSTAINT": {
"title": "BILLSTAINT",
"type": "string",
"description": "",
"maxLength": 1
},
"CUSTRESIT1": {
"title": "CUSTRESIT1",
"type": "string",
"description": "",
"maxLength": 1
},
"CUSTRESIT2": {
"title": "CUSTRESIT2",
"type": "string",
"description": "",
"maxLength": 1
},
"CUSTRESIT3": {
"title": "CUSTRESIT3",
"type": "string",
"description": "",
"maxLength": 1
},
"CUSTRESIT4": {
"title": "CUSTRESIT4",
"type": "string",
"description": "",
"maxLength": 1
},
"CUSTRESIT5": {
"title": "CUSTRESIT5",
"type": "string",
"description": "",
"maxLength": 1
},
"PACKSTSTIT": {
"title": "PACKSTSTIT",
"type": "string",
"description": "",
"maxLength": 1
},
"STAPICKCON": {
"title": "STAPICKCON",
"type": "string",
"description": "",
"maxLength": 1
},
"CONFIRMSTA": {
"title": "CONFIRMSTA",
"type": "string",
"description": "",
"maxLength": 1
},
"STATCRECH6": {
"title": "STATCRECH6",
"type": "string",
"description": "",
"maxLength": 1
},
"STATCRECH7": {
"title": "STATCRECH7",
"type": "string",
"description": "",
"maxLength": 1
},
"INCOMSTAIT": {
"title": "INCOMSTAIT",
"type": "string",
"description": "",
"maxLength": 1
},
"INCOMSTAPA": {
"title": "INCOMSTAPA",
"type": "string",
"description": "",
"maxLength": 1
},
"INCOSTAGOO": {
"title": "INCOSTAGOO",
"type": "string",
"description": "",
"maxLength": 1
},
"DELAYSTAT": {
"title": "DELAYSTAT",
"type": "string",
"description": "",
"maxLength": 1
},
"REVDETSTAT": {
"title": "REVDETSTAT",
"type": "string",
"description": "",
"maxLength": 1
},
"DECTWHOUSE": {
"title": "DECTWHOUSE",
"type": "string",
"description": "",
"maxLength": 1
},
"ITBILBLOST": {
"title": "ITBILBLOST",
"type": "string",
"description": "",
"maxLength": 1
},
"ITDELBLOST": {
"title": "ITDELBLOST",
"type": "string",
"description": "",
"maxLength": 1
},
"LEBITEMSTA": {
"title": "LEBITEMSTA",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_TEXTHEADERS_OUT": {
"title": "ORDER_TEXTHEADERS_OUT",
"type": "array",
"description": "Text Header Information for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDTEHD",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_DOC": {
"title": "SD_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"APPLOBJECT": {
"title": "APPLOBJECT",
"type": "string",
"description": "",
"maxLength": 10
},
"TEXT_NAME": {
"title": "TEXT_NAME",
"type": "string",
"description": "",
"maxLength": 70
},
"TEXT_ID": {
"title": "TEXT_ID",
"type": "string",
"description": "",
"maxLength": 4
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"LANGU_ISO": {
"title": "LANGU_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"TITLE": {
"title": "TITLE",
"type": "string",
"description": "",
"maxLength": 50
},
"FORM": {
"title": "FORM",
"type": "string",
"description": "",
"maxLength": 16
},
"STYLE": {
"title": "STYLE",
"type": "string",
"description": "",
"maxLength": 8
},
"VERSION": {
"title": "VERSION",
"type": "integer",
"description": ""
},
"CREATEUSER": {
"title": "CREATEUSER",
"type": "string",
"description": "",
"maxLength": 12
},
"CREATEREL": {
"title": "CREATEREL",
"type": "string",
"description": "",
"maxLength": 4
},
"CREATEDATE": {
"title": "CREATEDATE",
"type": "string",
"description": "",
"maxLength": 8
},
"CREATETIME": {
"title": "CREATETIME",
"type": "string",
"description": "",
"maxLength": 6
},
"CHANGEUSER": {
"title": "CHANGEUSER",
"type": "string",
"description": "",
"maxLength": 12
},
"CHANGEREL": {
"title": "CHANGEREL",
"type": "string",
"description": "",
"maxLength": 4
},
"CHANGEDATE": {
"title": "CHANGEDATE",
"type": "string",
"description": "",
"maxLength": 8
},
"CHANGETIME": {
"title": "CHANGETIME",
"type": "string",
"description": "",
"maxLength": 6
},
"LINESIZE": {
"title": "LINESIZE",
"type": "integer",
"description": ""
},
"LINEAMOUNT": {
"title": "LINEAMOUNT",
"type": "integer",
"description": ""
},
"HYPHENAT": {
"title": "HYPHENAT",
"type": "string",
"description": "",
"maxLength": 1
},
"ORGSPRAS": {
"title": "ORGSPRAS",
"type": "string",
"description": "",
"maxLength": 1
},
"ORGSPRAISO": {
"title": "ORGSPRAISO",
"type": "string",
"description": "",
"maxLength": 2
},
"TRANSTAT": {
"title": "TRANSTAT",
"type": "integer",
"description": ""
},
"MATCHCOD1": {
"title": "MATCHCOD1",
"type": "string",
"description": "",
"maxLength": 16
},
"MATCHCOD2": {
"title": "MATCHCOD2",
"type": "string",
"description": "",
"maxLength": 16
},
"REFOBJECT": {
"title": "REFOBJECT",
"type": "string",
"description": "",
"maxLength": 10
},
"REFNAME": {
"title": "REFNAME",
"type": "string",
"description": "",
"maxLength": 70
},
"REFID": {
"title": "REFID",
"type": "string",
"description": "",
"maxLength": 4
},
"TEXTTYPE": {
"title": "TEXTTYPE",
"type": "string",
"description": "",
"maxLength": 6
},
"COMPRESSTD": {
"title": "COMPRESSTD",
"type": "string",
"description": "",
"maxLength": 1
},
"OBJ_CLASS": {
"title": "OBJ_CLASS",
"type": "string",
"description": "",
"maxLength": 4
}
},
"required": []
}
},
"ORDER_TEXTLINES_OUT": {
"title": "ORDER_TEXTLINES_OUT",
"type": "array",
"description": "Text Lines for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPITEXTLI",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"APPLOBJECT": {
"title": "APPLOBJECT",
"type": "string",
"description": "",
"maxLength": 10
},
"TEXT_NAME": {
"title": "TEXT_NAME",
"type": "string",
"description": "",
"maxLength": 70
},
"TEXT_ID": {
"title": "TEXT_ID",
"type": "string",
"description": "",
"maxLength": 4
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"LANGU_ISO": {
"title": "LANGU_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"LINE_CNT": {
"title": "LINE_CNT",
"type": "integer",
"description": ""
},
"LINE": {
"title": "LINE",
"type": "string",
"description": "",
"maxLength": 132
},
"FORMAT_COL": {
"title": "FORMAT_COL",
"type": "string",
"description": "",
"maxLength": 2
}
},
"required": []
}
},
"SALES_DOCUMENTS": {
"title": "SALES_DOCUMENTS",
"type": "array",
"description": "Document Numbers to Be Selected",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "SALES_KEY",
"type": "object",
"properties": {
"VBELN": {
"title": "VBELN",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
}
},
"required": [
"SALES_DOCUMENTS"
]
}
Example:
{
"EXTENSIONOUT": [],
"ORDER_ADDRESS_OUT": [
{
"OPERATION": "005",
"DOC_NUMBER": "0000000151",
"ADDRESS": "0000023206",
"NAME": "Power Inc.",
"STREET": "Wood Ave",
"COUNTRY": "US",
"COUNTRYISO": "US",
"POSTL_CODE": "90025",
"CITY": "LOS ANGELES",
"REGION": "CA",
"LANGU": "E",
"LANGU_ISO": "EN",
"TRANSPZONE": "0000000001",
"HOUSE_NO": 65,
"NAME_LIST": "Power Inc.",
"TAXJURCODE": "CA0000000",
"ADDR_TYPE": "1",
"STREETNA": "Wood Ave",
"HOUSE_NO_LONG": "65"
}
],
"ORDER_BILLINGDATES_OUT": [],
"ORDER_BILLINGPLANS_OUT": [],
"ORDER_BUSINESS_OUT": [
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"ITM_NUMBER": 0,
"CUST_GROUP": "02",
"INCOTERMS1": "EXW",
"INCOTERMS2": "Manufacturing",
"EXCHRATEFI": 0,
"ADD_VAL_DY": 0,
"PMNTTRMS": "0001",
"ACCNT_ASGN": "01",
"EXCHG_RATE": 1,
"PRICE_DATE": "2014-07-25",
"BILL_DATE": "2014-07-25",
"FISC_YEAR": 0,
"POSTPERIOD": 0,
"EXCHRATEST": 1,
"PAY_GUARAN": "000002",
"PURCH_NO_C": "bundle102",
"EXCHRATECO": 0,
"EXCHRATELC": 0,
"CEPRPERCEN": 0,
"CUST_PO_NO": "BUNDLE102",
"EXCHRATELC_V": 0,
"EXCH_RATE_FI_V": 0,
"EXCHG_RATE_V": 0,
"EXCHRATEST_V": 0,
"EXCHRATECO_V": 0
}
],
"ORDER_CFGS_CUBLBS_OUT": [],
"ORDER_CFGS_CUCFGS_OUT": [],
"ORDER_CFGS_CUINS_OUT": [],
"ORDER_CFGS_CUPRTS_OUT": [],
"ORDER_CFGS_CUREFS_OUT": [],
"ORDER_CFGS_CUVALS_OUT": [],
"ORDER_CFGS_CUVKS_OUT": [],
"ORDER_CONDITIONS_OUT": [
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 10,
"COND_ST_NO": 11,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"SD000COND_TYPE": "PR00",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 5,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 450,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"CONDORIGIN": "A",
"ACCESS_SEQ": 40,
"COND_NO": "0000007608",
"CONDCOUNT": 1,
"ACCOUNTKEY": "ERL",
"ROUNDOFFDI": 0,
"CONDVALUE": 2250,
"CONDCNTRL": "A",
"CONDCLASS": "B",
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 0,
"SCALETYP": "A",
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "2",
"INDEXNO": "0",
"CONDITIDX": 1,
"PRINT_ID": "X",
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"COND_FORM": 0,
"COND_FORM1": 0,
"MAKMANENTR": "C",
"CONDISMAND": "X",
"RATEOFCHA1": "X",
"SCALEBASIN": "C",
"SCALBASVAL": 5,
"UNITMEASUR": "EA",
"TUNITISO": "EA",
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"QTYCONVERS": "X",
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 10,
"COND_ST_NO": 100,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 5,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 450,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 2250,
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 2,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "6",
"INDEXNO": "0",
"CONDITIDX": 0,
"PRINT_ID": "X",
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"CONDSUBTOT": "1",
"COND_FORM": 0,
"COND_FORM1": 0,
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 10,
"COND_ST_NO": 104,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"SD000COND_TYPE": "K007",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "A",
"CONBASEVAL": 2250,
"SD000COND_VALUE": -2,
"CONEXCHRAT": 0,
"COND_P_UNT": 0,
"NUMCONVERT": 0,
"DENOMINATO": 0,
"CONDORIGIN": "A",
"ACCESS_SEQ": 10,
"COND_NO": "0000007626",
"CONDCOUNT": 1,
"ACCOUNTKEY": "ERS",
"ROUNDOFFDI": 0,
"CONDVALUE": -45,
"CONDCNTRL": "A",
"CONDCLASS": "A",
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 0,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "10",
"INDEXNO": "0",
"CONDITIDX": 1,
"PRINT_ID": "X",
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"COND_FORM": 0,
"COND_FORM1": 0,
"PMSIGNAMOU": "X",
"RATEOFCHA1": "X",
"RATEOFCHA5": "X",
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 10,
"COND_ST_NO": 300,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 5,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": -9,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": -45,
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 0,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "25",
"INDEXNO": "0",
"CONDITIDX": 0,
"FROREFSTEP": 101,
"FROMREFSTE": 299,
"COND_FORM": 0,
"COND_FORM1": 0,
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 10,
"COND_ST_NO": 400,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 5,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 441,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 2205,
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 0,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "30",
"INDEXNO": "0",
"CONDITIDX": 0,
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"CONDSUBTOT": "7",
"COND_FORM": 0,
"COND_FORM1": 0,
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 10,
"COND_ST_NO": 800,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 5,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 441,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 2205,
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 2,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "31",
"INDEXNO": "0",
"CONDITIDX": 0,
"PRINT_ID": "X",
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"CONDSUBTOT": "2",
"COND_FORM": 0,
"COND_FORM1": 0,
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 10,
"COND_ST_NO": 900,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 5,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 441,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 2205,
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 2,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "44",
"INDEXNO": "0",
"CONDITIDX": 0,
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"CONDSUBTOT": "3",
"COND_FORM": 0,
"COND_FORM1": 0,
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 10,
"COND_ST_NO": 908,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 5,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 441,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 2205,
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 0,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "45",
"INDEXNO": "0",
"CONDITIDX": 0,
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"COND_FORM": 0,
"COND_FORM1": 0,
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 10,
"COND_ST_NO": 911,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"SD000COND_TYPE": "AZWR",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "B",
"CONBASEVAL": 220500,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 0,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 0,
"NUMCONVERT": 0,
"DENOMINATO": 0,
"CONDTYPE": "e",
"CONDORIGIN": "A",
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ACCOUNTKEY": "ERL",
"ROUNDOFFDI": 0,
"CONDVALUE": 0,
"CONDCNTRL": "A",
"CONDCLASS": "A",
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 48,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "48",
"INDEXNO": "0",
"CONDITIDX": 0,
"PRINT_ID": "S",
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"COND_FORM": 0,
"COND_FORM1": 0,
"RATEOFCHA2": "X",
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 10,
"COND_ST_NO": 915,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"SD000COND_TYPE": "UTXJ",
"CONPRICDAT": "2014-10-27",
"CALCTYPCON": "A",
"CONBASEVAL": 2205,
"SD000COND_VALUE": 0,
"CONEXCHRAT": 0,
"COND_P_UNT": 0,
"NUMCONVERT": 0,
"DENOMINATO": 0,
"CONDTYPE": "1",
"STAT_CON": "X",
"CONDORIGIN": "A",
"ACCESS_SEQ": 10,
"COND_NO": "0000007291",
"CONDCOUNT": 1,
"ACCOUNTKEY": "MWS",
"TAX_CODE": "O1",
"ROUNDOFFDI": 0,
"CONDVALUE": 0,
"CONDCNTRL": "A",
"CONDCLASS": "D",
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 0,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "50",
"INDEXNO": "0",
"CONDITIDX": 1,
"FROREFSTEP": 900,
"FROMREFSTE": 0,
"COND_FORM": 0,
"COND_FORM1": 0,
"MAKMANENTR": "D",
"CONDISMAND": "X",
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 10,
"COND_ST_NO": 916,
"SD000COND_COUNT": 1,
"APPLICATIO": "TX",
"SD000COND_TYPE": "JR1",
"CONPRICDAT": "2014-10-27",
"CALCTYPCON": "A",
"CONBASEVAL": 2205,
"SD000COND_VALUE": 6,
"CONEXCHRAT": 0,
"COND_P_UNT": 0,
"NUMCONVERT": 0,
"DENOMINATO": 0,
"CONDTYPE": "1",
"CONDORIGIN": "A",
"ACCESS_SEQ": 10,
"COND_NO": "0000007613",
"CONDCOUNT": 1,
"ACCOUNTKEY": "MW1",
"TAX_CODE": "O1",
"ROUNDOFFDI": 0,
"CONDVALUE": 132.3,
"CONDCNTRL": "A",
"CONDCLASS": "D",
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 0,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "51",
"INDEXNO": "0",
"CONDITIDX": 0,
"PRINT_ID": "S",
"FROREFSTEP": 900,
"FROMREFSTE": 0,
"COND_FORM": 0,
"COND_FORM1": 0,
"MAKMANENTR": "C",
"RATEOFCHA1": "X",
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 10,
"COND_ST_NO": 920,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 5,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 467.46,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 2337.3,
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 4,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "56",
"INDEXNO": "0",
"CONDITIDX": 0,
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"CONDSUBTOT": "A",
"COND_FORM": 0,
"COND_FORM1": 0,
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 10,
"COND_ST_NO": 930,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"SD000COND_TYPE": "SKTO",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "A",
"CONBASEVAL": 2337.3,
"SD000COND_VALUE": 0,
"CONEXCHRAT": 0,
"COND_P_UNT": 0,
"NUMCONVERT": 0,
"DENOMINATO": 0,
"CONDTYPE": "E",
"STAT_CON": "X",
"CONDORIGIN": "A",
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 0,
"CONDCNTRL": "A",
"CONDCLASS": "A",
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 0,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "57",
"INDEXNO": "0",
"CONDITIDX": 0,
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"COND_FORM": 11,
"COND_FORM1": 0,
"MAKMANENTR": "D",
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 10,
"COND_ST_NO": 940,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"SD000COND_TYPE": "VPRS",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 5,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 142.86,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"CONDTYPE": "G",
"STAT_CON": "X",
"CONDORIGIN": "A",
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 714.3,
"CONDCNTRL": "A",
"CONDCLASS": "B",
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 0,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "59",
"INDEXNO": "0",
"CONDITIDX": 0,
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"CONDSUBTOT": "B",
"COND_FORM": 0,
"COND_FORM1": 0,
"MAKMANENTR": "D",
"SCALBASVAL": 0,
"CONDCURREN": "USD",
"CORR_ISO": "USD",
"CONBASVAL": 0,
"CONDIVALUE": 714.3,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"QTYCONVERS": "X",
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 10,
"COND_ST_NO": 950,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 5,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 298.14,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 1490.7,
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 11,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "62",
"INDEXNO": "0",
"CONDITIDX": 0,
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"COND_FORM": 0,
"COND_FORM1": 0,
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 20,
"COND_ST_NO": 11,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"SD000COND_TYPE": "PR00",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 9,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 125,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"CONDORIGIN": "A",
"ACCESS_SEQ": 40,
"COND_NO": "0000007609",
"CONDCOUNT": 1,
"ACCOUNTKEY": "ERL",
"ROUNDOFFDI": 0,
"CONDVALUE": 1125,
"CONDCNTRL": "A",
"CONDCLASS": "B",
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 0,
"SCALETYP": "A",
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "2",
"INDEXNO": "0",
"CONDITIDX": 1,
"PRINT_ID": "X",
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"COND_FORM": 0,
"COND_FORM1": 0,
"MAKMANENTR": "C",
"CONDISMAND": "X",
"RATEOFCHA1": "X",
"SCALEBASIN": "C",
"SCALBASVAL": 9,
"UNITMEASUR": "EA",
"TUNITISO": "EA",
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"QTYCONVERS": "X",
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 20,
"COND_ST_NO": 100,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 9,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 125,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 1125,
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 2,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "6",
"INDEXNO": "0",
"CONDITIDX": 0,
"PRINT_ID": "X",
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"CONDSUBTOT": "1",
"COND_FORM": 0,
"COND_FORM1": 0,
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 20,
"COND_ST_NO": 104,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"SD000COND_TYPE": "K007",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "A",
"CONBASEVAL": 1125,
"SD000COND_VALUE": -2,
"CONEXCHRAT": 0,
"COND_P_UNT": 0,
"NUMCONVERT": 0,
"DENOMINATO": 0,
"CONDORIGIN": "A",
"ACCESS_SEQ": 10,
"COND_NO": "0000007626",
"CONDCOUNT": 1,
"ACCOUNTKEY": "ERS",
"ROUNDOFFDI": 0,
"CONDVALUE": -22.5,
"CONDCNTRL": "A",
"CONDCLASS": "A",
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 0,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "10",
"INDEXNO": "0",
"CONDITIDX": 1,
"PRINT_ID": "X",
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"COND_FORM": 0,
"COND_FORM1": 0,
"PMSIGNAMOU": "X",
"RATEOFCHA1": "X",
"RATEOFCHA5": "X",
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 20,
"COND_ST_NO": 300,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 9,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": -2.5,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": -22.5,
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 0,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "25",
"INDEXNO": "0",
"CONDITIDX": 0,
"FROREFSTEP": 101,
"FROMREFSTE": 299,
"COND_FORM": 0,
"COND_FORM1": 0,
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 20,
"COND_ST_NO": 400,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 9,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 122.5,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 1102.5,
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 0,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "30",
"INDEXNO": "0",
"CONDITIDX": 0,
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"CONDSUBTOT": "7",
"COND_FORM": 0,
"COND_FORM1": 0,
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 20,
"COND_ST_NO": 800,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 9,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 122.5,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 1102.5,
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 2,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "31",
"INDEXNO": "0",
"CONDITIDX": 0,
"PRINT_ID": "X",
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"CONDSUBTOT": "2",
"COND_FORM": 0,
"COND_FORM1": 0,
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 20,
"COND_ST_NO": 900,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 9,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 122.5,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 1102.5,
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 2,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "44",
"INDEXNO": "0",
"CONDITIDX": 0,
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"CONDSUBTOT": "3",
"COND_FORM": 0,
"COND_FORM1": 0,
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 20,
"COND_ST_NO": 908,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 9,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 122.5,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 1102.5,
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 0,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "45",
"INDEXNO": "0",
"CONDITIDX": 0,
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"COND_FORM": 0,
"COND_FORM1": 0,
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 20,
"COND_ST_NO": 911,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"SD000COND_TYPE": "AZWR",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "B",
"CONBASEVAL": 110250,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 0,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 0,
"NUMCONVERT": 0,
"DENOMINATO": 0,
"CONDTYPE": "e",
"CONDORIGIN": "A",
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ACCOUNTKEY": "ERL",
"ROUNDOFFDI": 0,
"CONDVALUE": 0,
"CONDCNTRL": "A",
"CONDCLASS": "A",
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 48,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "48",
"INDEXNO": "0",
"CONDITIDX": 0,
"PRINT_ID": "S",
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"COND_FORM": 0,
"COND_FORM1": 0,
"RATEOFCHA2": "X",
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 20,
"COND_ST_NO": 915,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"SD000COND_TYPE": "UTXJ",
"CONPRICDAT": "2014-10-27",
"CALCTYPCON": "A",
"CONBASEVAL": 1102.5,
"SD000COND_VALUE": 0,
"CONEXCHRAT": 0,
"COND_P_UNT": 0,
"NUMCONVERT": 0,
"DENOMINATO": 0,
"CONDTYPE": "1",
"STAT_CON": "X",
"CONDORIGIN": "A",
"ACCESS_SEQ": 10,
"COND_NO": "0000007291",
"CONDCOUNT": 1,
"ACCOUNTKEY": "MWS",
"TAX_CODE": "O1",
"ROUNDOFFDI": 0,
"CONDVALUE": 0,
"CONDCNTRL": "A",
"CONDCLASS": "D",
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 0,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "50",
"INDEXNO": "0",
"CONDITIDX": 1,
"FROREFSTEP": 900,
"FROMREFSTE": 0,
"COND_FORM": 0,
"COND_FORM1": 0,
"MAKMANENTR": "D",
"CONDISMAND": "X",
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 20,
"COND_ST_NO": 916,
"SD000COND_COUNT": 1,
"APPLICATIO": "TX",
"SD000COND_TYPE": "JR1",
"CONPRICDAT": "2014-10-27",
"CALCTYPCON": "A",
"CONBASEVAL": 1102.5,
"SD000COND_VALUE": 6,
"CONEXCHRAT": 0,
"COND_P_UNT": 0,
"NUMCONVERT": 0,
"DENOMINATO": 0,
"CONDTYPE": "1",
"CONDORIGIN": "A",
"ACCESS_SEQ": 10,
"COND_NO": "0000007613",
"CONDCOUNT": 1,
"ACCOUNTKEY": "MW1",
"TAX_CODE": "O1",
"ROUNDOFFDI": 0,
"CONDVALUE": 66.15,
"CONDCNTRL": "A",
"CONDCLASS": "D",
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 0,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "51",
"INDEXNO": "0",
"CONDITIDX": 0,
"PRINT_ID": "S",
"FROREFSTEP": 900,
"FROMREFSTE": 0,
"COND_FORM": 0,
"COND_FORM1": 0,
"MAKMANENTR": "C",
"RATEOFCHA1": "X",
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 20,
"COND_ST_NO": 920,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 9,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 129.85,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 1168.65,
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 4,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "56",
"INDEXNO": "0",
"CONDITIDX": 0,
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"CONDSUBTOT": "A",
"COND_FORM": 0,
"COND_FORM1": 0,
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 20,
"COND_ST_NO": 930,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"SD000COND_TYPE": "SKTO",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "A",
"CONBASEVAL": 1168.65,
"SD000COND_VALUE": 0,
"CONEXCHRAT": 0,
"COND_P_UNT": 0,
"NUMCONVERT": 0,
"DENOMINATO": 0,
"CONDTYPE": "E",
"STAT_CON": "X",
"CONDORIGIN": "A",
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 0,
"CONDCNTRL": "A",
"CONDCLASS": "A",
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 0,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "57",
"INDEXNO": "0",
"CONDITIDX": 0,
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"COND_FORM": 11,
"COND_FORM1": 0,
"MAKMANENTR": "D",
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 20,
"COND_ST_NO": 940,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"SD000COND_TYPE": "VPRS",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 9,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 79.74,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"CONDTYPE": "G",
"STAT_CON": "X",
"CONDORIGIN": "A",
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 717.66,
"CONDCNTRL": "A",
"CONDCLASS": "B",
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 0,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "59",
"INDEXNO": "0",
"CONDITIDX": 0,
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"CONDSUBTOT": "B",
"COND_FORM": 0,
"COND_FORM1": 0,
"MAKMANENTR": "D",
"SCALBASVAL": 0,
"CONDCURREN": "USD",
"CORR_ISO": "USD",
"CONBASVAL": 0,
"CONDIVALUE": 717.66,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"QTYCONVERS": "X",
"CONEXCHRAT_V": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"CONDIT_NO": "0000003583",
"ITM_NUMBER": 20,
"COND_ST_NO": 950,
"SD000COND_COUNT": 1,
"APPLICATIO": "V",
"CONPRICDAT": "2014-07-25",
"CALCTYPCON": "C",
"CONBASEVAL": 9,
"SDCURRENCY": "USD",
"CURREN_ISO": "USD",
"SD000COND_VALUE": 42.76,
"CURRENCY": "USD",
"CURRENCISO": "USD",
"CONEXCHRAT": 1,
"COND_P_UNT": 1,
"COND_D_UNT": "EA",
"SD000T_UNIT_ISO": "EA",
"NUMCONVERT": 1,
"DENOMINATO": 1,
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 384.84,
"CONDCOINHD": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"CONDFORMUL": 11,
"INCREMSCAL": 0,
"INCREASCAL": 0,
"SD000INDEX_NO": "62",
"INDEXNO": "0",
"CONDITIDX": 0,
"FROREFSTEP": 0,
"FROMREFSTE": 0,
"COND_FORM": 0,
"COND_FORM1": 0,
"SCALBASVAL": 0,
"CONBASVAL": 0,
"CONDIVALUE": 0,
"LEVEL_BOM": 0,
"PATH_BOM": 0,
"CONEXCHRAT_V": 0
}
],
"ORDER_COND_HEAD": [
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"ITM_NUMBER": 10,
"COND_NO": "0000007291",
"CREATED_BY": "BPADMIN",
"CREAT_DATE": "2014-06-06",
"COND_USAGE": "A",
"TABLE_NO": "040",
"APPLICATIO": "V",
"COND_TYPE": "UTXJ",
"VARKEY": "US CA 11",
"VALID_FROM": "2014-02-06",
"VALID_TO": "9999-12-31"
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"ITM_NUMBER": 10,
"COND_NO": "0000007608",
"CREATED_BY": "BPINST",
"CREAT_DATE": "2014-10-13",
"COND_USAGE": "A",
"TABLE_NO": "304",
"APPLICATIO": "V",
"COND_TYPE": "PR00",
"VARKEY": "100010H16",
"VALID_FROM": "2014-02-13",
"VALID_TO": "9999-12-31"
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"ITM_NUMBER": 10,
"COND_NO": "0000007613",
"CREATED_BY": "BPINST",
"CREAT_DATE": "2014-10-14",
"COND_USAGE": "A",
"TABLE_NO": "053",
"APPLICATIO": "TX",
"COND_TYPE": "JR1",
"VARKEY": "US O1CA0000000",
"VALID_FROM": "2014-02-14",
"VALID_TO": "9999-12-31"
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"ITM_NUMBER": 10,
"COND_NO": "0000007626",
"CREATED_BY": "BPINST",
"CREAT_DATE": "2014-10-22",
"COND_USAGE": "A",
"TABLE_NO": "307",
"APPLICATIO": "V",
"COND_TYPE": "K007",
"VARKEY": "1000100000100018",
"VALID_FROM": "2014-03-01",
"VALID_TO": "9999-12-31"
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"ITM_NUMBER": 20,
"COND_NO": "0000007609",
"CREATED_BY": "BPINST",
"CREAT_DATE": "2014-10-13",
"COND_USAGE": "A",
"TABLE_NO": "304",
"APPLICATIO": "V",
"COND_TYPE": "PR00",
"VARKEY": "100010H17",
"VALID_FROM": "2014-02-13",
"VALID_TO": "9999-12-31"
}
],
"ORDER_COND_ITEM": [
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"ITM_NUMBER": 10,
"COND_NO": "0000007291",
"COND_COUNT": 1,
"APPLICATIO": "V",
"COND_TYPE": "UTXJ",
"SCALETYPE": "A",
"SCALE_QTY": 0,
"SCALE_VAL": 0,
"CALCTYPCON": "A",
"COND_VALUE": 0,
"COND_P_UNT": 0,
"NUMCONVERT": 0,
"DENOMINATO": 0,
"LOWERLIMIT": 0,
"UPPERLIMIT": 0,
"PLCONDVAL": 0,
"CUM_VALUE": 0,
"CUMM_ACCR": 0,
"PLAN_BASIS": 0,
"TAX_CODE": "O1",
"CONDITIDX": 1,
"ACCRUALS": 0,
"ADD_VAL_DY": 0,
"NUMBORDERS": 0,
"MINCONBAVA": 0,
"MAXCONBAVA": 0,
"MAXCONVAL": 0,
"INCR_SCALE": 0,
"PRICSCALE": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"ITM_NUMBER": 10,
"COND_NO": "0000007608",
"COND_COUNT": 1,
"APPLICATIO": "V",
"COND_TYPE": "PR00",
"SCALETYPE": "A",
"SCALEBASIN": "C",
"SCALE_QTY": 0,
"UNITMEASUR": "EA",
"MEASUR_ISO": "EA",
"SCALE_VAL": 0,
"CALCTYPCON": "C",
"COND_VALUE": 450,
"CONDCURR": "USD",
"COND_ISO": "USD",
"COND_P_UNT": 1,
"COND_UNIT": "EA",
"CONUNITISO": "EA",
"NUMCONVERT": 0,
"DENOMINATO": 0,
"LOWERLIMIT": 0,
"UPPERLIMIT": 0,
"PLCONDVAL": 0,
"CUM_VALUE": 0,
"CUMM_ACCR": 0,
"CURRENCY": "USD",
"CURR_ISO": "USD",
"CONDCURREN": "USD",
"ISOCURRENC": "USD",
"PLAN_BASIS": 0,
"CONDITIDX": 1,
"ACCRUALS": 0,
"ADD_VAL_DY": 0,
"NUMBORDERS": 0,
"MINCONBAVA": 0,
"MAXCONBAVA": 0,
"MAXCONVAL": 0,
"INCR_SCALE": 0,
"PRICSCALE": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"ITM_NUMBER": 10,
"COND_NO": "0000007613",
"COND_COUNT": 1,
"APPLICATIO": "TX",
"COND_TYPE": "JR1",
"SCALETYPE": "A",
"SCALE_QTY": 0,
"SCALE_VAL": 0,
"CALCTYPCON": "A",
"COND_VALUE": 6,
"CONDCURR": "%",
"COND_P_UNT": 0,
"NUMCONVERT": 0,
"DENOMINATO": 0,
"LOWERLIMIT": 0,
"UPPERLIMIT": 0,
"PLCONDVAL": 0,
"CUM_VALUE": 0,
"CUMM_ACCR": 0,
"PLAN_BASIS": 0,
"TAX_CODE": "O1",
"CONDITIDX": 0,
"ACCRUALS": 0,
"ADD_VAL_DY": 0,
"NUMBORDERS": 0,
"MINCONBAVA": 0,
"MAXCONBAVA": 0,
"MAXCONVAL": 0,
"INCR_SCALE": 0,
"PRICSCALE": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"ITM_NUMBER": 10,
"COND_NO": "0000007626",
"COND_COUNT": 1,
"APPLICATIO": "V",
"COND_TYPE": "K007",
"SCALETYPE": "A",
"SCALE_QTY": 0,
"SCALE_VAL": 0,
"CALCTYPCON": "A",
"COND_VALUE": -2,
"CONDCURR": "%",
"COND_P_UNT": 0,
"NUMCONVERT": 0,
"DENOMINATO": 0,
"LOWERLIMIT": 0,
"UPPERLIMIT": 0,
"PLCONDVAL": 0,
"CUM_VALUE": 0,
"CUMM_ACCR": 0,
"CURRENCY": "USD",
"CURR_ISO": "USD",
"CONDCURREN": "USD",
"ISOCURRENC": "USD",
"PLAN_BASIS": 0,
"CONDITIDX": 1,
"ACCRUALS": 0,
"ADD_VAL_DY": 0,
"NUMBORDERS": 0,
"MINCONBAVA": 0,
"MAXCONBAVA": 0,
"MAXCONVAL": 0,
"INCR_SCALE": 0,
"PRICSCALE": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"ITM_NUMBER": 20,
"COND_NO": "0000007609",
"COND_COUNT": 1,
"APPLICATIO": "V",
"COND_TYPE": "PR00",
"SCALETYPE": "A",
"SCALEBASIN": "C",
"SCALE_QTY": 0,
"UNITMEASUR": "EA",
"MEASUR_ISO": "EA",
"SCALE_VAL": 0,
"CALCTYPCON": "C",
"COND_VALUE": 125,
"CONDCURR": "USD",
"COND_ISO": "USD",
"COND_P_UNT": 1,
"COND_UNIT": "EA",
"CONUNITISO": "EA",
"NUMCONVERT": 0,
"DENOMINATO": 0,
"LOWERLIMIT": 0,
"UPPERLIMIT": 0,
"PLCONDVAL": 0,
"CUM_VALUE": 0,
"CUMM_ACCR": 0,
"CURRENCY": "USD",
"CURR_ISO": "USD",
"CONDCURREN": "USD",
"ISOCURRENC": "USD",
"PLAN_BASIS": 0,
"CONDITIDX": 1,
"ACCRUALS": 0,
"ADD_VAL_DY": 0,
"NUMBORDERS": 0,
"MINCONBAVA": 0,
"MAXCONBAVA": 0,
"MAXCONVAL": 0,
"INCR_SCALE": 0,
"PRICSCALE": 0
}
],
"ORDER_COND_QTY_SCALE": [
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"ITM_NUMBER": 10,
"COND_NO": "0000007608",
"COND_COUNT": 1,
"LINE_NO": 1,
"SCALE_QTY": 1,
"COND_UNIT": "EA",
"T_UNIT_ISO": "EA",
"CURRENCY": 450,
"CONDCURR": "USD",
"CURREN_ISO": "USD"
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"ITM_NUMBER": 10,
"COND_NO": "0000007609",
"COND_COUNT": 1,
"LINE_NO": 1,
"SCALE_QTY": 1,
"COND_UNIT": "EA",
"T_UNIT_ISO": "EA",
"CURRENCY": 125,
"CONDCURR": "USD",
"CURREN_ISO": "USD"
}
],
"ORDER_COND_VAL_SCALE": [],
"ORDER_CONTRACTS_OUT": [],
"ORDER_CREDITCARDS_OUT": [],
"ORDER_FLOWS_OUT": [],
"ORDER_HEADERS_OUT": [
{
"OPERATION": "005",
"DOC_NUMBER": "0000000151",
"REC_DATE": "2014-10-27",
"REC_TIME": "13:15:46",
"CREATED_BY": "BPINST",
"DOC_DATE": "2014-10-27",
"SD_DOC_CAT": "C",
"TRAN_GROUP": "0",
"DOC_TYPE": "TA",
"NET_VAL_HD": 3307.5,
"CURRENCY": "USD",
"CURREN_ISO": "USD",
"SALES_ORG": "1000",
"DISTR_CHAN": "10",
"DIVISION": "10",
"CONDITIONS": "0000003583",
"REQ_DATE_H": "2014-07-25",
"DATE_TYPE": "1",
"SD_PRIC_PR": "YBAA01",
"SHIP_COND": "01",
"ORDBILLTYP": "F2",
"ORD_PROBAB": 100,
"PURCH_NO": "bundle102",
"DUN_COUNT": 0,
"SOLD_TO": "0000100018",
"UPDATE_GRP": "000001",
"STAT_CURR": "USD",
"ISOSTATCUR": "USD",
"CO_AREA": "1000",
"WBS_ELEM": 0,
"REL_CREDIT": 0,
"HI_TYPE_PR": "A",
"REF_DOC": "0000000143",
"COMP_CODE": "1000",
"DOC_CAT_SD": "C",
"KALSM_CH": "YB0001",
"ACC_PERIOD": 0,
"MS_DATE": "2014-10-27"
}
],
"ORDER_ITEMS_OUT": [
{
"DOC_NUMBER": "0000000151",
"ITM_NUMBER": 10,
"MATERIAL": "H16",
"MAT_ENTRD": "H16",
"MATL_GROUP": "YBT01",
"SHORT_TEXT": "Hard Drive ext.",
"ITEM_CATEG": "TAN",
"REL_FOR_BI": "A",
"HG_LV_ITEM": 0,
"ALTERN_ITM": 0,
"PROD_HIER": "00001B000100000003",
"OUT_AGR_TA": 0,
"TARGET_QTY": 0,
"TARGET_QU": "EA",
"T_UNIT_ISO": "EA",
"TARG_QTY_N": 1,
"TARG_QTY_D": 1,
"BASE_UOM": "EA",
"T_BAS_UNIT": "EA",
"SCALE_QUAN": 0,
"ROUND_DLV": 0,
"MAX_DEVIAT": 0,
"MAX_DEV_PE": 0,
"MAX_DEV_DA": 0,
"DLV_GROUP": 0,
"OVER_DLV_T": 0,
"UNDER_DLV": 0,
"DIVISION": "10",
"NET_VALUE": 2205,
"CURRENCY": "USD",
"CURREN_ISO": "USD",
"MAX_PL_DLV": 0,
"REQ_QTY": 5,
"CUM_REQ_DE": 5,
"CUM_CF_QTY": 5,
"CUM_CON_QU": 5,
"SALES_UNIT": "EA",
"ISOCODUNIT": "EA",
"SALES_QTY1": 1,
"SALES_QTY2": 1,
"GROSS_WEIG": 5,
"NET_WEIGHT": 4.5,
"UNIT_OF_WT": "OZ",
"UNIT_WTISO": "ONZ",
"VOLUME": 0,
"CAU_POSNR": 0,
"REF_DOC": "0000000143",
"POSNR_VOR": 30,
"DLV_PRIO": 2,
"PLANT": "1000",
"STGE_LOC": "1040",
"SHIP_POINT": "1000",
"STPOS_VBAP": 0,
"ORDER_PROB": 100,
"CREAT_DATE": "2014-10-27",
"CREATED_BY": "BPINST",
"REC_TIME": "13:15:46",
"TAX_CLASS1": "1",
"TAX_CLASS2": "1",
"FIX_SP_DAY": 0,
"VAR_SP_DAY": 0,
"PREC_DOC": "X",
"NET_PRICE": 441,
"COND_P_UNT": 1,
"COND_UNIT": "EA",
"CONISOUNIT": "EA",
"CASH_DISC": "X",
"AVAILCHECK": "Y2",
"SUM_REQUIR": "A",
"PRICE_OK": "X",
"MIN_DELY": 0,
"COST_DOC_C": 714.3,
"SUBTOT_PP1": 2250,
"SUBTOT_PP2": 2205,
"SUBTOT_PP3": 2205,
"SUBTOT_PP4": 0,
"SUBTOT_PP5": 0,
"SUBTOT_PP6": 0,
"EXCH_RATE": 1,
"COMPON_QTY": 0,
"PROFIT_SEG": 0,
"WBS_ELEM": 0,
"CONV_FACT": 0,
"REQMTSTYP": "011",
"CREDPRICIT": 467.46,
"ACTCREDID": "X",
"CR_EXCHRAT": 0,
"CONFIG": 0,
"CHCLASS_IN": 0,
"NO_OF_SERI": "0",
"DOC_CAT_SD": "C",
"COSTESTNR": 0,
"BUS_TRANST": "11",
"INTCLASSNR": 0,
"BATCH_EXIT": 0,
"BOM_IT_NR": 0,
"COUNTER": 0,
"CREDPRIC": 467.46,
"GURANTEED": 0,
"VALCONTRIT": 0,
"TAX_AMOUNT": 132.3,
"CR_EXCHRAT_V": 0,
"EXCHRATEST_V": 0,
"GROSS_VAL": 0,
"LOG_SYSTEM_OWN": "ERPCLNT167"
},
{
"DOC_NUMBER": "0000000151",
"ITM_NUMBER": 20,
"MATERIAL": "H17",
"MAT_ENTRD": "H17",
"MATL_GROUP": "YBT01",
"SHORT_TEXT": "Monitor 18,5 Zoll",
"ITEM_CATEG": "TAN",
"REL_FOR_BI": "A",
"HG_LV_ITEM": 0,
"ALTERN_ITM": 0,
"PROD_HIER": "00001B000100000003",
"OUT_AGR_TA": 0,
"TARGET_QTY": 0,
"TARGET_QU": "EA",
"T_UNIT_ISO": "EA",
"TARG_QTY_N": 1,
"TARG_QTY_D": 1,
"BASE_UOM": "EA",
"T_BAS_UNIT": "EA",
"SCALE_QUAN": 0,
"ROUND_DLV": 0,
"MAX_DEVIAT": 0,
"MAX_DEV_PE": 0,
"MAX_DEV_DA": 0,
"DLV_GROUP": 0,
"OVER_DLV_T": 0,
"UNDER_DLV": 0,
"DIVISION": "10",
"NET_VALUE": 1102.5,
"CURRENCY": "USD",
"CURREN_ISO": "USD",
"MAX_PL_DLV": 0,
"REQ_QTY": 9,
"CUM_REQ_DE": 9,
"CUM_CF_QTY": 9,
"CUM_CON_QU": 9,
"SALES_UNIT": "EA",
"ISOCODUNIT": "EA",
"SALES_QTY1": 1,
"SALES_QTY2": 1,
"GROSS_WEIG": 36,
"NET_WEIGHT": 34.2,
"UNIT_OF_WT": "KG",
"UNIT_WTISO": "KGM",
"VOLUME": 0,
"CAU_POSNR": 0,
"REF_DOC": "0000000143",
"POSNR_VOR": 40,
"DLV_PRIO": 2,
"PLANT": "1000",
"STGE_LOC": "1040",
"SHIP_POINT": "1000",
"STPOS_VBAP": 0,
"ORDER_PROB": 100,
"CREAT_DATE": "2014-10-27",
"CREATED_BY": "BPINST",
"REC_TIME": "13:15:46",
"TAX_CLASS1": "1",
"TAX_CLASS2": "1",
"FIX_SP_DAY": 0,
"VAR_SP_DAY": 0,
"PREC_DOC": "X",
"NET_PRICE": 122.5,
"COND_P_UNT": 1,
"COND_UNIT": "EA",
"CONISOUNIT": "EA",
"CASH_DISC": "X",
"AVAILCHECK": "Y2",
"SUM_REQUIR": "A",
"PRICE_OK": "X",
"MIN_DELY": 0,
"COST_DOC_C": 717.66,
"SUBTOT_PP1": 1125,
"SUBTOT_PP2": 1102.5,
"SUBTOT_PP3": 1102.5,
"SUBTOT_PP4": 0,
"SUBTOT_PP5": 0,
"SUBTOT_PP6": 0,
"EXCH_RATE": 1,
"COMPON_QTY": 0,
"PROFIT_SEG": 0,
"WBS_ELEM": 0,
"CONV_FACT": 0,
"REQMTSTYP": "011",
"CREDPRICIT": 129.85,
"ACTCREDID": "X",
"CR_EXCHRAT": 0,
"CONFIG": 0,
"CHCLASS_IN": 0,
"NO_OF_SERI": "0",
"DOC_CAT_SD": "C",
"COSTESTNR": 0,
"BUS_TRANST": "11",
"INTCLASSNR": 0,
"BATCH_EXIT": 0,
"BOM_IT_NR": 0,
"COUNTER": 0,
"CREDPRIC": 129.85,
"GURANTEED": 0,
"VALCONTRIT": 0,
"TAX_AMOUNT": 66.15,
"CR_EXCHRAT_V": 0,
"EXCHRATEST_V": 0,
"GROSS_VAL": 0,
"LOG_SYSTEM_OWN": "ERPCLNT167"
}
],
"ORDER_PARTNERS_OUT": [
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"ITM_NUMBER": 0,
"PARTN_ROLE": "AG",
"CUSTOMER": "0000100018",
"PERSON_NO": 0,
"CONTACT": 0,
"ADDRESS": "0000023206",
"COUNTRY": "US",
"COUNTRYISO": "US",
"ADDRE_INDI": "D",
"LEVEL_NR": 0,
"TRANSPZONE": "0000000001",
"ASSIGN_HI": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"ITM_NUMBER": 0,
"PARTN_ROLE": "RE",
"CUSTOMER": "0000100018",
"PERSON_NO": 0,
"CONTACT": 0,
"ADDRESS": "0000023206",
"COUNTRY": "US",
"COUNTRYISO": "US",
"ADDRE_INDI": "D",
"LEVEL_NR": 0,
"TRANSPZONE": "0000000001",
"ASSIGN_HI": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"ITM_NUMBER": 0,
"PARTN_ROLE": "RG",
"CUSTOMER": "0000100018",
"PERSON_NO": 0,
"CONTACT": 0,
"ADDRESS": "0000023206",
"COUNTRY": "US",
"COUNTRYISO": "US",
"ADDRE_INDI": "D",
"LEVEL_NR": 0,
"TRANSPZONE": "0000000001",
"ASSIGN_HI": 0
},
{
"OPERATION": "005",
"SD_DOC": "0000000151",
"ITM_NUMBER": 0,
"PARTN_ROLE": "WE",
"CUSTOMER": "0000100018",
"PERSON_NO": 0,
"CONTACT": 0,
"ADDRESS": "0000023206",
"COUNTRY": "US",
"COUNTRYISO": "US",
"ADDRE_INDI": "D",
"LEVEL_NR": 0,
"TRANSPZONE": "0000000001",
"ASSIGN_HI": 0
}
],
"ORDER_SCHEDULES_OUT": [
{
"OPERATION": "005",
"DOC_NUMBER": "0000000151",
"ITM_NUMBER": 10,
"SCHED_LINE": 1,
"SCHED_TYPE": "CP",
"RELFORDEL": "X",
"REQ_DATE": "2014-07-25",
"REQ_QTY": 5,
"CONFIR_QTY": 0,
"SALES_UNIT": "EA",
"ISOCODUNIT": "EA",
"REQ_QTY1": 0,
"BASE_UOM": "EA",
"ISOBASUNIT": "EA",
"REQ_TYPE": "01",
"PLTYPE": "1",
"BUSIITNR": 0,
"SCHED_LIN1": 0,
"MAINT_REQ": 0,
"DATE_TYPE": "1",
"TP_DATE": "2014-10-27",
"MS_DATE": "2014-10-27",
"LOAD_DATE": "2014-10-27",
"GI_DATE": "2014-10-27",
"CORR_QTY": 5,
"GRP_DEFIN": 0,
"FORCAST_NR": 0,
"COMMIT_QTY": 0,
"SIZE2": 0,
"SIZE3": 0,
"SALESQTYNR": 1,
"SALESQTYDE": 1,
"AVAIL_CON": "X",
"MOVE_TYPE": "601",
"PREQ_ITEM": 0,
"GURANTEED": 0,
"MS_TIME": "06:00:00",
"TP_TIME": "06:00:00",
"LOAD_TIME": "06:00:00",
"GI_TIME": "06:00:00"
},
{
"OPERATION": "005",
"DOC_NUMBER": "0000000151",
"ITM_NUMBER": 10,
"SCHED_LINE": 2,
"SCHED_TYPE": "CP",
"RELFORDEL": "X",
"REQ_DATE": "2014-10-27",
"REQ_TIME": "06:00:00",
"REQ_QTY": 0,
"CONFIR_QTY": 5,
"SALES_UNIT": "EA",
"ISOCODUNIT": "EA",
"REQ_QTY1": 5,
"BASE_UOM": "EA",
"ISOBASUNIT": "EA",
"REQ_TYPE": "01",
"PLTYPE": "1",
"BUSIITNR": 0,
"SCHED_LIN1": 0,
"MAINT_REQ": 0,
"DATE_TYPE": "1",
"TP_DATE": "2014-10-27",
"MS_DATE": "2014-10-27",
"LOAD_DATE": "2014-10-27",
"GI_DATE": "2014-10-27",
"CORR_QTY": 0,
"GRP_DEFIN": 0,
"FORCAST_NR": 0,
"COMMIT_QTY": 0,
"SIZE2": 0,
"SIZE3": 0,
"SALESQTYNR": 1,
"SALESQTYDE": 1,
"AVAIL_CON": "X",
"MOVE_TYPE": "601",
"PREQ_ITEM": 0,
"GURANTEED": 0,
"MS_TIME": "06:00:00",
"TP_TIME": "06:00:00",
"LOAD_TIME": "06:00:00",
"GI_TIME": "06:00:00"
},
{
"OPERATION": "005",
"DOC_NUMBER": "0000000151",
"ITM_NUMBER": 20,
"SCHED_LINE": 1,
"SCHED_TYPE": "CP",
"RELFORDEL": "X",
"REQ_DATE": "2014-07-25",
"REQ_QTY": 9,
"CONFIR_QTY": 0,
"SALES_UNIT": "EA",
"ISOCODUNIT": "EA",
"REQ_QTY1": 0,
"BASE_UOM": "EA",
"ISOBASUNIT": "EA",
"REQ_TYPE": "01",
"PLTYPE": "1",
"BUSIITNR": 0,
"SCHED_LIN1": 0,
"MAINT_REQ": 0,
"DATE_TYPE": "1",
"TP_DATE": "2014-10-27",
"MS_DATE": "2014-10-27",
"LOAD_DATE": "2014-10-27",
"GI_DATE": "2014-10-27",
"CORR_QTY": 9,
"GRP_DEFIN": 0,
"FORCAST_NR": 0,
"COMMIT_QTY": 0,
"SIZE2": 0,
"SIZE3": 0,
"SALESQTYNR": 1,
"SALESQTYDE": 1,
"AVAIL_CON": "X",
"MOVE_TYPE": "601",
"PREQ_ITEM": 0,
"GURANTEED": 0,
"MS_TIME": "06:00:00",
"TP_TIME": "06:00:00",
"LOAD_TIME": "06:00:00",
"GI_TIME": "06:00:00"
},
{
"OPERATION": "005",
"DOC_NUMBER": "0000000151",
"ITM_NUMBER": 20,
"SCHED_LINE": 2,
"SCHED_TYPE": "CP",
"RELFORDEL": "X",
"REQ_DATE": "2014-10-27",
"REQ_TIME": "06:00:00",
"REQ_QTY": 0,
"CONFIR_QTY": 9,
"SALES_UNIT": "EA",
"ISOCODUNIT": "EA",
"REQ_QTY1": 9,
"BASE_UOM": "EA",
"ISOBASUNIT": "EA",
"REQ_TYPE": "01",
"PLTYPE": "1",
"BUSIITNR": 0,
"SCHED_LIN1": 0,
"MAINT_REQ": 0,
"DATE_TYPE": "1",
"TP_DATE": "2014-10-27",
"MS_DATE": "2014-10-27",
"LOAD_DATE": "2014-10-27",
"GI_DATE": "2014-10-27",
"CORR_QTY": 0,
"GRP_DEFIN": 0,
"FORCAST_NR": 0,
"COMMIT_QTY": 0,
"SIZE2": 0,
"SIZE3": 0,
"SALESQTYNR": 1,
"SALESQTYDE": 1,
"AVAIL_CON": "X",
"MOVE_TYPE": "601",
"PREQ_ITEM": 0,
"GURANTEED": 0,
"MS_TIME": "06:00:00",
"TP_TIME": "06:00:00",
"LOAD_TIME": "06:00:00",
"GI_TIME": "06:00:00"
}
],
"ORDER_STATUSHEADERS_OUT": [
{
"SD_DOC": "0000000151",
"DELIV_STAT": "C",
"DLV_STAT_H": "C",
"OVERALLREJ": "A",
"PRC_STAT_H": "C",
"TOTINCOMPL": "C",
"TOTINCOMIT": "C",
"TOTINCOMBI": "C",
"GENINCOMHD": "C",
"HDIMCOMDEL": "C",
"HDINCOMBIL": "C",
"DOCIMCOMPR": "C",
"SD_DOC_CAT": "C",
"SDDOCOBJ": "A",
"SAPRELEASE": "740"
}
],
"ORDER_STATUSITEMS_OUT": [
{
"SD_DOC": "0000000151",
"ITM_NUMBER": 10,
"DELIV_STAT": "C",
"DLV_STAT_I": "C",
"REJSTATIT": "A",
"OVRPROCSTA": "C",
"GENINCOMST": "C",
"INCOMSTDEL": "C",
"INCOMSTBIL": "C",
"INCOMSTPRI": "C"
},
{
"SD_DOC": "0000000151",
"ITM_NUMBER": 20,
"DELIV_STAT": "C",
"DLV_STAT_I": "C",
"REJSTATIT": "A",
"OVRPROCSTA": "C",
"GENINCOMST": "C",
"INCOMSTDEL": "C",
"INCOMSTBIL": "C",
"INCOMSTPRI": "C"
}
],
"ORDER_TEXTHEADERS_OUT": [],
"ORDER_TEXTLINES_OUT": [],
"SALES_DOCUMENTS": [
{
"VBELN": "0000000151"
}
]
}
HTTP status code 400
Request syntactically incorrect. Any details will be provided within the response payload.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 400,
"message": "There are validation problems, see details section for more information",
"moreInfo": "https://api.yaas.io/patterns/errortypes.html",
"type": "validation_violation",
"details": [
{
"field": "Accept-Language",
"message": "not a language",
"type": "invalid_header"
}
]
}
HTTP status code 401
Given request is unauthorized. Bad or expired token. Reauthenticate the user. Any details will be provided within the response payload.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 401,
"message": "Authorization: Unauthorized. Bearer TOKEN is invalid",
"type": "insufficient_credentials",
"moreInfo": "https://api.yaas.io/patterns/errortypes.html"
}
HTTP status code 403
Evaluated request scopes in access token are not sufficient and do not match required scopes.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 403,
"message": "Given request does not have required scopes in access token. It is not authorized to perform this operation.",
"type": "insufficient_permissions"
}
HTTP status code 408
Request timed out.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 408,
"type": "request_timeout",
"message": "The request timed out."
}
HTTP status code 500
An internal server error occurred.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 500,
"type": "internal_service_error",
"message": "An internal server error occurred."
}
put /{tenant}/erpsalesorder/{salesorderId}
Update a specific ERP SD sales order. Before using the operation, you need to implement the SAP note 2339873 to create a custom function module. For more information about this note, find [SAP Note 2339873] at http://service.sap.com/sap/support/notes/2339873.
When you change an ERP SD Sales Order, you can change the relevant information, for example:
- Insert ERP SD Sales Order items
- Delete ERP SD Sales Order items
- Change ERP SD Sales Order items materials and quantity and some other information
Required scope: hybris.sdorderproxy_manage
URI Parameters
- Tenant: required (string - minLength: 3 - maxLength: 16 - pattern: [a-z][a-z0-9]+)
Stands for the "project" that requests this resource. Must match the "project" that is associated with the access token in the Authorization header.
Example:
myexampleshop
- salesorderId: required (string)
Headers
- Accept-Language: (string - repeat: true)
The value of the locale identifier of the language in which the attribute should be returned. Provide several values separated by comma, in order to specify fallback languages.
Example:
pl
- hybris-languages: (string - repeat: true)
Comma separated list of language identifiers for which the localization for an attribute should be provided.
Example:
en,pl,it
- Authorization: required (string)
Used to send a valid OAuth2 access token.
Example:
Bearer access_token
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "InputOfBAPI_SALESORDER_CHANGE",
"type": "object",
"properties": {
"BEHAVE_WHEN_ERROR": {
"title": "BEHAVE_WHEN_ERROR",
"type": "string",
"description": "Error Handling",
"maxLength": 1,
"default": "SPACE"
},
"INT_NUMBER_ASSIGNMENT": {
"title": "INT_NUMBER_ASSIGNMENT",
"type": "string",
"description": "Internal Item Number Assignment",
"maxLength": 1,
"default": "SPACE"
},
"LOGIC_SWITCH": {
"title": "BAPISDLS",
"type": "object",
"description": "SD Checkbox for the Logic Switch",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"PRICING": {
"title": "PRICING",
"type": "string",
"description": "",
"maxLength": 1
},
"ATP_WRKMOD": {
"title": "ATP_WRKMOD",
"type": "string",
"description": "",
"maxLength": 1
},
"SCHEDULING": {
"title": "SCHEDULING",
"type": "string",
"description": "",
"maxLength": 1
},
"NOSTRUCTURE": {
"title": "NOSTRUCTURE",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_HANDL": {
"title": "COND_HANDL",
"type": "string",
"description": "",
"maxLength": 1
},
"ADDR_CHECK": {
"title": "ADDR_CHECK",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
},
"NO_STATUS_BUF_INIT": {
"title": "NO_STATUS_BUF_INIT",
"type": "string",
"description": "No Refresh of Status Buffer",
"maxLength": 1,
"default": "SPACE"
},
"ORDER_HEADER_IN": {
"title": "BAPISDH1",
"type": "object",
"description": "Order Header",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"COLLECT_NO": {
"title": "COLLECT_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"SALES_ORG": {
"title": "SALES_ORG",
"type": "string",
"description": "",
"maxLength": 4
},
"DISTR_CHAN": {
"title": "DISTR_CHAN",
"type": "string",
"description": "",
"maxLength": 2
},
"DIVISION": {
"title": "DIVISION",
"type": "string",
"description": "",
"maxLength": 2
},
"SALES_GRP": {
"title": "SALES_GRP",
"type": "string",
"description": "",
"maxLength": 3
},
"SALES_OFF": {
"title": "SALES_OFF",
"type": "string",
"description": "",
"maxLength": 4
},
"REQ_DATE_H": {
"title": "REQ_DATE_H",
"type": "string",
"description": "",
"maxLength": 10,
"pattern": "\\d{4}-\\d{2}-\\d{2}|\\s*"
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 35
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 4
},
"PO_SUPPLEM": {
"title": "PO_SUPPLEM",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 12
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 35
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"PRICE_GRP": {
"title": "PRICE_GRP",
"type": "string",
"description": "",
"maxLength": 2
},
"CUST_GROUP": {
"title": "CUST_GROUP",
"type": "string",
"description": "",
"maxLength": 2
},
"SALES_DIST": {
"title": "SALES_DIST",
"type": "string",
"description": "",
"maxLength": 6
},
"PRICE_LIST": {
"title": "PRICE_LIST",
"type": "string",
"description": "",
"maxLength": 2
},
"INCOTERMS1": {
"title": "INCOTERMS1",
"type": "string",
"description": "",
"maxLength": 3
},
"INCOTERMS2": {
"title": "INCOTERMS2",
"type": "string",
"description": "",
"maxLength": 28
},
"PMNTTRMS": {
"title": "PMNTTRMS",
"type": "string",
"description": "",
"maxLength": 4
},
"DLV_BLOCK": {
"title": "DLV_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"ORD_REASON": {
"title": "ORD_REASON",
"type": "string",
"description": "",
"maxLength": 3
},
"COMPL_DLV": {
"title": "COMPL_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICE_DATE": {
"title": "PRICE_DATE",
"type": "string",
"description": "",
"maxLength": 10,
"pattern": "\\d{4}-\\d{2}-\\d{2}|\\s*"
},
"QT_VALID_F": {
"title": "QT_VALID_F",
"type": "string",
"description": "",
"maxLength": 8
},
"QT_VALID_T": {
"title": "QT_VALID_T",
"type": "string",
"description": "",
"maxLength": 8
},
"CT_VALID_F": {
"title": "CT_VALID_F",
"type": "string",
"description": "",
"maxLength": 8
},
"CT_VALID_T": {
"title": "CT_VALID_T",
"type": "string",
"description": "",
"maxLength": 8
},
"CUST_GRP1": {
"title": "CUST_GRP1",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP2": {
"title": "CUST_GRP2",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP3": {
"title": "CUST_GRP3",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP4": {
"title": "CUST_GRP4",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP5": {
"title": "CUST_GRP5",
"type": "string",
"description": "",
"maxLength": 3
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 35
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 12
},
"SD_DOC_CAT": {
"title": "SD_DOC_CAT",
"type": "string",
"description": "",
"maxLength": 1
},
"DOC_DATE": {
"title": "DOC_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"WAR_DATE": {
"title": "WAR_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"SHIP_COND": {
"title": "SHIP_COND",
"type": "string",
"description": "",
"maxLength": 2
},
"PP_SEARCH": {
"title": "PP_SEARCH",
"type": "string",
"description": "",
"maxLength": 40
},
"DUN_COUNT": {
"title": "DUN_COUNT",
"type": "number",
"description": ""
},
"DUN_DATE": {
"title": "DUN_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"COSTCENTER": {
"title": "COSTCENTER",
"type": "string",
"description": "",
"maxLength": 10
},
"WBS_ELEM": {
"title": "WBS_ELEM",
"type": "string",
"description": "",
"maxLength": 24
},
"DLVSCHDUSE": {
"title": "DLVSCHDUSE",
"type": "string",
"description": "",
"maxLength": 3
},
"PLDLVSTYP": {
"title": "PLDLVSTYP",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC": {
"title": "REF_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"COMP_CDE_B": {
"title": "COMP_CDE_B",
"type": "string",
"description": "",
"maxLength": 4
},
"ALTTAX_CLS": {
"title": "ALTTAX_CLS",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC_L": {
"title": "REF_DOC_L",
"type": "string",
"description": "",
"maxLength": 16
},
"ASS_NUMBER": {
"title": "ASS_NUMBER",
"type": "string",
"description": "",
"maxLength": 18
},
"REFDOC_CAT": {
"title": "REFDOC_CAT",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDCOMB_IN": {
"title": "ORDCOMB_IN",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_SCHED": {
"title": "BILL_SCHED",
"type": "string",
"description": "",
"maxLength": 2
},
"INVO_SCHED": {
"title": "INVO_SCHED",
"type": "string",
"description": "",
"maxLength": 2
},
"MN_INVOICE": {
"title": "MN_INVOICE",
"type": "string",
"description": "",
"maxLength": 1
},
"EXRATE_FI": {
"title": "EXRATE_FI",
"type": "number",
"description": ""
},
"ADD_VAL_DY": {
"title": "ADD_VAL_DY",
"type": "integer",
"description": ""
},
"FIX_VAL_DY": {
"title": "FIX_VAL_DY",
"type": "string",
"description": "",
"maxLength": 8
},
"PYMT_METH": {
"title": "PYMT_METH",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCNT_ASGN": {
"title": "ACCNT_ASGN",
"type": "string",
"description": "",
"maxLength": 2
},
"EXCHG_RATE": {
"title": "EXCHG_RATE",
"type": "number",
"description": ""
},
"BILL_DATE": {
"title": "BILL_DATE",
"type": "string",
"description": "",
"maxLength": 10
},
"SERV_DATE": {
"title": "SERV_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DUNN_KEY": {
"title": "DUNN_KEY",
"type": "string",
"description": "",
"maxLength": 1
},
"DUNN_BLOCK": {
"title": "DUNN_BLOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"PROMOTION": {
"title": "PROMOTION",
"type": "string",
"description": "",
"maxLength": 10
},
"PMTGAR_PRO": {
"title": "PMTGAR_PRO",
"type": "string",
"description": "",
"maxLength": 6
},
"DEPARTM_NO": {
"title": "DEPARTM_NO",
"type": "string",
"description": "",
"maxLength": 4
},
"REC_POINT": {
"title": "REC_POINT",
"type": "string",
"description": "",
"maxLength": 25
},
"POITM_NO_S": {
"title": "POITM_NO_S",
"type": "string",
"description": "",
"maxLength": 6
},
"DOC_NUM_FI": {
"title": "DOC_NUM_FI",
"type": "string",
"description": "",
"maxLength": 10
},
"CSTCNDGRP1": {
"title": "CSTCNDGRP1",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP2": {
"title": "CSTCNDGRP2",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP3": {
"title": "CSTCNDGRP3",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP4": {
"title": "CSTCNDGRP4",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP5": {
"title": "CSTCNDGRP5",
"type": "string",
"description": "",
"maxLength": 2
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 3
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"FKK_CONACCT": {
"title": "FKK_CONACCT",
"type": "string",
"description": "",
"maxLength": 12
},
"CAMPAIGN": {
"title": "CAMPAIGN",
"type": "string",
"description": "",
"maxLength": 16
},
"DOC_CLASS": {
"title": "DOC_CLASS",
"type": "string",
"description": "",
"maxLength": 9
},
"H_CURR": {
"title": "H_CURR",
"type": "string",
"description": "",
"maxLength": 5
},
"H_CURR_ISO": {
"title": "H_CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"SHIP_TYPE": {
"title": "SHIP_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"S_PROC_IND": {
"title": "S_PROC_IND",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_DOC_L_LONG": {
"title": "REF_DOC_L_LONG",
"type": "string",
"description": "",
"maxLength": 35
},
"VERSION": {
"title": "VERSION",
"type": "string",
"description": "",
"maxLength": 12
},
"PSM_PSTNG_DATE": {
"title": "PSM_PSTNG_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"TREASURY_ACC_SYMBOL": {
"title": "TREASURY_ACC_SYMBOL",
"type": "string",
"description": "",
"maxLength": 30
},
"BUSINESS_EVENT_TCODE": {
"title": "BUSINESS_EVENT_TCODE",
"type": "string",
"description": "",
"maxLength": 10
},
"MODIFICATION_ALLOWED": {
"title": "MODIFICATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"CANCELLATION_ALLOWED": {
"title": "CANCELLATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"PAYMENT_METHODS": {
"title": "PAYMENT_METHODS",
"type": "string",
"description": "",
"maxLength": 10
},
"BUSINESS_PARTNER_NO": {
"title": "BUSINESS_PARTNER_NO",
"type": "string",
"description": "",
"maxLength": 6
},
"REPORTING_FREQ": {
"title": "REPORTING_FREQ",
"type": "string",
"description": "",
"maxLength": 3
},
"SEPA_MANDATE_ID": {
"title": "SEPA_MANDATE_ID",
"type": "string",
"description": "",
"maxLength": 35
}
},
"required": []
},
"ORDER_HEADER_INX": {
"title": "BAPISDH1X",
"type": "object",
"description": "Sales Order Check List",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"UPDATEFLAG": {
"title": "UPDATEFLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"COLLECT_NO": {
"title": "COLLECT_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_ORG": {
"title": "SALES_ORG",
"type": "string",
"description": "",
"maxLength": 1
},
"DISTR_CHAN": {
"title": "DISTR_CHAN",
"type": "string",
"description": "",
"maxLength": 1
},
"DIVISION": {
"title": "DIVISION",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_GRP": {
"title": "SALES_GRP",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_OFF": {
"title": "SALES_OFF",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_DATE_H": {
"title": "REQ_DATE_H",
"type": "string",
"description": "",
"maxLength": 1
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_SUPPLEM": {
"title": "PO_SUPPLEM",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 1
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 1
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICE_GRP": {
"title": "PRICE_GRP",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_GROUP": {
"title": "CUST_GROUP",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_DIST": {
"title": "SALES_DIST",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICE_LIST": {
"title": "PRICE_LIST",
"type": "string",
"description": "",
"maxLength": 1
},
"INCOTERMS1": {
"title": "INCOTERMS1",
"type": "string",
"description": "",
"maxLength": 1
},
"INCOTERMS2": {
"title": "INCOTERMS2",
"type": "string",
"description": "",
"maxLength": 1
},
"PMNTTRMS": {
"title": "PMNTTRMS",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_BLOCK": {
"title": "DLV_BLOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"ORD_REASON": {
"title": "ORD_REASON",
"type": "string",
"description": "",
"maxLength": 1
},
"COMPL_DLV": {
"title": "COMPL_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICE_DATE": {
"title": "PRICE_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"QT_VALID_F": {
"title": "QT_VALID_F",
"type": "string",
"description": "",
"maxLength": 1
},
"QT_VALID_T": {
"title": "QT_VALID_T",
"type": "string",
"description": "",
"maxLength": 1
},
"CT_VALID_F": {
"title": "CT_VALID_F",
"type": "string",
"description": "",
"maxLength": 1
},
"CT_VALID_T": {
"title": "CT_VALID_T",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_GRP1": {
"title": "CUST_GRP1",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_GRP2": {
"title": "CUST_GRP2",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_GRP3": {
"title": "CUST_GRP3",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_GRP4": {
"title": "CUST_GRP4",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_GRP5": {
"title": "CUST_GRP5",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 1
},
"SD_DOC_CAT": {
"title": "SD_DOC_CAT",
"type": "string",
"description": "",
"maxLength": 1
},
"DOC_DATE": {
"title": "DOC_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"WAR_DATE": {
"title": "WAR_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"SHIP_COND": {
"title": "SHIP_COND",
"type": "string",
"description": "",
"maxLength": 1
},
"PP_SEARCH": {
"title": "PP_SEARCH",
"type": "string",
"description": "",
"maxLength": 1
},
"DUN_COUNT": {
"title": "DUN_COUNT",
"type": "string",
"description": "",
"maxLength": 1
},
"DUN_DATE": {
"title": "DUN_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"COSTCENTER": {
"title": "COSTCENTER",
"type": "string",
"description": "",
"maxLength": 1
},
"WBS_ELEM": {
"title": "WBS_ELEM",
"type": "string",
"description": "",
"maxLength": 1
},
"DLVSCHDUSE": {
"title": "DLVSCHDUSE",
"type": "string",
"description": "",
"maxLength": 1
},
"PLDLVSTYP": {
"title": "PLDLVSTYP",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC": {
"title": "REF_DOC",
"type": "string",
"description": "",
"maxLength": 1
},
"COMP_CDE_B": {
"title": "COMP_CDE_B",
"type": "string",
"description": "",
"maxLength": 1
},
"ALTTAX_CLS": {
"title": "ALTTAX_CLS",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC_L": {
"title": "REF_DOC_L",
"type": "string",
"description": "",
"maxLength": 1
},
"ASS_NUMBER": {
"title": "ASS_NUMBER",
"type": "string",
"description": "",
"maxLength": 1
},
"REFDOC_CAT": {
"title": "REFDOC_CAT",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDCOMB_IN": {
"title": "ORDCOMB_IN",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_SCHED": {
"title": "BILL_SCHED",
"type": "string",
"description": "",
"maxLength": 1
},
"INVO_SCHED": {
"title": "INVO_SCHED",
"type": "string",
"description": "",
"maxLength": 1
},
"MN_INVOICE": {
"title": "MN_INVOICE",
"type": "string",
"description": "",
"maxLength": 1
},
"EXRATE_FI": {
"title": "EXRATE_FI",
"type": "string",
"description": "",
"maxLength": 1
},
"ADD_VAL_DY": {
"title": "ADD_VAL_DY",
"type": "string",
"description": "",
"maxLength": 1
},
"FIX_VAL_DY": {
"title": "FIX_VAL_DY",
"type": "string",
"description": "",
"maxLength": 1
},
"PYMT_METH": {
"title": "PYMT_METH",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCNT_ASGN": {
"title": "ACCNT_ASGN",
"type": "string",
"description": "",
"maxLength": 1
},
"EXCHG_RATE": {
"title": "EXCHG_RATE",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_DATE": {
"title": "BILL_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"SERV_DATE": {
"title": "SERV_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"DUNN_KEY": {
"title": "DUNN_KEY",
"type": "string",
"description": "",
"maxLength": 1
},
"DUNN_BLOCK": {
"title": "DUNN_BLOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"PROMOTION": {
"title": "PROMOTION",
"type": "string",
"description": "",
"maxLength": 1
},
"PMTGAR_PRO": {
"title": "PMTGAR_PRO",
"type": "string",
"description": "",
"maxLength": 1
},
"DEPARTM_NO": {
"title": "DEPARTM_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"REC_POINT": {
"title": "REC_POINT",
"type": "string",
"description": "",
"maxLength": 1
},
"POITM_NO_S": {
"title": "POITM_NO_S",
"type": "string",
"description": "",
"maxLength": 1
},
"DOC_NUM_FI": {
"title": "DOC_NUM_FI",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP1": {
"title": "CSTCNDGRP1",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP2": {
"title": "CSTCNDGRP2",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP3": {
"title": "CSTCNDGRP3",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP4": {
"title": "CSTCNDGRP4",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP5": {
"title": "CSTCNDGRP5",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 1
},
"FKK_CONACCT": {
"title": "FKK_CONACCT",
"type": "string",
"description": "",
"maxLength": 1
},
"CAMPAIGN": {
"title": "CAMPAIGN",
"type": "string",
"description": "",
"maxLength": 1
},
"DOC_CLASS": {
"title": "DOC_CLASS",
"type": "string",
"description": "",
"maxLength": 1
},
"H_CURR": {
"title": "H_CURR",
"type": "string",
"description": "",
"maxLength": 1
},
"SHIP_TYPE": {
"title": "SHIP_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"S_PROC_IND": {
"title": "S_PROC_IND",
"type": "string",
"description": "",
"maxLength": 1
},
"VERSION": {
"title": "VERSION",
"type": "string",
"description": "",
"maxLength": 1
},
"PSM_PSTNG_DATE": {
"title": "PSM_PSTNG_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"TREASURY_ACC_SYMBOL": {
"title": "TREASURY_ACC_SYMBOL",
"type": "string",
"description": "",
"maxLength": 1
},
"BUSINESS_EVENT_TCODE": {
"title": "BUSINESS_EVENT_TCODE",
"type": "string",
"description": "",
"maxLength": 1
},
"MODIFICATION_ALLOWED": {
"title": "MODIFICATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"CANCELLATION_ALLOWED": {
"title": "CANCELLATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"PAYMENT_METHODS": {
"title": "PAYMENT_METHODS",
"type": "string",
"description": "",
"maxLength": 1
},
"BUSINESS_PARTNER_NO": {
"title": "BUSINESS_PARTNER_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"REPORTING_FREQ": {
"title": "REPORTING_FREQ",
"type": "string",
"description": "",
"maxLength": 1
},
"SEPA_MANDATE_ID": {
"title": "SEPA_MANDATE_ID",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
},
"SALESDOCUMENT": {
"title": "SALESDOCUMENT",
"type": "string",
"description": "Order Number",
"maxLength": 10,
"default": ""
},
"SIMULATION": {
"title": "SIMULATION",
"type": "string",
"description": "Simulation Mode",
"maxLength": 1,
"default": ""
},
"CONDITIONS_IN": {
"title": "CONDITIONS_IN",
"type": "array",
"description": "Conditions",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICOND",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"COND_ST_NO": {
"title": "COND_ST_NO",
"type": "integer",
"description": ""
},
"SD000COND_COUNT": {
"title": "COND_COUNT",
"type": "integer",
"description": ""
},
"SD000COND_TYPE": {
"title": "COND_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"SD000COND_VALUE": {
"title": "COND_VALUE",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"COND_UNIT": {
"title": "COND_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"COND_P_UNT": {
"title": "COND_P_UNT",
"type": "number",
"description": ""
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_UNT_ISO": {
"title": "CD_UNT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
},
"APPLICATIO": {
"title": "APPLICATIO",
"type": "string",
"description": "",
"maxLength": 2
},
"CONPRICDAT": {
"title": "CONPRICDAT",
"type": "string",
"description": "",
"maxLength": 8
},
"CALCTYPCON": {
"title": "CALCTYPCON",
"type": "string",
"description": "",
"maxLength": 1
},
"CONBASEVAL": {
"title": "CONBASEVAL",
"type": "number",
"description": ""
},
"CONEXCHRAT": {
"title": "CONEXCHRAT",
"type": "number",
"description": ""
},
"NUMCONVERT": {
"title": "NUMCONVERT",
"type": "number",
"description": ""
},
"DENOMINATO": {
"title": "DENOMINATO",
"type": "number",
"description": ""
},
"CONDTYPE": {
"title": "CONDTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"STAT_CON": {
"title": "STAT_CON",
"type": "string",
"description": "",
"maxLength": 1
},
"SCALETYPE": {
"title": "SCALETYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCRUALS": {
"title": "ACCRUALS",
"type": "string",
"description": "",
"maxLength": 1
},
"CONINVOLST": {
"title": "CONINVOLST",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDORIGIN": {
"title": "CONDORIGIN",
"type": "string",
"description": "",
"maxLength": 1
},
"GROUPCOND": {
"title": "GROUPCOND",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_UPDAT": {
"title": "COND_UPDAT",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCESS_SEQ": {
"title": "ACCESS_SEQ",
"type": "integer",
"description": ""
},
"CONDCOUNT": {
"title": "CONDCOUNT",
"type": "integer",
"description": ""
},
"ROUNDOFFDI": {
"title": "ROUNDOFFDI",
"type": "number",
"description": ""
},
"CONDVALUE": {
"title": "CONDVALUE",
"type": "number",
"description": ""
},
"CURRENCY_2": {
"title": "CURRENCY_2",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO_2": {
"title": "CURR_ISO_2",
"type": "string",
"description": "",
"maxLength": 3
},
"CONDCNTRL": {
"title": "CONDCNTRL",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDISACTI": {
"title": "CONDISACTI",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDCLASS": {
"title": "CONDCLASS",
"type": "string",
"description": "",
"maxLength": 1
},
"FACTBASVAL": {
"title": "FACTBASVAL",
"type": "number",
"description": ""
},
"SCALEBASIN": {
"title": "SCALEBASIN",
"type": "string",
"description": "",
"maxLength": 1
},
"SCALBASVAL": {
"title": "SCALBASVAL",
"type": "number",
"description": ""
},
"UNITMEASUR": {
"title": "UNITMEASUR",
"type": "string",
"description": "",
"maxLength": 3
},
"ISO_UNIT": {
"title": "ISO_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"CURRENCKEY": {
"title": "CURRENCKEY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURRENISO": {
"title": "CURRENISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CONDINCOMP": {
"title": "CONDINCOMP",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDCONFIG": {
"title": "CONDCONFIG",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDCHAMAN": {
"title": "CONDCHAMAN",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_NO": {
"title": "COND_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"TAX_CODE": {
"title": "TAX_CODE",
"type": "string",
"description": "",
"maxLength": 2
},
"VARCOND": {
"title": "VARCOND",
"type": "string",
"description": "",
"maxLength": 26
},
"ACCOUNTKEY": {
"title": "ACCOUNTKEY",
"type": "string",
"description": "",
"maxLength": 3
},
"ACCOUNT_KE": {
"title": "ACCOUNT_KE",
"type": "string",
"description": "",
"maxLength": 3
},
"WT_WITHCD": {
"title": "WT_WITHCD",
"type": "string",
"description": "",
"maxLength": 2
},
"STRUCTCOND": {
"title": "STRUCTCOND",
"type": "string",
"description": "",
"maxLength": 1
},
"FACTCONBAS": {
"title": "FACTCONBAS",
"type": "number",
"description": ""
},
"CONDCOINHD": {
"title": "CONDCOINHD",
"type": "integer",
"description": ""
}
},
"required": []
}
},
"CONDITIONS_INX": {
"title": "CONDITIONS_INX",
"type": "array",
"description": "Conditions Checkbox",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICONDX",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"COND_ST_NO": {
"title": "COND_ST_NO",
"type": "integer",
"description": ""
},
"COND_COUNT": {
"title": "COND_COUNT",
"type": "integer",
"description": ""
},
"COND_TYPE": {
"title": "COND_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"UPDATEFLAG": {
"title": "UPDATEFLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_VALUE": {
"title": "COND_VALUE",
"type": "string",
"description": "",
"maxLength": 1
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_UNIT": {
"title": "COND_UNIT",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_P_UNT": {
"title": "COND_P_UNT",
"type": "string",
"description": "",
"maxLength": 1
},
"VARCOND": {
"title": "VARCOND",
"type": "string",
"description": "",
"maxLength": 26
}
},
"required": []
}
},
"EXTENSIONEX": {
"title": "EXTENSIONEX",
"type": "array",
"description": "Reference Structure for BAPI Parameters ExtensionIn/ExtensionOut",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIPAREX",
"type": "object",
"properties": {
"STRUCTURE": {
"title": "STRUCTURE",
"type": "string",
"description": "",
"maxLength": 30
},
"VALUEPART1": {
"title": "VALUEPART1",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART2": {
"title": "VALUEPART2",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART3": {
"title": "VALUEPART3",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART4": {
"title": "VALUEPART4",
"type": "string",
"description": "",
"maxLength": 240
}
},
"required": []
}
},
"EXTENSIONIN": {
"title": "EXTENSIONIN",
"type": "array",
"description": "Customer Enhancement for VBAK, VBAP, VBEP",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIPAREX",
"type": "object",
"properties": {
"STRUCTURE": {
"title": "STRUCTURE",
"type": "string",
"description": "",
"maxLength": 30
},
"VALUEPART1": {
"title": "VALUEPART1",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART2": {
"title": "VALUEPART2",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART3": {
"title": "VALUEPART3",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART4": {
"title": "VALUEPART4",
"type": "string",
"description": "",
"maxLength": 240
}
},
"required": []
}
},
"ORDER_CFGS_BLOB": {
"title": "ORDER_CFGS_BLOB",
"type": "array",
"description": "Internal Configuration Data (SCE)",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUBLB",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"CONTEXT": {
"title": "CONTEXT",
"type": "string",
"description": "",
"maxLength": 250
}
},
"required": []
}
},
"ORDER_CFGS_INST": {
"title": "ORDER_CFGS_INST",
"type": "array",
"description": "Configuration: Instances",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUINS",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"OBJ_TYPE": {
"title": "OBJ_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"CLASS_TYPE": {
"title": "CLASS_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"OBJ_KEY": {
"title": "OBJ_KEY",
"type": "string",
"description": "",
"maxLength": 50
},
"OBJ_TXT": {
"title": "OBJ_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"QUANTITY": {
"title": "QUANTITY",
"type": "string",
"description": "",
"maxLength": 15
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"QUANTITY_UNIT": {
"title": "QUANTITY_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"COMPLETE": {
"title": "COMPLETE",
"type": "string",
"description": "",
"maxLength": 1
},
"CONSISTENT": {
"title": "CONSISTENT",
"type": "string",
"description": "",
"maxLength": 1
},
"OBJECT_GUID": {
"title": "OBJECT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"PERSIST_ID": {
"title": "PERSIST_ID",
"type": "string",
"description": "",
"maxLength": 32
},
"PERSIST_ID_TYPE": {
"title": "PERSIST_ID_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_PART_OF": {
"title": "ORDER_CFGS_PART_OF",
"type": "array",
"description": "Configuration: Part-of Specifications",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUPRT",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"PARENT_ID": {
"title": "PARENT_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"PART_OF_NO": {
"title": "PART_OF_NO",
"type": "string",
"description": "",
"maxLength": 4
},
"OBJ_TYPE": {
"title": "OBJ_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"CLASS_TYPE": {
"title": "CLASS_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"OBJ_KEY": {
"title": "OBJ_KEY",
"type": "string",
"description": "",
"maxLength": 50
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_RELEVANT": {
"title": "SALES_RELEVANT",
"type": "string",
"description": "",
"maxLength": 1
},
"PART_OF_GUID": {
"title": "PART_OF_GUID",
"type": "string",
"description": "",
"maxLength": 32
}
},
"required": []
}
},
"ORDER_CFGS_REF": {
"title": "ORDER_CFGS_REF",
"type": "array",
"description": "Configuration: Reference Data",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUCFG",
"type": "object",
"properties": {
"POSEX": {
"title": "POSEX",
"type": "string",
"description": "",
"maxLength": 6
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"ROOT_ID": {
"title": "ROOT_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"SCE": {
"title": "SCE",
"type": "string",
"description": "",
"maxLength": 1
},
"KBNAME": {
"title": "KBNAME",
"type": "string",
"description": "",
"maxLength": 30
},
"KBVERSION": {
"title": "KBVERSION",
"type": "string",
"description": "",
"maxLength": 30
},
"COMPLETE": {
"title": "COMPLETE",
"type": "string",
"description": "",
"maxLength": 1
},
"CONSISTENT": {
"title": "CONSISTENT",
"type": "string",
"description": "",
"maxLength": 1
},
"CFGINFO": {
"title": "CFGINFO",
"type": "string",
"description": "",
"maxLength": 250
},
"KBPROFILE": {
"title": "KBPROFILE",
"type": "string",
"description": "",
"maxLength": 30
},
"KBLANGUAGE": {
"title": "KBLANGUAGE",
"type": "string",
"description": "",
"maxLength": 1
},
"CBASE_ID": {
"title": "CBASE_ID",
"type": "string",
"description": "",
"maxLength": 32
},
"CBASE_ID_TYPE": {
"title": "CBASE_ID_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_REFINST": {
"title": "ORDER_CFGS_REFINST",
"type": "array",
"description": "Configuration: Reference Item / Instance",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUREF",
"type": "object",
"properties": {
"POSEX": {
"title": "POSEX",
"type": "string",
"description": "",
"maxLength": 6
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
}
},
"required": []
}
},
"ORDER_CFGS_VALUE": {
"title": "ORDER_CFGS_VALUE",
"type": "array",
"description": "Configuration: Characteristic Values",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUVAL",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"CHARC": {
"title": "CHARC",
"type": "string",
"description": "",
"maxLength": 40
},
"CHARC_TXT": {
"title": "CHARC_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"VALUE": {
"title": "VALUE",
"type": "string",
"description": "",
"maxLength": 40
},
"VALUE_TXT": {
"title": "VALUE_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"VALUE_TO": {
"title": "VALUE_TO",
"type": "string",
"description": "",
"maxLength": 40
},
"VALCODE": {
"title": "VALCODE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_VK": {
"title": "ORDER_CFGS_VK",
"type": "array",
"description": "Configuration: Variant Condition Key",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUVK",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"VKEY": {
"title": "VKEY",
"type": "string",
"description": "",
"maxLength": 26
},
"FACTOR": {
"title": "FACTOR",
"type": "string",
"description": "",
"maxLength": 15
}
},
"required": []
}
},
"ORDER_ITEM_IN": {
"title": "ORDER_ITEM_IN",
"type": "array",
"description": "Order Items",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDITM",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"HG_LV_ITEM": {
"title": "HG_LV_ITEM",
"type": "integer",
"description": ""
},
"PO_ITM_NO": {
"title": "PO_ITM_NO",
"type": "string",
"description": "",
"maxLength": 6
},
"MATERIAL": {
"title": "MATERIAL",
"type": "string",
"description": "",
"maxLength": 18
},
"ALT_TO_ITM": {
"title": "ALT_TO_ITM",
"type": "integer",
"description": ""
},
"CUST_MAT22": {
"title": "CUST_MAT22",
"type": "string",
"description": "",
"maxLength": 22
},
"BATCH": {
"title": "BATCH",
"type": "string",
"description": "",
"maxLength": 10
},
"DLV_GROUP": {
"title": "DLV_GROUP",
"type": "integer",
"description": ""
},
"PART_DLV": {
"title": "PART_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"REASON_REJ": {
"title": "REASON_REJ",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_DATE": {
"title": "BILL_DATE",
"type": "string",
"description": "",
"maxLength": 10
},
"PLANT": {
"title": "PLANT",
"type": "string",
"description": "",
"maxLength": 4
},
"STORE_LOC": {
"title": "STORE_LOC",
"type": "string",
"description": "",
"maxLength": 4
},
"TARGET_QTY": {
"title": "TARGET_QTY",
"type": "number",
"description": ""
},
"TARGET_QU": {
"title": "TARGET_QU",
"type": "string",
"description": "",
"maxLength": 3
},
"T_UNIT_ISO": {
"title": "T_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"ITEM_CATEG": {
"title": "ITEM_CATEG",
"type": "string",
"description": "",
"maxLength": 4
},
"SHORT_TEXT": {
"title": "SHORT_TEXT",
"type": "string",
"description": "",
"maxLength": 40
},
"PRC_GROUP1": {
"title": "PRC_GROUP1",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP2": {
"title": "PRC_GROUP2",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP3": {
"title": "PRC_GROUP3",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP4": {
"title": "PRC_GROUP4",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP5": {
"title": "PRC_GROUP5",
"type": "string",
"description": "",
"maxLength": 3
},
"PROD_HIERA": {
"title": "PROD_HIERA",
"type": "string",
"description": "",
"maxLength": 18
},
"MATL_GROUP": {
"title": "MATL_GROUP",
"type": "string",
"description": "",
"maxLength": 9
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 35
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 12
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 35
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 12
},
"POITM_NO_S": {
"title": "POITM_NO_S",
"type": "string",
"description": "",
"maxLength": 6
},
"PRICE_GRP": {
"title": "PRICE_GRP",
"type": "string",
"description": "",
"maxLength": 2
},
"CUST_GROUP": {
"title": "CUST_GROUP",
"type": "string",
"description": "",
"maxLength": 2
},
"SALES_DIST": {
"title": "SALES_DIST",
"type": "string",
"description": "",
"maxLength": 6
},
"PRICE_LIST": {
"title": "PRICE_LIST",
"type": "string",
"description": "",
"maxLength": 2
},
"INCOTERMS1": {
"title": "INCOTERMS1",
"type": "string",
"description": "",
"maxLength": 3
},
"INCOTERMS2": {
"title": "INCOTERMS2",
"type": "string",
"description": "",
"maxLength": 28
},
"ORDCOMP_IN": {
"title": "ORDCOMP_IN",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_SCHED": {
"title": "BILL_SCHED",
"type": "string",
"description": "",
"maxLength": 2
},
"INVO_SCHED": {
"title": "INVO_SCHED",
"type": "string",
"description": "",
"maxLength": 2
},
"MN_INVOICE": {
"title": "MN_INVOICE",
"type": "string",
"description": "",
"maxLength": 1
},
"EX_RATE_FI": {
"title": "EX_RATE_FI",
"type": "number",
"description": ""
},
"ADD_VAL_DY": {
"title": "ADD_VAL_DY",
"type": "integer",
"description": ""
},
"FIX_VAL_DY": {
"title": "FIX_VAL_DY",
"type": "string",
"description": "",
"maxLength": 8
},
"PMNTTRMS": {
"title": "PMNTTRMS",
"type": "string",
"description": "",
"maxLength": 4
},
"PYMT_METH": {
"title": "PYMT_METH",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCNT_ASGN": {
"title": "ACCNT_ASGN",
"type": "string",
"description": "",
"maxLength": 2
},
"EXCHG_RATE": {
"title": "EXCHG_RATE",
"type": "number",
"description": ""
},
"PRICE_DATE": {
"title": "PRICE_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"SERV_DATE": {
"title": "SERV_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DUNN_KEY": {
"title": "DUNN_KEY",
"type": "string",
"description": "",
"maxLength": 1
},
"DUNN_BLOCK": {
"title": "DUNN_BLOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"PROMOTION": {
"title": "PROMOTION",
"type": "string",
"description": "",
"maxLength": 10
},
"PMTGAR_PRO": {
"title": "PMTGAR_PRO",
"type": "string",
"description": "",
"maxLength": 6
},
"DOC_NUM_FI": {
"title": "DOC_NUM_FI",
"type": "string",
"description": "",
"maxLength": 10
},
"DEPARTM_NO": {
"title": "DEPARTM_NO",
"type": "string",
"description": "",
"maxLength": 4
},
"REC_POINT": {
"title": "REC_POINT",
"type": "string",
"description": "",
"maxLength": 25
},
"CSTCNDGRP1": {
"title": "CSTCNDGRP1",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP2": {
"title": "CSTCNDGRP2",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP3": {
"title": "CSTCNDGRP3",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP4": {
"title": "CSTCNDGRP4",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP5": {
"title": "CSTCNDGRP5",
"type": "string",
"description": "",
"maxLength": 2
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 3
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"S_UNIT_ISO": {
"title": "S_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"TRG_QTY_NO": {
"title": "TRG_QTY_NO",
"type": "number",
"description": ""
},
"TRGQTY_DEN": {
"title": "TRGQTY_DEN",
"type": "number",
"description": ""
},
"RNDDLV_QTY": {
"title": "RNDDLV_QTY",
"type": "number",
"description": ""
},
"MAXDEVAMNT": {
"title": "MAXDEVAMNT",
"type": "number",
"description": ""
},
"MAXDEVPER": {
"title": "MAXDEVPER",
"type": "number",
"description": ""
},
"MAXDEV_DAY": {
"title": "MAXDEV_DAY",
"type": "number",
"description": ""
},
"USAGE_IND": {
"title": "USAGE_IND",
"type": "string",
"description": "",
"maxLength": 3
},
"FIXED_QUAN": {
"title": "FIXED_QUAN",
"type": "string",
"description": "",
"maxLength": 1
},
"UNLMT_DLV": {
"title": "UNLMT_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"OVERDLVTOL": {
"title": "OVERDLVTOL",
"type": "number",
"description": ""
},
"UNDDLV_TOL": {
"title": "UNDDLV_TOL",
"type": "number",
"description": ""
},
"DIVISION": {
"title": "DIVISION",
"type": "string",
"description": "",
"maxLength": 2
},
"SALQTYNUM": {
"title": "SALQTYNUM",
"type": "number",
"description": ""
},
"SALQTYDEN": {
"title": "SALQTYDEN",
"type": "number",
"description": ""
},
"GROSS_WGHT": {
"title": "GROSS_WGHT",
"type": "number",
"description": ""
},
"NET_WEIGHT": {
"title": "NET_WEIGHT",
"type": "number",
"description": ""
},
"UNTOF_WGHT": {
"title": "UNTOF_WGHT",
"type": "string",
"description": "",
"maxLength": 3
},
"UNOF_WTISO": {
"title": "UNOF_WTISO",
"type": "string",
"description": "",
"maxLength": 3
},
"VOLUME": {
"title": "VOLUME",
"type": "number",
"description": ""
},
"VOLUNIT": {
"title": "VOLUNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"VOLUNITISO": {
"title": "VOLUNITISO",
"type": "string",
"description": "",
"maxLength": 3
},
"DLV_PRIO": {
"title": "DLV_PRIO",
"type": "integer",
"description": ""
},
"SHIP_POINT": {
"title": "SHIP_POINT",
"type": "string",
"description": "",
"maxLength": 4
},
"ROUTE": {
"title": "ROUTE",
"type": "string",
"description": "",
"maxLength": 6
},
"CREATED_BY": {
"title": "CREATED_BY",
"type": "string",
"description": "",
"maxLength": 12
},
"TAX_CLASS1": {
"title": "TAX_CLASS1",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_PR_GRP": {
"title": "MAT_PR_GRP",
"type": "string",
"description": "",
"maxLength": 2
},
"VAL_TYPE": {
"title": "VAL_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"FIXDAT_QTY": {
"title": "FIXDAT_QTY",
"type": "string",
"description": "",
"maxLength": 1
},
"BOMEXPL_NO": {
"title": "BOMEXPL_NO",
"type": "string",
"description": "",
"maxLength": 8
},
"RESANALKEY": {
"title": "RESANALKEY",
"type": "string",
"description": "",
"maxLength": 6
},
"REQMTS_TYP": {
"title": "REQMTS_TYP",
"type": "string",
"description": "",
"maxLength": 4
},
"NO_GR_POST": {
"title": "NO_GR_POST",
"type": "string",
"description": "",
"maxLength": 1
},
"BUS_TRANST": {
"title": "BUS_TRANST",
"type": "string",
"description": "",
"maxLength": 2
},
"OVERHD_KEY": {
"title": "OVERHD_KEY",
"type": "string",
"description": "",
"maxLength": 6
},
"CSTG_SHEET": {
"title": "CSTG_SHEET",
"type": "string",
"description": "",
"maxLength": 6
},
"MATFRGTGRP": {
"title": "MATFRGTGRP",
"type": "string",
"description": "",
"maxLength": 8
},
"PLDLVSHDIN": {
"title": "PLDLVSHDIN",
"type": "string",
"description": "",
"maxLength": 4
},
"SEQ_NO": {
"title": "SEQ_NO",
"type": "string",
"description": "",
"maxLength": 35
},
"BIL_FORM": {
"title": "BIL_FORM",
"type": "string",
"description": "",
"maxLength": 2
},
"DLI_PROFIL": {
"title": "DLI_PROFIL",
"type": "string",
"description": "",
"maxLength": 8
},
"REV_TYPE": {
"title": "REV_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"BEGDEM_PER": {
"title": "BEGDEM_PER",
"type": "string",
"description": "",
"maxLength": 1
},
"PR_REF_MAT": {
"title": "PR_REF_MAT",
"type": "string",
"description": "",
"maxLength": 18
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
},
"ORDER_PROB": {
"title": "ORDER_PROB",
"type": "integer",
"description": ""
},
"MAX_PL_DLV": {
"title": "MAX_PL_DLV",
"type": "number",
"description": ""
},
"CFOP_CODE": {
"title": "CFOP_CODE",
"type": "string",
"description": "",
"maxLength": 5
},
"TAXLAWICMS": {
"title": "TAXLAWICMS",
"type": "string",
"description": "",
"maxLength": 3
},
"TAXLAWIPI": {
"title": "TAXLAWIPI",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_TAXCODE": {
"title": "SD_TAXCODE",
"type": "string",
"description": "",
"maxLength": 2
},
"ASSORT_MOD": {
"title": "ASSORT_MOD",
"type": "string",
"description": "",
"maxLength": 18
},
"COMP_QUANT": {
"title": "COMP_QUANT",
"type": "number",
"description": ""
},
"TARGET_VAL": {
"title": "TARGET_VAL",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"PROFIT_CTR": {
"title": "PROFIT_CTR",
"type": "string",
"description": "",
"maxLength": 10
},
"ORDERID": {
"title": "ORDERID",
"type": "string",
"description": "",
"maxLength": 12
},
"WBS_ELEM": {
"title": "WBS_ELEM",
"type": "string",
"description": "",
"maxLength": 24
},
"DEPREC_PER": {
"title": "DEPREC_PER",
"type": "number",
"description": ""
},
"REF_DOC": {
"title": "REF_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"REF_DOC_IT": {
"title": "REF_DOC_IT",
"type": "integer",
"description": ""
},
"REF_DOC_CA": {
"title": "REF_DOC_CA",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_MAT35": {
"title": "CUST_MAT35",
"type": "string",
"description": "",
"maxLength": 35
},
"EXCH_RATE_FI_V": {
"title": "EXCH_RATE_FI_V",
"type": "number",
"description": ""
},
"EXCHG_RATE_V": {
"title": "EXCHG_RATE_V",
"type": "number",
"description": ""
},
"ITEMGUID_ATP": {
"title": "ITEMGUID_ATP",
"type": "string",
"description": "",
"maxLength": 22
},
"VAL_CONTR": {
"title": "VAL_CONTR",
"type": "string",
"description": "",
"maxLength": 10
},
"VAL_CON_I": {
"title": "VAL_CON_I",
"type": "integer",
"description": ""
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"MAT_EXT": {
"title": "MAT_EXT",
"type": "string",
"description": "",
"maxLength": 40
},
"MAT_GUID": {
"title": "MAT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_VERS": {
"title": "MAT_VERS",
"type": "string",
"description": "",
"maxLength": 10
},
"P_MAT_EXT": {
"title": "P_MAT_EXT",
"type": "string",
"description": "",
"maxLength": 40
},
"P_MAT_GUID": {
"title": "P_MAT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"P_MAT_VERS": {
"title": "P_MAT_VERS",
"type": "string",
"description": "",
"maxLength": 10
},
"FUNC_AREA": {
"title": "FUNC_AREA",
"type": "string",
"description": "",
"maxLength": 4
},
"ALTERN_BOM": {
"title": "ALTERN_BOM",
"type": "string",
"description": "",
"maxLength": 2
},
"FKK_CONACCT": {
"title": "FKK_CONACCT",
"type": "string",
"description": "",
"maxLength": 12
},
"EAN_UPC": {
"title": "EAN_UPC",
"type": "string",
"description": "",
"maxLength": 18
},
"PRODCAT": {
"title": "PRODCAT",
"type": "string",
"description": "",
"maxLength": 10
},
"SHIP_TYPE": {
"title": "SHIP_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"S_PROC_IND": {
"title": "S_PROC_IND",
"type": "string",
"description": "",
"maxLength": 4
},
"FUNC_AREA_LONG": {
"title": "FUNC_AREA_LONG",
"type": "string",
"description": "",
"maxLength": 16
},
"BILL_REL": {
"title": "BILL_REL",
"type": "string",
"description": "",
"maxLength": 1
},
"VW_UEPOS": {
"title": "VW_UEPOS",
"type": "string",
"description": "",
"maxLength": 1
},
"CAMPAIGN": {
"title": "CAMPAIGN",
"type": "string",
"description": "",
"maxLength": 16
},
"DLVSCHDUSE": {
"title": "DLVSCHDUSE",
"type": "string",
"description": "",
"maxLength": 3
},
"CFOP_LONG": {
"title": "CFOP_LONG",
"type": "string",
"description": "",
"maxLength": 10
},
"SELECTION": {
"title": "SELECTION",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_ENTRD": {
"title": "MAT_ENTRD",
"type": "string",
"description": "",
"maxLength": 18
},
"LOG_SYSTEM_OWN": {
"title": "LOG_SYSTEM_OWN",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_TYPE_USAGE": {
"title": "ITM_TYPE_USAGE",
"type": "string",
"description": "",
"maxLength": 4
},
"TAXLAWISS": {
"title": "TAXLAWISS",
"type": "string",
"description": "",
"maxLength": 3
},
"MAT_ENTRD_EXTERNAL": {
"title": "MAT_ENTRD_EXTERNAL",
"type": "string",
"description": "",
"maxLength": 40
},
"MAT_ENTRD_GUID": {
"title": "MAT_ENTRD_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_ENTRD_VERSION": {
"title": "MAT_ENTRD_VERSION",
"type": "string",
"description": "",
"maxLength": 10
},
"LOC_TAXCAT": {
"title": "LOC_TAXCAT",
"type": "string",
"description": "",
"maxLength": 2
},
"LOC_ZEROVAT": {
"title": "LOC_ZEROVAT",
"type": "string",
"description": "",
"maxLength": 1
},
"LOC_ACTCODE": {
"title": "LOC_ACTCODE",
"type": "string",
"description": "",
"maxLength": 2
},
"LOC_DISTTYPE": {
"title": "LOC_DISTTYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"LOC_TXRELCLAS": {
"title": "LOC_TXRELCLAS",
"type": "string",
"description": "",
"maxLength": 10
},
"CALC_MOTIVE": {
"title": "CALC_MOTIVE",
"type": "string",
"description": "",
"maxLength": 2
},
"COMPREAS": {
"title": "COMPREAS",
"type": "string",
"description": "",
"maxLength": 4
},
"FUND": {
"title": "FUND",
"type": "string",
"description": "",
"maxLength": 10
},
"FUNDS_CTR": {
"title": "FUNDS_CTR",
"type": "string",
"description": "",
"maxLength": 16
},
"CMMT_ITEM": {
"title": "CMMT_ITEM",
"type": "string",
"description": "",
"maxLength": 24
},
"GRANT_NBR": {
"title": "GRANT_NBR",
"type": "string",
"description": "",
"maxLength": 20
},
"BUDGET_PERIOD": {
"title": "BUDGET_PERIOD",
"type": "string",
"description": "",
"maxLength": 10
},
"TAXLAWCOFINS": {
"title": "TAXLAWCOFINS",
"type": "string",
"description": "",
"maxLength": 3
},
"TAXLAWPIS": {
"title": "TAXLAWPIS",
"type": "string",
"description": "",
"maxLength": 3
},
"TREASURY_ACC_SYMBOL": {
"title": "TREASURY_ACC_SYMBOL",
"type": "string",
"description": "",
"maxLength": 30
},
"BUSINESS_EVENT_TCODE": {
"title": "BUSINESS_EVENT_TCODE",
"type": "string",
"description": "",
"maxLength": 10
},
"MODIFICATION_ALLOWED": {
"title": "MODIFICATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"CANCELLATION_ALLOWED": {
"title": "CANCELLATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"PAYMENT_METHODS": {
"title": "PAYMENT_METHODS",
"type": "string",
"description": "",
"maxLength": 10
},
"BUSINESS_PARTNER_NO": {
"title": "BUSINESS_PARTNER_NO",
"type": "string",
"description": "",
"maxLength": 6
},
"REPORTING_FREQ": {
"title": "REPORTING_FREQ",
"type": "string",
"description": "",
"maxLength": 3
},
"SEPA_MANDATE_ID": {
"title": "SEPA_MANDATE_ID",
"type": "string",
"description": "",
"maxLength": 35
},
"REQ_SEGMENT": {
"title": "REQ_SEGMENT",
"type": "string",
"description": "",
"maxLength": 16
},
"TP_SUBLEVL": {
"title": "TP_SUBLEVL",
"type": "string",
"description": "",
"maxLength": 2
},
"TP_AGENCID": {
"title": "TP_AGENCID",
"type": "string",
"description": "",
"maxLength": 3
},
"TP_ALTRAID": {
"title": "TP_ALTRAID",
"type": "string",
"description": "",
"maxLength": 3
},
"TP_BEGPER": {
"title": "TP_BEGPER",
"type": "integer",
"description": ""
},
"TP_ENDPER": {
"title": "TP_ENDPER",
"type": "integer",
"description": ""
},
"TP_AVTYPE": {
"title": "TP_AVTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_MAIN_ACCT": {
"title": "TP_MAIN_ACCT",
"type": "string",
"description": "",
"maxLength": 4
},
"TP_SUB_ACCT": {
"title": "TP_SUB_ACCT",
"type": "string",
"description": "",
"maxLength": 3
},
"TP_BETC": {
"title": "TP_BETC",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
},
"ORDER_ITEM_INX": {
"title": "ORDER_ITEM_INX",
"type": "array",
"description": "Sales Order Items Check Table",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDITMX",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"UPDATEFLAG": {
"title": "UPDATEFLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"HG_LV_ITEM": {
"title": "HG_LV_ITEM",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_ITM_NO": {
"title": "PO_ITM_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"MATERIAL": {
"title": "MATERIAL",
"type": "string",
"description": "",
"maxLength": 1
},
"ALT_TO_ITM": {
"title": "ALT_TO_ITM",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_MAT22": {
"title": "CUST_MAT22",
"type": "string",
"description": "",
"maxLength": 1
},
"BATCH": {
"title": "BATCH",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_GROUP": {
"title": "DLV_GROUP",
"type": "string",
"description": "",
"maxLength": 1
},
"PART_DLV": {
"title": "PART_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"REASON_REJ": {
"title": "REASON_REJ",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_DATE": {
"title": "BILL_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"PLANT": {
"title": "PLANT",
"type": "string",
"description": "",
"maxLength": 1
},
"STORE_LOC": {
"title": "STORE_LOC",
"type": "string",
"description": "",
"maxLength": 1
},
"TARGET_QTY": {
"title": "TARGET_QTY",
"type": "string",
"description": "",
"maxLength": 1
},
"TARGET_QU": {
"title": "TARGET_QU",
"type": "string",
"description": "",
"maxLength": 1
},
"T_UNIT_ISO": {
"title": "T_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 1
},
"ITEM_CATEG": {
"title": "ITEM_CATEG",
"type": "string",
"description": "",
"maxLength": 1
},
"SHORT_TEXT": {
"title": "SHORT_TEXT",
"type": "string",
"description": "",
"maxLength": 1
},
"PRC_GROUP1": {
"title": "PRC_GROUP1",
"type": "string",
"description": "",
"maxLength": 1
},
"PRC_GROUP2": {
"title": "PRC_GROUP2",
"type": "string",
"description": "",
"maxLength": 1
},
"PRC_GROUP3": {
"title": "PRC_GROUP3",
"type": "string",
"description": "",
"maxLength": 1
},
"PRC_GROUP4": {
"title": "PRC_GROUP4",
"type": "string",
"description": "",
"maxLength": 1
},
"PRC_GROUP5": {
"title": "PRC_GROUP5",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_HIERA": {
"title": "PROD_HIERA",
"type": "string",
"description": "",
"maxLength": 1
},
"MATL_GROUP": {
"title": "MATL_GROUP",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 1
},
"POITM_NO_S": {
"title": "POITM_NO_S",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICE_GRP": {
"title": "PRICE_GRP",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_GROUP": {
"title": "CUST_GROUP",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_DIST": {
"title": "SALES_DIST",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICE_LIST": {
"title": "PRICE_LIST",
"type": "string",
"description": "",
"maxLength": 1
},
"INCOTERMS1": {
"title": "INCOTERMS1",
"type": "string",
"description": "",
"maxLength": 1
},
"INCOTERMS2": {
"title": "INCOTERMS2",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDCOMP_IN": {
"title": "ORDCOMP_IN",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_SCHED": {
"title": "BILL_SCHED",
"type": "string",
"description": "",
"maxLength": 1
},
"INVO_SCHED": {
"title": "INVO_SCHED",
"type": "string",
"description": "",
"maxLength": 1
},
"MN_INVOICE": {
"title": "MN_INVOICE",
"type": "string",
"description": "",
"maxLength": 1
},
"EX_RATE_FI": {
"title": "EX_RATE_FI",
"type": "string",
"description": "",
"maxLength": 1
},
"ADD_VAL_DY": {
"title": "ADD_VAL_DY",
"type": "string",
"description": "",
"maxLength": 1
},
"FIX_VAL_DY": {
"title": "FIX_VAL_DY",
"type": "string",
"description": "",
"maxLength": 1
},
"PMNTTRMS": {
"title": "PMNTTRMS",
"type": "string",
"description": "",
"maxLength": 1
},
"PYMT_METH": {
"title": "PYMT_METH",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCNT_ASGN": {
"title": "ACCNT_ASGN",
"type": "string",
"description": "",
"maxLength": 1
},
"EXCHG_RATE": {
"title": "EXCHG_RATE",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICE_DATE": {
"title": "PRICE_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"SERV_DATE": {
"title": "SERV_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"DUNN_KEY": {
"title": "DUNN_KEY",
"type": "string",
"description": "",
"maxLength": 1
},
"DUNN_BLOCK": {
"title": "DUNN_BLOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"PROMOTION": {
"title": "PROMOTION",
"type": "string",
"description": "",
"maxLength": 1
},
"PMTGAR_PRO": {
"title": "PMTGAR_PRO",
"type": "string",
"description": "",
"maxLength": 1
},
"DOC_NUM_FI": {
"title": "DOC_NUM_FI",
"type": "string",
"description": "",
"maxLength": 1
},
"DEPARTM_NO": {
"title": "DEPARTM_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"REC_POINT": {
"title": "REC_POINT",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP1": {
"title": "CSTCNDGRP1",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP2": {
"title": "CSTCNDGRP2",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP3": {
"title": "CSTCNDGRP3",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP4": {
"title": "CSTCNDGRP4",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP5": {
"title": "CSTCNDGRP5",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 1
},
"TRG_QTY_NO": {
"title": "TRG_QTY_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"TRGQTY_DEN": {
"title": "TRGQTY_DEN",
"type": "string",
"description": "",
"maxLength": 1
},
"RNDDLV_QTY": {
"title": "RNDDLV_QTY",
"type": "string",
"description": "",
"maxLength": 1
},
"MAXDEVAMNT": {
"title": "MAXDEVAMNT",
"type": "string",
"description": "",
"maxLength": 1
},
"MAXDEVPER": {
"title": "MAXDEVPER",
"type": "string",
"description": "",
"maxLength": 1
},
"MAXDEV_DAY": {
"title": "MAXDEV_DAY",
"type": "string",
"description": "",
"maxLength": 1
},
"USAGE_IND": {
"title": "USAGE_IND",
"type": "string",
"description": "",
"maxLength": 1
},
"FIXED_QUAN": {
"title": "FIXED_QUAN",
"type": "string",
"description": "",
"maxLength": 1
},
"UNLMT_DLV": {
"title": "UNLMT_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"OVERDLVTOL": {
"title": "OVERDLVTOL",
"type": "string",
"description": "",
"maxLength": 1
},
"UNDDLV_TOL": {
"title": "UNDDLV_TOL",
"type": "string",
"description": "",
"maxLength": 1
},
"DIVISION": {
"title": "DIVISION",
"type": "string",
"description": "",
"maxLength": 1
},
"SALQTYNUM": {
"title": "SALQTYNUM",
"type": "string",
"description": "",
"maxLength": 1
},
"SALQTYDEN": {
"title": "SALQTYDEN",
"type": "string",
"description": "",
"maxLength": 1
},
"GROSS_WGHT": {
"title": "GROSS_WGHT",
"type": "string",
"description": "",
"maxLength": 1
},
"NET_WEIGHT": {
"title": "NET_WEIGHT",
"type": "string",
"description": "",
"maxLength": 1
},
"UNTOF_WGHT": {
"title": "UNTOF_WGHT",
"type": "string",
"description": "",
"maxLength": 1
},
"VOLUME": {
"title": "VOLUME",
"type": "string",
"description": "",
"maxLength": 1
},
"VOLUNIT": {
"title": "VOLUNIT",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_PRIO": {
"title": "DLV_PRIO",
"type": "string",
"description": "",
"maxLength": 1
},
"SHIP_POINT": {
"title": "SHIP_POINT",
"type": "string",
"description": "",
"maxLength": 1
},
"ROUTE": {
"title": "ROUTE",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS1": {
"title": "TAX_CLASS1",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_PR_GRP": {
"title": "MAT_PR_GRP",
"type": "string",
"description": "",
"maxLength": 1
},
"VAL_TYPE": {
"title": "VAL_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"FIXDAT_QTY": {
"title": "FIXDAT_QTY",
"type": "string",
"description": "",
"maxLength": 1
},
"BOMEXPL_NO": {
"title": "BOMEXPL_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"RESANALKEY": {
"title": "RESANALKEY",
"type": "string",
"description": "",
"maxLength": 1
},
"REQMTS_TYP": {
"title": "REQMTS_TYP",
"type": "string",
"description": "",
"maxLength": 1
},
"NO_GR_POST": {
"title": "NO_GR_POST",
"type": "string",
"description": "",
"maxLength": 1
},
"BUS_TRANST": {
"title": "BUS_TRANST",
"type": "string",
"description": "",
"maxLength": 1
},
"OVERHD_KEY": {
"title": "OVERHD_KEY",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTG_SHEET": {
"title": "CSTG_SHEET",
"type": "string",
"description": "",
"maxLength": 1
},
"MATFRGTGRP": {
"title": "MATFRGTGRP",
"type": "string",
"description": "",
"maxLength": 1
},
"PLDLVSHDIN": {
"title": "PLDLVSHDIN",
"type": "string",
"description": "",
"maxLength": 1
},
"SEQ_NO": {
"title": "SEQ_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"BIL_FORM": {
"title": "BIL_FORM",
"type": "string",
"description": "",
"maxLength": 1
},
"DLI_PROFIL": {
"title": "DLI_PROFIL",
"type": "string",
"description": "",
"maxLength": 1
},
"REV_TYPE": {
"title": "REV_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"BEGDEM_PER": {
"title": "BEGDEM_PER",
"type": "string",
"description": "",
"maxLength": 1
},
"PR_REF_MAT": {
"title": "PR_REF_MAT",
"type": "string",
"description": "",
"maxLength": 1
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 1
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDER_PROB": {
"title": "ORDER_PROB",
"type": "string",
"description": "",
"maxLength": 1
},
"MAX_PL_DLV": {
"title": "MAX_PL_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"CFOP_CODE": {
"title": "CFOP_CODE",
"type": "string",
"description": "",
"maxLength": 1
},
"TAXLAWICMS": {
"title": "TAXLAWICMS",
"type": "string",
"description": "",
"maxLength": 1
},
"TAXLAWIPI": {
"title": "TAXLAWIPI",
"type": "string",
"description": "",
"maxLength": 1
},
"SD_TAXCODE": {
"title": "SD_TAXCODE",
"type": "string",
"description": "",
"maxLength": 1
},
"ASSORT_MOD": {
"title": "ASSORT_MOD",
"type": "string",
"description": "",
"maxLength": 1
},
"COMP_QUANT": {
"title": "COMP_QUANT",
"type": "string",
"description": "",
"maxLength": 1
},
"TARGET_VAL": {
"title": "TARGET_VAL",
"type": "string",
"description": "",
"maxLength": 1
},
"PROFIT_CTR": {
"title": "PROFIT_CTR",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDERID": {
"title": "ORDERID",
"type": "string",
"description": "",
"maxLength": 1
},
"WBS_ELEM": {
"title": "WBS_ELEM",
"type": "string",
"description": "",
"maxLength": 1
},
"DEPREC_PER": {
"title": "DEPREC_PER",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC": {
"title": "REF_DOC",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC_IT": {
"title": "REF_DOC_IT",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC_CA": {
"title": "REF_DOC_CA",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_MAT35": {
"title": "CUST_MAT35",
"type": "string",
"description": "",
"maxLength": 1
},
"EXCH_RATE_FI_V": {
"title": "EXCH_RATE_FI_V",
"type": "string",
"description": "",
"maxLength": 1
},
"EXCHG_RATE_V": {
"title": "EXCHG_RATE_V",
"type": "string",
"description": "",
"maxLength": 1
},
"ITEMGUID_ATP": {
"title": "ITEMGUID_ATP",
"type": "string",
"description": "",
"maxLength": 1
},
"VAL_CONTR": {
"title": "VAL_CONTR",
"type": "string",
"description": "",
"maxLength": 1
},
"VAL_CON_I": {
"title": "VAL_CON_I",
"type": "string",
"description": "",
"maxLength": 1
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 1
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_EXT": {
"title": "MAT_EXT",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_GUID": {
"title": "MAT_GUID",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_VERS": {
"title": "MAT_VERS",
"type": "string",
"description": "",
"maxLength": 1
},
"P_MAT_EXT": {
"title": "P_MAT_EXT",
"type": "string",
"description": "",
"maxLength": 1
},
"P_MAT_GUID": {
"title": "P_MAT_GUID",
"type": "string",
"description": "",
"maxLength": 1
},
"P_MAT_VERS": {
"title": "P_MAT_VERS",
"type": "string",
"description": "",
"maxLength": 1
},
"FUNC_AREA": {
"title": "FUNC_AREA",
"type": "string",
"description": "",
"maxLength": 1
},
"ALTERN_BOM": {
"title": "ALTERN_BOM",
"type": "string",
"description": "",
"maxLength": 1
},
"FKK_CONACCT": {
"title": "FKK_CONACCT",
"type": "string",
"description": "",
"maxLength": 1
},
"EAN_UPC": {
"title": "EAN_UPC",
"type": "string",
"description": "",
"maxLength": 1
},
"PRODCAT": {
"title": "PRODCAT",
"type": "string",
"description": "",
"maxLength": 1
},
"SHIP_TYPE": {
"title": "SHIP_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"S_PROC_IND": {
"title": "S_PROC_IND",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_REL": {
"title": "BILL_REL",
"type": "string",
"description": "",
"maxLength": 1
},
"VW_UEPOS": {
"title": "VW_UEPOS",
"type": "string",
"description": "",
"maxLength": 1
},
"CAMPAIGN": {
"title": "CAMPAIGN",
"type": "string",
"description": "",
"maxLength": 1
},
"DLVSCHDUSE": {
"title": "DLVSCHDUSE",
"type": "string",
"description": "",
"maxLength": 1
},
"SELECTION": {
"title": "SELECTION",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_ENTRD": {
"title": "MAT_ENTRD",
"type": "string",
"description": "",
"maxLength": 1
},
"LOG_SYSTEM_OWN": {
"title": "LOG_SYSTEM_OWN",
"type": "string",
"description": "",
"maxLength": 1
},
"ITM_TYPE_USAGE": {
"title": "ITM_TYPE_USAGE",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_ENTRD_EXTERNAL": {
"title": "MAT_ENTRD_EXTERNAL",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_ENTRD_GUID": {
"title": "MAT_ENTRD_GUID",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_ENTRD_VERSION": {
"title": "MAT_ENTRD_VERSION",
"type": "string",
"description": "",
"maxLength": 1
},
"LOC_TAXCAT": {
"title": "LOC_TAXCAT",
"type": "string",
"description": "",
"maxLength": 1
},
"LOC_ZEROVAT": {
"title": "LOC_ZEROVAT",
"type": "string",
"description": "",
"maxLength": 1
},
"LOC_ACTCODE": {
"title": "LOC_ACTCODE",
"type": "string",
"description": "",
"maxLength": 1
},
"LOC_DISTTYPE": {
"title": "LOC_DISTTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"LOC_TXRELCLAS": {
"title": "LOC_TXRELCLAS",
"type": "string",
"description": "",
"maxLength": 1
},
"CALC_MOTIVE": {
"title": "CALC_MOTIVE",
"type": "string",
"description": "",
"maxLength": 1
},
"FUND": {
"title": "FUND",
"type": "string",
"description": "",
"maxLength": 1
},
"FUNDS_CTR": {
"title": "FUNDS_CTR",
"type": "string",
"description": "",
"maxLength": 1
},
"CMMT_ITEM": {
"title": "CMMT_ITEM",
"type": "string",
"description": "",
"maxLength": 1
},
"GRANT_NBR": {
"title": "GRANT_NBR",
"type": "string",
"description": "",
"maxLength": 1
},
"BUDGET_PERIOD": {
"title": "BUDGET_PERIOD",
"type": "string",
"description": "",
"maxLength": 1
},
"TAXLAWISS": {
"title": "TAXLAWISS",
"type": "string",
"description": "",
"maxLength": 1
},
"TAXLAWCOFINS": {
"title": "TAXLAWCOFINS",
"type": "string",
"description": "",
"maxLength": 1
},
"TAXLAWPIS": {
"title": "TAXLAWPIS",
"type": "string",
"description": "",
"maxLength": 1
},
"TREASURY_ACC_SYMBOL": {
"title": "TREASURY_ACC_SYMBOL",
"type": "string",
"description": "",
"maxLength": 1
},
"BUSINESS_EVENT_TCODE": {
"title": "BUSINESS_EVENT_TCODE",
"type": "string",
"description": "",
"maxLength": 1
},
"MODIFICATION_ALLOWED": {
"title": "MODIFICATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"CANCELLATION_ALLOWED": {
"title": "CANCELLATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"PAYMENT_METHODS": {
"title": "PAYMENT_METHODS",
"type": "string",
"description": "",
"maxLength": 1
},
"BUSINESS_PARTNER_NO": {
"title": "BUSINESS_PARTNER_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"REPORTING_FREQ": {
"title": "REPORTING_FREQ",
"type": "string",
"description": "",
"maxLength": 1
},
"CFOP_LONG": {
"title": "CFOP_LONG",
"type": "string",
"description": "",
"maxLength": 1
},
"SEPA_MANDATE_ID": {
"title": "SEPA_MANDATE_ID",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_SEGMENT": {
"title": "REQ_SEGMENT",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_SUBLEVL": {
"title": "TP_SUBLEVL",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_AGENCID": {
"title": "TP_AGENCID",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_ALTRAID": {
"title": "TP_ALTRAID",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_BEGPER": {
"title": "TP_BEGPER",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_ENDPER": {
"title": "TP_ENDPER",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_AVTYPE": {
"title": "TP_AVTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_MAIN_ACCT": {
"title": "TP_MAIN_ACCT",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_SUB_ACCT": {
"title": "TP_SUB_ACCT",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_BETC": {
"title": "TP_BETC",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_KEYS": {
"title": "ORDER_KEYS",
"type": "array",
"description": "Output Table of Reference Keys",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDKEY",
"type": "object",
"properties": {
"REFOBJTYP": {
"title": "REFOBJTYP",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJECT": {
"title": "REFOBJECT",
"type": "string",
"description": "",
"maxLength": 32
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
},
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"SCHED_LIN": {
"title": "SCHED_LIN",
"type": "integer",
"description": ""
},
"COND_NO": {
"title": "COND_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"CONDITEMNO": {
"title": "CONDITEMNO",
"type": "integer",
"description": ""
},
"COND_ST_NO": {
"title": "COND_ST_NO",
"type": "integer",
"description": ""
},
"COND_COUNT": {
"title": "COND_COUNT",
"type": "integer",
"description": ""
},
"COND_TYPE": {
"title": "COND_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"STATUS": {
"title": "STATUS",
"type": "string",
"description": "",
"maxLength": 1
},
"TINDEX": {
"title": "TINDEX",
"type": "integer",
"description": ""
},
"ADDRESS": {
"title": "ADDRESS",
"type": "string",
"description": "",
"maxLength": 10
},
"ABRLI": {
"title": "ABRLI",
"type": "integer",
"description": ""
},
"ABART": {
"title": "ABART",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_TEXT": {
"title": "ORDER_TEXT",
"type": "array",
"description": "Texts",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDTEXT",
"type": "object",
"properties": {
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"TEXT_ID": {
"title": "TEXT_ID",
"type": "string",
"description": "",
"maxLength": 4
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"LANGU_ISO": {
"title": "LANGU_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"FORMAT_COL": {
"title": "FORMAT_COL",
"type": "string",
"description": "",
"maxLength": 2
},
"TEXT_LINE": {
"title": "TEXT_LINE",
"type": "string",
"description": "",
"maxLength": 132
},
"FUNCTION": {
"title": "FUNCTION",
"type": "string",
"description": "",
"maxLength": 3
}
},
"required": []
}
},
"PARTNERADDRESSES": {
"title": "PARTNERADDRESSES",
"type": "array",
"description": "BAPI Reference Structure for Addresses (Org./Company)",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIADDR1",
"type": "object",
"properties": {
"ADDR_NO": {
"title": "ADDR_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"FORMOFADDR": {
"title": "FORMOFADDR",
"type": "string",
"description": "",
"maxLength": 20
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 40
},
"NAME_2": {
"title": "NAME_2",
"type": "string",
"description": "",
"maxLength": 40
},
"NAME_3": {
"title": "NAME_3",
"type": "string",
"description": "",
"maxLength": 40
},
"NAME_4": {
"title": "NAME_4",
"type": "string",
"description": "",
"maxLength": 40
},
"C_O_NAME": {
"title": "C_O_NAME",
"type": "string",
"description": "",
"maxLength": 40
},
"CITY": {
"title": "CITY",
"type": "string",
"description": "",
"maxLength": 40
},
"DISTRICT": {
"title": "DISTRICT",
"type": "string",
"description": "",
"maxLength": 40
},
"CITY_NO": {
"title": "CITY_NO",
"type": "string",
"description": "",
"maxLength": 12
},
"POSTL_COD1": {
"title": "POSTL_COD1",
"type": "string",
"description": "",
"maxLength": 10
},
"POSTL_COD2": {
"title": "POSTL_COD2",
"type": "string",
"description": "",
"maxLength": 10
},
"POSTL_COD3": {
"title": "POSTL_COD3",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_BOX": {
"title": "PO_BOX",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_BOX_CIT": {
"title": "PO_BOX_CIT",
"type": "string",
"description": "",
"maxLength": 40
},
"DELIV_DIS": {
"title": "DELIV_DIS",
"type": "string",
"description": "",
"maxLength": 15
},
"STREET": {
"title": "STREET",
"type": "string",
"description": "",
"maxLength": 40
},
"STREET_NO": {
"title": "STREET_NO",
"type": "string",
"description": "",
"maxLength": 12
},
"STR_ABBR": {
"title": "STR_ABBR",
"type": "string",
"description": "",
"maxLength": 2
},
"HOUSE_NO": {
"title": "HOUSE_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"STR_SUPPL1": {
"title": "STR_SUPPL1",
"type": "string",
"description": "",
"maxLength": 40
},
"STR_SUPPL2": {
"title": "STR_SUPPL2",
"type": "string",
"description": "",
"maxLength": 40
},
"LOCATION": {
"title": "LOCATION",
"type": "string",
"description": "",
"maxLength": 40
},
"BUILDING": {
"title": "BUILDING",
"type": "string",
"description": "",
"maxLength": 10
},
"FLOOR": {
"title": "FLOOR",
"type": "string",
"description": "",
"maxLength": 10
},
"ROOM_NO": {
"title": "ROOM_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"COUNTRY": {
"title": "COUNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"REGION": {
"title": "REGION",
"type": "string",
"description": "",
"maxLength": 3
},
"SORT1": {
"title": "SORT1",
"type": "string",
"description": "",
"maxLength": 20
},
"SORT2": {
"title": "SORT2",
"type": "string",
"description": "",
"maxLength": 20
},
"TIME_ZONE": {
"title": "TIME_ZONE",
"type": "string",
"description": "",
"maxLength": 6
},
"TAXJURCODE": {
"title": "TAXJURCODE",
"type": "string",
"description": "",
"maxLength": 15
},
"ADR_NOTES": {
"title": "ADR_NOTES",
"type": "string",
"description": "",
"maxLength": 50
},
"COMM_TYPE": {
"title": "COMM_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"TEL1_NUMBR": {
"title": "TEL1_NUMBR",
"type": "string",
"description": "",
"maxLength": 30
},
"TEL1_EXT": {
"title": "TEL1_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"FAX_NUMBER": {
"title": "FAX_NUMBER",
"type": "string",
"description": "",
"maxLength": 30
},
"FAX_EXTENS": {
"title": "FAX_EXTENS",
"type": "string",
"description": "",
"maxLength": 10
},
"STREET_LNG": {
"title": "STREET_LNG",
"type": "string",
"description": "",
"maxLength": 60
},
"DISTRCT_NO": {
"title": "DISTRCT_NO",
"type": "string",
"description": "",
"maxLength": 8
},
"CHCKSTATUS": {
"title": "CHCKSTATUS",
"type": "string",
"description": "",
"maxLength": 1
},
"PBOXCIT_NO": {
"title": "PBOXCIT_NO",
"type": "string",
"description": "",
"maxLength": 12
},
"TRANSPZONE": {
"title": "TRANSPZONE",
"type": "string",
"description": "",
"maxLength": 10
},
"HOUSE_NO2": {
"title": "HOUSE_NO2",
"type": "string",
"description": "",
"maxLength": 10
},
"E_MAIL": {
"title": "E_MAIL",
"type": "string",
"description": "",
"maxLength": 241
},
"STR_SUPPL3": {
"title": "STR_SUPPL3",
"type": "string",
"description": "",
"maxLength": 40
},
"TITLE": {
"title": "TITLE",
"type": "string",
"description": "",
"maxLength": 30
},
"COUNTRYISO": {
"title": "COUNTRYISO",
"type": "string",
"description": "",
"maxLength": 2
},
"LANGU_ISO": {
"title": "LANGU_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"BUILD_LONG": {
"title": "BUILD_LONG",
"type": "string",
"description": "",
"maxLength": 20
},
"REGIOGROUP": {
"title": "REGIOGROUP",
"type": "string",
"description": "",
"maxLength": 8
},
"HOME_CITY": {
"title": "HOME_CITY",
"type": "string",
"description": "",
"maxLength": 40
},
"HOMECITYNO": {
"title": "HOMECITYNO",
"type": "string",
"description": "",
"maxLength": 12
},
"PCODE1_EXT": {
"title": "PCODE1_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"PCODE2_EXT": {
"title": "PCODE2_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"PCODE3_EXT": {
"title": "PCODE3_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_W_O_NO": {
"title": "PO_W_O_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_BOX_REG": {
"title": "PO_BOX_REG",
"type": "string",
"description": "",
"maxLength": 3
},
"POBOX_CTRY": {
"title": "POBOX_CTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"PO_CTRYISO": {
"title": "PO_CTRYISO",
"type": "string",
"description": "",
"maxLength": 2
},
"HOMEPAGE": {
"title": "HOMEPAGE",
"type": "string",
"description": "",
"maxLength": 132
},
"DONT_USE_S": {
"title": "DONT_USE_S",
"type": "string",
"description": "",
"maxLength": 4
},
"DONT_USE_P": {
"title": "DONT_USE_P",
"type": "string",
"description": "",
"maxLength": 4
},
"HOUSE_NO3": {
"title": "HOUSE_NO3",
"type": "string",
"description": "",
"maxLength": 10
},
"LANGU_CR": {
"title": "LANGU_CR",
"type": "string",
"description": "",
"maxLength": 1
},
"LANGUCRISO": {
"title": "LANGUCRISO",
"type": "string",
"description": "",
"maxLength": 2
},
"PO_BOX_LOBBY": {
"title": "PO_BOX_LOBBY",
"type": "string",
"description": "",
"maxLength": 40
},
"DELI_SERV_TYPE": {
"title": "DELI_SERV_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"DELI_SERV_NUMBER": {
"title": "DELI_SERV_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"URI_TYPE": {
"title": "URI_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"COUNTY_CODE": {
"title": "COUNTY_CODE",
"type": "string",
"description": "",
"maxLength": 8
},
"COUNTY": {
"title": "COUNTY",
"type": "string",
"description": "",
"maxLength": 40
},
"TOWNSHIP_CODE": {
"title": "TOWNSHIP_CODE",
"type": "string",
"description": "",
"maxLength": 8
},
"TOWNSHIP": {
"title": "TOWNSHIP",
"type": "string",
"description": "",
"maxLength": 40
}
},
"required": []
}
},
"PARTNERCHANGES": {
"title": "PARTNERCHANGES",
"type": "array",
"description": "Partner changes",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIPARNRC",
"type": "object",
"properties": {
"DOCUMENT": {
"title": "DOCUMENT",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"UPDATEFLAG": {
"title": "UPDATEFLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"PARTN_ROLE": {
"title": "PARTN_ROLE",
"type": "string",
"description": "",
"maxLength": 2
},
"P_NUMB_OLD": {
"title": "P_NUMB_OLD",
"type": "string",
"description": "",
"maxLength": 10
},
"P_NUMB_NEW": {
"title": "P_NUMB_NEW",
"type": "string",
"description": "",
"maxLength": 10
},
"ADDRESS": {
"title": "ADDRESS",
"type": "string",
"description": "",
"maxLength": 10
},
"ADDR_LINK": {
"title": "ADDR_LINK",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
},
"PARTNERS": {
"title": "PARTNERS",
"type": "array",
"description": "Communications Fields: SD Document Partner: WWW",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIPARNR",
"type": "object",
"properties": {
"PARTN_ROLE": {
"title": "PARTN_ROLE",
"type": "string",
"description": "",
"maxLength": 2
},
"PARTN_NUMB": {
"title": "PARTN_NUMB",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"TITLE": {
"title": "TITLE",
"type": "string",
"description": "",
"maxLength": 15
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_2": {
"title": "NAME_2",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_3": {
"title": "NAME_3",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_4": {
"title": "NAME_4",
"type": "string",
"description": "",
"maxLength": 35
},
"STREET": {
"title": "STREET",
"type": "string",
"description": "",
"maxLength": 35
},
"COUNTRY": {
"title": "COUNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"COUNTR_ISO": {
"title": "COUNTR_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"POSTL_CODE": {
"title": "POSTL_CODE",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_PCD": {
"title": "POBX_PCD",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_CTY": {
"title": "POBX_CTY",
"type": "string",
"description": "",
"maxLength": 35
},
"CITY": {
"title": "CITY",
"type": "string",
"description": "",
"maxLength": 35
},
"DISTRICT": {
"title": "DISTRICT",
"type": "string",
"description": "",
"maxLength": 35
},
"REGION": {
"title": "REGION",
"type": "string",
"description": "",
"maxLength": 3
},
"PO_BOX": {
"title": "PO_BOX",
"type": "string",
"description": "",
"maxLength": 10
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"TELEPHONE2": {
"title": "TELEPHONE2",
"type": "string",
"description": "",
"maxLength": 16
},
"TELEBOX": {
"title": "TELEBOX",
"type": "string",
"description": "",
"maxLength": 15
},
"FAX_NUMBER": {
"title": "FAX_NUMBER",
"type": "string",
"description": "",
"maxLength": 31
},
"TELETEX_NO": {
"title": "TELETEX_NO",
"type": "string",
"description": "",
"maxLength": 30
},
"TELEX_NO": {
"title": "TELEX_NO",
"type": "string",
"description": "",
"maxLength": 30
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"LANGU_ISO": {
"title": "LANGU_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"UNLOAD_PT": {
"title": "UNLOAD_PT",
"type": "string",
"description": "",
"maxLength": 25
},
"TRANSPZONE": {
"title": "TRANSPZONE",
"type": "string",
"description": "",
"maxLength": 10
},
"TAXJURCODE": {
"title": "TAXJURCODE",
"type": "string",
"description": "",
"maxLength": 15
},
"ADDRESS": {
"title": "ADDRESS",
"type": "string",
"description": "",
"maxLength": 10
},
"PRIV_ADDR": {
"title": "PRIV_ADDR",
"type": "string",
"description": "",
"maxLength": 10
},
"ADDR_TYPE": {
"title": "ADDR_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"ADDR_ORIG": {
"title": "ADDR_ORIG",
"type": "string",
"description": "",
"maxLength": 1
},
"ADDR_LINK": {
"title": "ADDR_LINK",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
},
"RETURN": {
"title": "RETURN",
"type": "array",
"description": "Return Code",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIRET2",
"type": "object",
"properties": {
"TYPE": {
"title": "TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"ID": {
"title": "ID",
"type": "string",
"description": "",
"maxLength": 20
},
"NUMBER": {
"title": "NUMBER",
"type": "integer",
"description": ""
},
"MESSAGE": {
"title": "MESSAGE",
"type": "string",
"description": "",
"maxLength": 220
},
"LOG_NO": {
"title": "LOG_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"LOG_MSG_NO": {
"title": "LOG_MSG_NO",
"type": "integer",
"description": ""
},
"MESSAGE_V1": {
"title": "MESSAGE_V1",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V2": {
"title": "MESSAGE_V2",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V3": {
"title": "MESSAGE_V3",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V4": {
"title": "MESSAGE_V4",
"type": "string",
"description": "",
"maxLength": 50
},
"PARAMETER": {
"title": "PARAMETER",
"type": "string",
"description": "",
"maxLength": 32
},
"ROW": {
"title": "ROW",
"type": "string",
"description": ""
},
"FIELD": {
"title": "FIELD",
"type": "string",
"description": "",
"maxLength": 30
},
"SYSTEM": {
"title": "SYSTEM",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
},
"SCHEDULE_LINES": {
"title": "SCHEDULE_LINES",
"type": "array",
"description": "Schedule Lines",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISCHDL",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"SCHED_LINE": {
"title": "SCHED_LINE",
"type": "integer",
"description": ""
},
"REQ_DATE": {
"title": "REQ_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_TIME": {
"title": "REQ_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "number",
"description": ""
},
"REQ_DLV_BL": {
"title": "REQ_DLV_BL",
"type": "string",
"description": "",
"maxLength": 2
},
"SCHED_TYPE": {
"title": "SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"TP_DATE": {
"title": "TP_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"MS_DATE": {
"title": "MS_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"LOAD_DATE": {
"title": "LOAD_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"GI_DATE": {
"title": "GI_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"TP_TIME": {
"title": "TP_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"MS_TIME": {
"title": "MS_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"LOAD_TIME": {
"title": "LOAD_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"GI_TIME": {
"title": "GI_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
},
"DLV_DATE": {
"title": "DLV_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REL_TYPE": {
"title": "REL_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"PLAN_SCHED_TYPE": {
"title": "PLAN_SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"SCHEDULE_LINESX": {
"title": "SCHEDULE_LINESX",
"type": "array",
"description": "Check Table for Schedule Lines",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISCHDLX",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"SCHED_LINE": {
"title": "SCHED_LINE",
"type": "integer",
"description": ""
},
"UPDATEFLAG": {
"title": "UPDATEFLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_DATE": {
"title": "REQ_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_TIME": {
"title": "REQ_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_DLV_BL": {
"title": "REQ_DLV_BL",
"type": "string",
"description": "",
"maxLength": 1
},
"SCHED_TYPE": {
"title": "SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_DATE": {
"title": "TP_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"MS_DATE": {
"title": "MS_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"LOAD_DATE": {
"title": "LOAD_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"GI_DATE": {
"title": "GI_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_TIME": {
"title": "TP_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"MS_TIME": {
"title": "MS_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"LOAD_TIME": {
"title": "LOAD_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"GI_TIME": {
"title": "GI_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"DLV_DATE": {
"title": "DLV_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"REL_TYPE": {
"title": "REL_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"PLAN_SCHED_TYPE": {
"title": "PLAN_SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
}
},
"required": [
"ORDER_HEADER_INX",
"SALESDOCUMENT"
]
}
Example:
{
"ORDER_HEADER_IN": {
"PURCH_NO_C": "testPO"
},
"ORDER_HEADER_INX": {
"UPDATEFLAG": "U",
"PURCH_NO_C": "X"
},
"SALESDOCUMENT": "0000075924",
"SIMULATION": "X"
}
HTTP status code 200
ERP SD sales order updated successfully.
HTTP status code 400
Request syntactically incorrect. Any details will be provided within the response payload.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 400,
"message": "There are validation problems, see details section for more information",
"moreInfo": "https://api.yaas.io/patterns/errortypes.html",
"type": "validation_violation",
"details": [
{
"field": "Accept-Language",
"message": "not a language",
"type": "invalid_header"
}
]
}
HTTP status code 401
Given request is unauthorized. Bad or expired token. Reauthenticate the user. Any details will be provided within the response payload.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 401,
"message": "Authorization: Unauthorized. Bearer TOKEN is invalid",
"type": "insufficient_credentials",
"moreInfo": "https://api.yaas.io/patterns/errortypes.html"
}
HTTP status code 403
Evaluated request scopes in access token are not sufficient and do not match required scopes.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 403,
"message": "Given request does not have required scopes in access token. It is not authorized to perform this operation.",
"type": "insufficient_permissions"
}
HTTP status code 408
Request timed out.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 408,
"type": "request_timeout",
"message": "The request timed out."
}
HTTP status code 500
An internal server error occurred.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 500,
"type": "internal_service_error",
"message": "An internal server error occurred."
}
/{tenant}/erpsalesorder/simulate
Simulate creation of an ERP SD sales order.
/{tenant}/erpsalesorder/simulate
Simulate creation of an ERP SD sales order via JsonRPC protocol to call BAPI_SALESORDER_SIMULATE. By calling the resource and the operation, the availability and pricing are determined and returned.
Required scope: hybris.sdorderproxy_manage
post /{tenant}/erpsalesorder/simulate
Simulate creation of an ERP SD sales order via JsonRPC protocol to call BAPI_SALESORDER_SIMULATE. By calling the resource and the operation, the availability and pricing are determined and returned.
Required scope: hybris.sdorderproxy_manage
URI Parameters
- Tenant: required (string - minLength: 3 - maxLength: 16 - pattern: [a-z][a-z0-9]+)
Stands for the "project" that requests this resource. Must match the "project" that is associated with the access token in the Authorization header.
Example:
myexampleshop
Headers
- Accept-Language: (string - repeat: true)
The value of the locale identifier of the language in which the attribute should be returned. Provide several values separated by comma, in order to specify fallback languages.
Example:
pl
- hybris-languages: (string - repeat: true)
Comma separated list of language identifiers for which the localization for an attribute should be provided.
Example:
en,pl,it
- Authorization: required (string)
Used to send a valid OAuth2 access token.
Example:
Bearer access_token
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "InputOfBAPI_SALESORDER_SIMULATE",
"type": "object",
"properties": {
"CONVERT_PARVW_AUART": {
"title": "CONVERT_PARVW_AUART",
"type": "string",
"description": "Conversion of partner function + order type",
"maxLength": 1,
"default": "SPACE"
},
"ORDER_HEADER_IN": {
"title": "BAPISDHEAD",
"type": "object",
"description": "Order Header",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"DOC_TYPE": {
"title": "DOC_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"COLLECT_NO": {
"title": "COLLECT_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"SALES_ORG": {
"title": "SALES_ORG",
"type": "string",
"description": "",
"maxLength": 4
},
"DISTR_CHAN": {
"title": "DISTR_CHAN",
"type": "string",
"description": "",
"maxLength": 2
},
"DIVISION": {
"title": "DIVISION",
"type": "string",
"description": "",
"maxLength": 2
},
"SALES_GRP": {
"title": "SALES_GRP",
"type": "string",
"description": "",
"maxLength": 3
},
"SALES_OFF": {
"title": "SALES_OFF",
"type": "string",
"description": "",
"maxLength": 4
},
"REQ_DATE_H": {
"title": "REQ_DATE_H",
"type": "string",
"description": "",
"maxLength": 10,
"pattern": "\\d{4}-\\d{2}-\\d{2}|\\s*"
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_NO": {
"title": "PURCH_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 4
},
"PO_SUPPLEM": {
"title": "PO_SUPPLEM",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 12
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 30
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"PRICE_GRP": {
"title": "PRICE_GRP",
"type": "string",
"description": "",
"maxLength": 2
},
"CUST_GROUP": {
"title": "CUST_GROUP",
"type": "string",
"description": "",
"maxLength": 2
},
"SALES_DIST": {
"title": "SALES_DIST",
"type": "string",
"description": "",
"maxLength": 6
},
"PRICE_LIST": {
"title": "PRICE_LIST",
"type": "string",
"description": "",
"maxLength": 2
},
"INCOTERMS1": {
"title": "INCOTERMS1",
"type": "string",
"description": "",
"maxLength": 3
},
"INCOTERMS2": {
"title": "INCOTERMS2",
"type": "string",
"description": "",
"maxLength": 28
},
"PMNTTRMS": {
"title": "PMNTTRMS",
"type": "string",
"description": "",
"maxLength": 4
},
"DLV_BLOCK": {
"title": "DLV_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"ORD_REASON": {
"title": "ORD_REASON",
"type": "string",
"description": "",
"maxLength": 3
},
"COMPL_DLV": {
"title": "COMPL_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICE_DATE": {
"title": "PRICE_DATE",
"type": "string",
"description": "",
"maxLength": 10,
"pattern": "\\d{4}-\\d{2}-\\d{2}|\\s*"
},
"QT_VALID_F": {
"title": "QT_VALID_F",
"type": "string",
"description": "",
"maxLength": 8
},
"QT_VALID_T": {
"title": "QT_VALID_T",
"type": "string",
"description": "",
"maxLength": 8
},
"CT_VALID_F": {
"title": "CT_VALID_F",
"type": "string",
"description": "",
"maxLength": 8
},
"CT_VALID_T": {
"title": "CT_VALID_T",
"type": "string",
"description": "",
"maxLength": 8
},
"CUST_GRP1": {
"title": "CUST_GRP1",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP2": {
"title": "CUST_GRP2",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP3": {
"title": "CUST_GRP3",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP4": {
"title": "CUST_GRP4",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP5": {
"title": "CUST_GRP5",
"type": "string",
"description": "",
"maxLength": 3
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 35
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 35
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 12
},
"SD_DOC_CAT": {
"title": "SD_DOC_CAT",
"type": "string",
"description": "",
"maxLength": 1
},
"SHIP_COND": {
"title": "SHIP_COND",
"type": "string",
"description": "",
"maxLength": 2
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURRENCY_ISO": {
"title": "CURRENCY_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_TYPE1": {
"title": "CD_TYPE1",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE1": {
"title": "CD_VALUE1",
"type": "number",
"description": ""
},
"CD_P_UNT1": {
"title": "CD_P_UNT1",
"type": "integer",
"description": ""
},
"CD_D_UNT1": {
"title": "CD_D_UNT1",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO1": {
"title": "CD_D_UISO1",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR1": {
"title": "CD_CURR1",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO1": {
"title": "CD_CU_ISO1",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_TYPE2": {
"title": "CD_TYPE2",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE2": {
"title": "CD_VALUE2",
"type": "number",
"description": ""
},
"CD_P_UNT2": {
"title": "CD_P_UNT2",
"type": "integer",
"description": ""
},
"CD_D_UNT2": {
"title": "CD_D_UNT2",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO2": {
"title": "CD_D_UISO2",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR2": {
"title": "CD_CURR2",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO2": {
"title": "CD_CU_ISO2",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_TYPE3": {
"title": "CD_TYPE3",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE3": {
"title": "CD_VALUE3",
"type": "number",
"description": ""
},
"CD_P_UNT3": {
"title": "CD_P_UNT3",
"type": "integer",
"description": ""
},
"CD_D_UNT3": {
"title": "CD_D_UNT3",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO3": {
"title": "CD_D_UISO3",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR3": {
"title": "CD_CURR3",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO3": {
"title": "CD_CU_ISO3",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_TYPE4": {
"title": "CD_TYPE4",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE4": {
"title": "CD_VALUE4",
"type": "number",
"description": ""
},
"CD_P_UNT4": {
"title": "CD_P_UNT4",
"type": "integer",
"description": ""
},
"CD_D_UNT4": {
"title": "CD_D_UNT4",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO4": {
"title": "CD_D_UISO4",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR4": {
"title": "CD_CURR4",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO4": {
"title": "CD_CU_ISO4",
"type": "string",
"description": "",
"maxLength": 3
},
"FKK_CONACCT": {
"title": "FKK_CONACCT",
"type": "string",
"description": "",
"maxLength": 12
},
"REF_DOC": {
"title": "REF_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"REF_DOC_CA": {
"title": "REF_DOC_CA",
"type": "string",
"description": "",
"maxLength": 1
},
"SEPA_MANDATE_ID": {
"title": "SEPA_MANDATE_ID",
"type": "string",
"description": "",
"maxLength": 35
}
},
"required": []
},
"EXTENSIONIN": {
"title": "EXTENSIONIN",
"type": "array",
"description": "Customer enhancment import",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIPAREX",
"type": "object",
"properties": {
"STRUCTURE": {
"title": "STRUCTURE",
"type": "string",
"description": "",
"maxLength": 30
},
"VALUEPART1": {
"title": "VALUEPART1",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART2": {
"title": "VALUEPART2",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART3": {
"title": "VALUEPART3",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART4": {
"title": "VALUEPART4",
"type": "string",
"description": "",
"maxLength": 240
}
},
"required": []
}
},
"MESSAGETABLE": {
"title": "MESSAGETABLE",
"type": "array",
"description": "Warning table (XVBFS)",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIRET2",
"type": "object",
"properties": {
"TYPE": {
"title": "TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"ID": {
"title": "ID",
"type": "string",
"description": "",
"maxLength": 20
},
"NUMBER": {
"title": "NUMBER",
"type": "integer",
"description": ""
},
"MESSAGE": {
"title": "MESSAGE",
"type": "string",
"description": "",
"maxLength": 220
},
"LOG_NO": {
"title": "LOG_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"LOG_MSG_NO": {
"title": "LOG_MSG_NO",
"type": "integer",
"description": ""
},
"MESSAGE_V1": {
"title": "MESSAGE_V1",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V2": {
"title": "MESSAGE_V2",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V3": {
"title": "MESSAGE_V3",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V4": {
"title": "MESSAGE_V4",
"type": "string",
"description": "",
"maxLength": 50
},
"PARAMETER": {
"title": "PARAMETER",
"type": "string",
"description": "",
"maxLength": 32
},
"ROW": {
"title": "ROW",
"type": "string",
"description": ""
},
"FIELD": {
"title": "FIELD",
"type": "string",
"description": "",
"maxLength": 30
},
"SYSTEM": {
"title": "SYSTEM",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
},
"ORDER_CCARD": {
"title": "ORDER_CCARD",
"type": "array",
"description": "Credit Card Data",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICCARD",
"type": "object",
"properties": {
"CC_TYPE": {
"title": "CC_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"CC_NUMBER": {
"title": "CC_NUMBER",
"type": "string",
"description": "",
"maxLength": 25
},
"CC_VALID_T": {
"title": "CC_VALID_T",
"type": "string",
"description": "",
"maxLength": 10
},
"CC_NAME": {
"title": "CC_NAME",
"type": "string",
"description": "",
"maxLength": 40
},
"BILLAMOUNT": {
"title": "BILLAMOUNT",
"type": "number",
"description": ""
},
"AUTH_FLAG": {
"title": "AUTH_FLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"AUTHAMOUNT": {
"title": "AUTHAMOUNT",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"AUTH_DATE": {
"title": "AUTH_DATE",
"type": "string",
"description": "",
"maxLength": 10
},
"AUTH_TIME": {
"title": "AUTH_TIME",
"type": "string",
"description": "",
"maxLength": 8
},
"AUTH_CC_NO": {
"title": "AUTH_CC_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"AUTH_REFNO": {
"title": "AUTH_REFNO",
"type": "string",
"description": "",
"maxLength": 15
},
"CC_REACT": {
"title": "CC_REACT",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_RE_AMOUNT": {
"title": "CC_RE_AMOUNT",
"type": "number",
"description": ""
},
"GL_ACCOUNT": {
"title": "GL_ACCOUNT",
"type": "string",
"description": "",
"maxLength": 10
},
"CC_STAT_EX": {
"title": "CC_STAT_EX",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_REACT_T": {
"title": "CC_REACT_T",
"type": "string",
"description": "",
"maxLength": 40
},
"VIRT_CARD": {
"title": "VIRT_CARD",
"type": "string",
"description": "",
"maxLength": 1
},
"MERCHIDCL": {
"title": "MERCHIDCL",
"type": "string",
"description": "",
"maxLength": 15
},
"PRE_AUTH": {
"title": "PRE_AUTH",
"type": "string",
"description": "CCPRE",
"maxLength": 1
},
"CC_SEQ_NO": {
"title": "CC_SEQ_NO",
"type": "string",
"description": "CCFOL",
"maxLength": 10
},
"AMOUNTCHAN": {
"title": "AMOUNTCHAN",
"type": "string",
"description": "CCVAL",
"maxLength": 1
},
"AUTHORTYPE": {
"title": "AUTHORTYPE",
"type": "string",
"description": "CCAUA",
"maxLength": 1
},
"DATAORIGIN": {
"title": "DATAORIGIN",
"type": "string",
"description": "CSOUR",
"maxLength": 1
},
"RADRCHECK1": {
"title": "RADRCHECK1",
"type": "string",
"description": "RCAVR_CC",
"maxLength": 4
},
"RADRCHECK2": {
"title": "RADRCHECK2",
"type": "string",
"description": "RCAVA_CC",
"maxLength": 4
},
"RADRCHECK3": {
"title": "RADRCHECK3",
"type": "string",
"description": "RCAVZ_CC",
"maxLength": 4
},
"RCARDCHECK": {
"title": "RCARDCHECK",
"type": "string",
"description": "RCRSP_CC",
"maxLength": 4
},
"CC_LIMITED": {
"title": "CC_LIMITED",
"type": "string",
"description": "CCBEG",
"maxLength": 1
},
"CC_VERIF_VALUE": {
"title": "CC_VERIF_VALUE",
"type": "string",
"description": "CVVAL",
"maxLength": 6
},
"CC_CTRL_FIELD": {
"title": "CC_CTRL_FIELD",
"type": "string",
"description": "CVVCT",
"maxLength": 1
},
"CC_IN_USE_ST": {
"title": "CC_IN_USE_ST",
"type": "string",
"description": "CVVST",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CCARD_EX": {
"title": "ORDER_CCARD_EX",
"type": "array",
"description": "Credit card data output",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICCARD_EX",
"type": "object",
"properties": {
"PAY_TYPE": {
"title": "PAY_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_TYPE": {
"title": "CC_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"CC_NUMBER": {
"title": "CC_NUMBER",
"type": "string",
"description": "",
"maxLength": 25
},
"CC_SEQ_NO": {
"title": "CC_SEQ_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"CC_VALID_F": {
"title": "CC_VALID_F",
"type": "string",
"description": "",
"maxLength": 8
},
"CC_VALID_T": {
"title": "CC_VALID_T",
"type": "string",
"description": "",
"maxLength": 8
},
"CC_NAME": {
"title": "CC_NAME",
"type": "string",
"description": "",
"maxLength": 40
},
"AUTHAMOUNT": {
"title": "AUTHAMOUNT",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"AUTH_DATE": {
"title": "AUTH_DATE",
"type": "string",
"description": "",
"maxLength": 10
},
"AUTH_TIME": {
"title": "AUTH_TIME",
"type": "string",
"description": "",
"maxLength": 8
},
"MERCHIDCL": {
"title": "MERCHIDCL",
"type": "string",
"description": "",
"maxLength": 15
},
"TERMINAL": {
"title": "TERMINAL",
"type": "string",
"description": "",
"maxLength": 10
},
"BILLAMOUNT": {
"title": "BILLAMOUNT",
"type": "number",
"description": ""
},
"CC_LI_AMOUNT": {
"title": "CC_LI_AMOUNT",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_AUTTH_NO": {
"title": "CC_AUTTH_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"BILLSTATUS": {
"title": "BILLSTATUS",
"type": "string",
"description": "",
"maxLength": 1
},
"DATAORIGIN": {
"title": "DATAORIGIN",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_SETTLED": {
"title": "CC_SETTLED",
"type": "string",
"description": "",
"maxLength": 1
},
"AUTH_REFNO": {
"title": "AUTH_REFNO",
"type": "string",
"description": "",
"maxLength": 15
},
"PTOFRCPT": {
"title": "PTOFRCPT",
"type": "string",
"description": "",
"maxLength": 10
},
"CC_REACT": {
"title": "CC_REACT",
"type": "string",
"description": "",
"maxLength": 1
},
"AUTH_FLAG": {
"title": "AUTH_FLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_PLAN": {
"title": "BILL_PLAN",
"type": "string",
"description": "",
"maxLength": 10
},
"BILL_PLANI": {
"title": "BILL_PLANI",
"type": "integer",
"description": ""
},
"CC_RE_AMOUNT": {
"title": "CC_RE_AMOUNT",
"type": "number",
"description": ""
},
"GL_ACCOUNT": {
"title": "GL_ACCOUNT",
"type": "string",
"description": "",
"maxLength": 10
},
"CC_STAT_EX": {
"title": "CC_STAT_EX",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_REACT_T": {
"title": "CC_REACT_T",
"type": "string",
"description": "",
"maxLength": 40
},
"RFCAUT": {
"title": "RFCAUT",
"type": "string",
"description": "",
"maxLength": 32
},
"AUT_SETINIT": {
"title": "AUT_SETINIT",
"type": "string",
"description": "",
"maxLength": 30
},
"AUT_SETINFO": {
"title": "AUT_SETINFO",
"type": "string",
"description": "",
"maxLength": 30
},
"PRE_AUTH": {
"title": "PRE_AUTH",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_BLOB": {
"title": "ORDER_CFGS_BLOB",
"type": "array",
"description": "Internal configuration data (SCE)",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUBLB",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"CONTEXT": {
"title": "CONTEXT",
"type": "string",
"description": "",
"maxLength": 250
}
},
"required": []
}
},
"ORDER_CFGS_INST": {
"title": "ORDER_CFGS_INST",
"type": "array",
"description": "Configuration: Instances",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUINS",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"OBJ_TYPE": {
"title": "OBJ_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"CLASS_TYPE": {
"title": "CLASS_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"OBJ_KEY": {
"title": "OBJ_KEY",
"type": "string",
"description": "",
"maxLength": 50
},
"OBJ_TXT": {
"title": "OBJ_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"QUANTITY": {
"title": "QUANTITY",
"type": "string",
"description": "",
"maxLength": 15
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"QUANTITY_UNIT": {
"title": "QUANTITY_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"COMPLETE": {
"title": "COMPLETE",
"type": "string",
"description": "",
"maxLength": 1
},
"CONSISTENT": {
"title": "CONSISTENT",
"type": "string",
"description": "",
"maxLength": 1
},
"OBJECT_GUID": {
"title": "OBJECT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"PERSIST_ID": {
"title": "PERSIST_ID",
"type": "string",
"description": "",
"maxLength": 32
},
"PERSIST_ID_TYPE": {
"title": "PERSIST_ID_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_PART_OF": {
"title": "ORDER_CFGS_PART_OF",
"type": "array",
"description": "Configuration: Part-of Specifications",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUPRT",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"PARENT_ID": {
"title": "PARENT_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"PART_OF_NO": {
"title": "PART_OF_NO",
"type": "string",
"description": "",
"maxLength": 4
},
"OBJ_TYPE": {
"title": "OBJ_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"CLASS_TYPE": {
"title": "CLASS_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"OBJ_KEY": {
"title": "OBJ_KEY",
"type": "string",
"description": "",
"maxLength": 50
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_RELEVANT": {
"title": "SALES_RELEVANT",
"type": "string",
"description": "",
"maxLength": 1
},
"PART_OF_GUID": {
"title": "PART_OF_GUID",
"type": "string",
"description": "",
"maxLength": 32
}
},
"required": []
}
},
"ORDER_CFGS_REF": {
"title": "ORDER_CFGS_REF",
"type": "array",
"description": "Configuration: Reference Data",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUCFG",
"type": "object",
"properties": {
"POSEX": {
"title": "POSEX",
"type": "string",
"description": "",
"maxLength": 6
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"ROOT_ID": {
"title": "ROOT_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"SCE": {
"title": "SCE",
"type": "string",
"description": "",
"maxLength": 1
},
"KBNAME": {
"title": "KBNAME",
"type": "string",
"description": "",
"maxLength": 30
},
"KBVERSION": {
"title": "KBVERSION",
"type": "string",
"description": "",
"maxLength": 30
},
"COMPLETE": {
"title": "COMPLETE",
"type": "string",
"description": "",
"maxLength": 1
},
"CONSISTENT": {
"title": "CONSISTENT",
"type": "string",
"description": "",
"maxLength": 1
},
"CFGINFO": {
"title": "CFGINFO",
"type": "string",
"description": "",
"maxLength": 250
},
"KBPROFILE": {
"title": "KBPROFILE",
"type": "string",
"description": "",
"maxLength": 30
},
"KBLANGUAGE": {
"title": "KBLANGUAGE",
"type": "string",
"description": "",
"maxLength": 1
},
"CBASE_ID": {
"title": "CBASE_ID",
"type": "string",
"description": "",
"maxLength": 32
},
"CBASE_ID_TYPE": {
"title": "CBASE_ID_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_VALUE": {
"title": "ORDER_CFGS_VALUE",
"type": "array",
"description": "Configuration: Characteristic Values",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUVAL",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"CHARC": {
"title": "CHARC",
"type": "string",
"description": "",
"maxLength": 40
},
"CHARC_TXT": {
"title": "CHARC_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"VALUE": {
"title": "VALUE",
"type": "string",
"description": "",
"maxLength": 40
},
"VALUE_TXT": {
"title": "VALUE_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"VALUE_TO": {
"title": "VALUE_TO",
"type": "string",
"description": "",
"maxLength": 40
},
"VALCODE": {
"title": "VALCODE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CONDITION_EX": {
"title": "ORDER_CONDITION_EX",
"type": "array",
"description": "Conditions Output",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICOND",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"COND_ST_NO": {
"title": "COND_ST_NO",
"type": "integer",
"description": ""
},
"SD000COND_COUNT": {
"title": "COND_COUNT",
"type": "integer",
"description": ""
},
"SD000COND_TYPE": {
"title": "COND_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"SD000COND_VALUE": {
"title": "COND_VALUE",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"COND_UNIT": {
"title": "COND_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"COND_P_UNT": {
"title": "COND_P_UNT",
"type": "number",
"description": ""
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_UNT_ISO": {
"title": "CD_UNT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
},
"APPLICATIO": {
"title": "APPLICATIO",
"type": "string",
"description": "",
"maxLength": 2
},
"CONPRICDAT": {
"title": "CONPRICDAT",
"type": "string",
"description": "",
"maxLength": 8
},
"CALCTYPCON": {
"title": "CALCTYPCON",
"type": "string",
"description": "",
"maxLength": 1
},
"CONBASEVAL": {
"title": "CONBASEVAL",
"type": "number",
"description": ""
},
"CONEXCHRAT": {
"title": "CONEXCHRAT",
"type": "number",
"description": ""
},
"NUMCONVERT": {
"title": "NUMCONVERT",
"type": "number",
"description": ""
},
"DENOMINATO": {
"title": "DENOMINATO",
"type": "number",
"description": ""
},
"CONDTYPE": {
"title": "CONDTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"STAT_CON": {
"title": "STAT_CON",
"type": "string",
"description": "",
"maxLength": 1
},
"SCALETYPE": {
"title": "SCALETYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCRUALS": {
"title": "ACCRUALS",
"type": "string",
"description": "",
"maxLength": 1
},
"CONINVOLST": {
"title": "CONINVOLST",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDORIGIN": {
"title": "CONDORIGIN",
"type": "string",
"description": "",
"maxLength": 1
},
"GROUPCOND": {
"title": "GROUPCOND",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_UPDAT": {
"title": "COND_UPDAT",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCESS_SEQ": {
"title": "ACCESS_SEQ",
"type": "integer",
"description": ""
},
"CONDCOUNT": {
"title": "CONDCOUNT",
"type": "integer",
"description": ""
},
"ROUNDOFFDI": {
"title": "ROUNDOFFDI",
"type": "number",
"description": ""
},
"CONDVALUE": {
"title": "CONDVALUE",
"type": "number",
"description": ""
},
"CURRENCY_2": {
"title": "CURRENCY_2",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO_2": {
"title": "CURR_ISO_2",
"type": "string",
"description": "",
"maxLength": 3
},
"CONDCNTRL": {
"title": "CONDCNTRL",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDISACTI": {
"title": "CONDISACTI",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDCLASS": {
"title": "CONDCLASS",
"type": "string",
"description": "",
"maxLength": 1
},
"FACTBASVAL": {
"title": "FACTBASVAL",
"type": "number",
"description": ""
},
"SCALEBASIN": {
"title": "SCALEBASIN",
"type": "string",
"description": "",
"maxLength": 1
},
"SCALBASVAL": {
"title": "SCALBASVAL",
"type": "number",
"description": ""
},
"UNITMEASUR": {
"title": "UNITMEASUR",
"type": "string",
"description": "",
"maxLength": 3
},
"ISO_UNIT": {
"title": "ISO_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"CURRENCKEY": {
"title": "CURRENCKEY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURRENISO": {
"title": "CURRENISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CONDINCOMP": {
"title": "CONDINCOMP",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDCONFIG": {
"title": "CONDCONFIG",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDCHAMAN": {
"title": "CONDCHAMAN",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_NO": {
"title": "COND_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"TAX_CODE": {
"title": "TAX_CODE",
"type": "string",
"description": "",
"maxLength": 2
},
"VARCOND": {
"title": "VARCOND",
"type": "string",
"description": "",
"maxLength": 26
},
"ACCOUNTKEY": {
"title": "ACCOUNTKEY",
"type": "string",
"description": "",
"maxLength": 3
},
"ACCOUNT_KE": {
"title": "ACCOUNT_KE",
"type": "string",
"description": "",
"maxLength": 3
},
"WT_WITHCD": {
"title": "WT_WITHCD",
"type": "string",
"description": "",
"maxLength": 2
},
"STRUCTCOND": {
"title": "STRUCTCOND",
"type": "string",
"description": "",
"maxLength": 1
},
"FACTCONBAS": {
"title": "FACTCONBAS",
"type": "number",
"description": ""
},
"CONDCOINHD": {
"title": "CONDCOINHD",
"type": "integer",
"description": ""
}
},
"required": []
}
},
"ORDER_INCOMPLETE": {
"title": "ORDER_INCOMPLETE",
"type": "array",
"description": "",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIINCOMP",
"type": "object",
"properties": {
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"SCHED_LINE": {
"title": "SCHED_LINE",
"type": "integer",
"description": ""
},
"PARTN_ROLE": {
"title": "PARTN_ROLE",
"type": "string",
"description": "",
"maxLength": 2
},
"TABLE_NAME": {
"title": "TABLE_NAME",
"type": "string",
"description": "",
"maxLength": 30
},
"FIELD_NAME": {
"title": "FIELD_NAME",
"type": "string",
"description": "",
"maxLength": 30
},
"FIELD_TEXT": {
"title": "FIELD_TEXT",
"type": "string",
"description": "",
"maxLength": 40
}
},
"required": []
}
},
"ORDER_ITEMS_IN": {
"title": "ORDER_ITEMS_IN",
"type": "array",
"description": "Item Data Input",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIITEMIN",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"HG_LV_ITEM": {
"title": "HG_LV_ITEM",
"type": "integer",
"description": ""
},
"PO_ITM_NO": {
"title": "PO_ITM_NO",
"type": "string",
"description": "",
"maxLength": 6
},
"MATERIAL": {
"title": "MATERIAL",
"type": "string",
"description": "",
"maxLength": 18
},
"CUST_MAT": {
"title": "CUST_MAT",
"type": "string",
"description": "",
"maxLength": 22
},
"BATCH": {
"title": "BATCH",
"type": "string",
"description": "",
"maxLength": 10
},
"DLV_GROUP": {
"title": "DLV_GROUP",
"type": "integer",
"description": ""
},
"PART_DLV": {
"title": "PART_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"REASON_REJ": {
"title": "REASON_REJ",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_DATE": {
"title": "BILL_DATE",
"type": "string",
"description": "",
"maxLength": 10
},
"PLANT": {
"title": "PLANT",
"type": "string",
"description": "",
"maxLength": 4
},
"STORE_LOC": {
"title": "STORE_LOC",
"type": "string",
"description": "",
"maxLength": 4
},
"TARGET_QTY": {
"title": "TARGET_QTY",
"type": "integer",
"description": ""
},
"TARGET_QU": {
"title": "TARGET_QU",
"type": "string",
"description": "",
"maxLength": 3
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "integer",
"description": ""
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"ITEM_CATEG": {
"title": "ITEM_CATEG",
"type": "string",
"description": "",
"maxLength": 4
},
"SHORT_TEXT": {
"title": "SHORT_TEXT",
"type": "string",
"description": "",
"maxLength": 40
},
"REQ_DATE": {
"title": "REQ_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_TIME": {
"title": "REQ_TIME",
"type": "string",
"description": "",
"maxLength": 8
},
"COND_TYPE": {
"title": "COND_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"COND_VALUE": {
"title": "COND_VALUE",
"type": "number",
"description": ""
},
"COND_P_UNT": {
"title": "COND_P_UNT",
"type": "integer",
"description": ""
},
"COND_D_UNT": {
"title": "COND_D_UNT",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP1": {
"title": "PRC_GROUP1",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP2": {
"title": "PRC_GROUP2",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP3": {
"title": "PRC_GROUP3",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP4": {
"title": "PRC_GROUP4",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP5": {
"title": "PRC_GROUP5",
"type": "string",
"description": "",
"maxLength": 3
},
"PROD_HIERA": {
"title": "PROD_HIERA",
"type": "string",
"description": "",
"maxLength": 18
},
"MATL_GROUP": {
"title": "MATL_GROUP",
"type": "string",
"description": "",
"maxLength": 9
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 35
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 12
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 35
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 12
},
"PO_ITM_NO_S": {
"title": "PO_ITM_NO_S",
"type": "string",
"description": "",
"maxLength": 6
},
"COND_VAL1": {
"title": "COND_VAL1",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"T_UNIT_ISO": {
"title": "T_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"S_UNIT_ISO": {
"title": "S_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_UNT_ISO": {
"title": "CD_UNT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_MAT35": {
"title": "CUST_MAT35",
"type": "string",
"description": "",
"maxLength": 35
},
"INCOTERMS1": {
"title": "INCOTERMS1",
"type": "string",
"description": "",
"maxLength": 3
},
"INCOTERMS2": {
"title": "INCOTERMS2",
"type": "string",
"description": "",
"maxLength": 28
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 3
},
"ASSORT_MOD": {
"title": "ASSORT_MOD",
"type": "string",
"description": "",
"maxLength": 18
},
"VAL_CONTR": {
"title": "VAL_CONTR",
"type": "string",
"description": "",
"maxLength": 10
},
"VAL_CON_I": {
"title": "VAL_CON_I",
"type": "integer",
"description": ""
},
"REF_DOC": {
"title": "REF_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"REF_DOC_IT": {
"title": "REF_DOC_IT",
"type": "integer",
"description": ""
},
"REF_DOC_CA": {
"title": "REF_DOC_CA",
"type": "string",
"description": "",
"maxLength": 1
},
"CD_TYPE2": {
"title": "CD_TYPE2",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE2": {
"title": "CD_VALUE2",
"type": "number",
"description": ""
},
"CD_P_UNT2": {
"title": "CD_P_UNT2",
"type": "integer",
"description": ""
},
"CD_D_UNT2": {
"title": "CD_D_UNT2",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO2": {
"title": "CD_D_UISO2",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR2": {
"title": "CD_CURR2",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO2": {
"title": "CD_CU_ISO2",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_TYPE3": {
"title": "CD_TYPE3",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE3": {
"title": "CD_VALUE3",
"type": "number",
"description": ""
},
"CD_P_UNT3": {
"title": "CD_P_UNT3",
"type": "integer",
"description": ""
},
"CD_D_UNT3": {
"title": "CD_D_UNT3",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO3": {
"title": "CD_D_UISO3",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR3": {
"title": "CD_CURR3",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO3": {
"title": "CD_CU_ISO3",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_TYPE4": {
"title": "CD_TYPE4",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE4": {
"title": "CD_VALUE4",
"type": "number",
"description": ""
},
"CD_P_UNT4": {
"title": "CD_P_UNT4",
"type": "integer",
"description": ""
},
"CD_D_UNT4": {
"title": "CD_D_UNT4",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO4": {
"title": "CD_D_UISO4",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR4": {
"title": "CD_CURR4",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO4": {
"title": "CD_CU_ISO4",
"type": "string",
"description": "",
"maxLength": 3
},
"MAT_EXT": {
"title": "MAT_EXT",
"type": "string",
"description": "",
"maxLength": 40
},
"MAT_GUID": {
"title": "MAT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_VERS": {
"title": "MAT_VERS",
"type": "string",
"description": "",
"maxLength": 10
},
"ALTERN_BOM": {
"title": "ALTERN_BOM",
"type": "string",
"description": "",
"maxLength": 2
},
"FKK_CONACCT": {
"title": "FKK_CONACCT",
"type": "string",
"description": "",
"maxLength": 12
},
"EAN_UPC": {
"title": "EAN_UPC",
"type": "string",
"description": "",
"maxLength": 18
},
"SHIP_POINT": {
"title": "SHIP_POINT",
"type": "string",
"description": "",
"maxLength": 4
},
"PRODCAT": {
"title": "PRODCAT",
"type": "string",
"description": "",
"maxLength": 10
},
"SGT_RCAT": {
"title": "SGT_RCAT",
"type": "string",
"description": "",
"maxLength": 16
}
},
"required": []
}
},
"ORDER_ITEMS_OUT": {
"title": "ORDER_ITEMS_OUT",
"type": "array",
"description": "Item Data Output",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIITEMEX",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"PO_ITM_NO": {
"title": "PO_ITM_NO",
"type": "string",
"description": "",
"maxLength": 6
},
"MATERIAL": {
"title": "MATERIAL",
"type": "string",
"description": "",
"maxLength": 18
},
"MAT_ENTRD": {
"title": "MAT_ENTRD",
"type": "string",
"description": "",
"maxLength": 18
},
"SHORT_TEXT": {
"title": "SHORT_TEXT",
"type": "string",
"description": "",
"maxLength": 40
},
"NET_VALUE": {
"title": "NET_VALUE",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"SD000SUBTOTAL_1": {
"title": "SUBTOTAL_1",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_2": {
"title": "SUBTOTAL_2",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_3": {
"title": "SUBTOTAL_3",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_4": {
"title": "SUBTOTAL_4",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_5": {
"title": "SUBTOTAL_5",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_6": {
"title": "SUBTOTAL_6",
"type": "number",
"description": ""
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"QTY_REQ_DT": {
"title": "QTY_REQ_DT",
"type": "integer",
"description": ""
},
"DLV_DATE": {
"title": "DLV_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"REPL_TIME": {
"title": "REPL_TIME",
"type": "integer",
"description": ""
},
"CONFIGURED": {
"title": "CONFIGURED",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 35
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 12
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 35
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 12
},
"PO_ITM_NO_S": {
"title": "PO_ITM_NO_S",
"type": "string",
"description": "",
"maxLength": 6
},
"NET_VALUE1": {
"title": "NET_VALUE1",
"type": "number",
"description": ""
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"S_UNIT_ISO": {
"title": "S_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "number",
"description": ""
},
"PLANT": {
"title": "PLANT",
"type": "string",
"description": "",
"maxLength": 4
},
"TX_DOC_CUR": {
"title": "TX_DOC_CUR",
"type": "number",
"description": ""
},
"MAT_EXT": {
"title": "MAT_EXT",
"type": "string",
"description": "",
"maxLength": 40
},
"MAT_GUID": {
"title": "MAT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_VERS": {
"title": "MAT_VERS",
"type": "string",
"description": "",
"maxLength": 10
},
"MAT_E_EXT": {
"title": "MAT_E_EXT",
"type": "string",
"description": "",
"maxLength": 40
},
"MAT_E_GUID": {
"title": "MAT_E_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_E_VERS": {
"title": "MAT_E_VERS",
"type": "string",
"description": "",
"maxLength": 10
},
"TARGET_QTY": {
"title": "TARGET_QTY",
"type": "number",
"description": ""
},
"TARGET_QU": {
"title": "TARGET_QU",
"type": "string",
"description": "",
"maxLength": 3
},
"T_UNIT_ISO": {
"title": "T_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"ITEM_CATEG": {
"title": "ITEM_CATEG",
"type": "string",
"description": "",
"maxLength": 4
},
"SHIP_POINT": {
"title": "SHIP_POINT",
"type": "string",
"description": "",
"maxLength": 4
},
"HG_LV_ITEM": {
"title": "HG_LV_ITEM",
"type": "integer",
"description": ""
},
"CUST_MAT": {
"title": "CUST_MAT",
"type": "string",
"description": "",
"maxLength": 35
},
"PART_DLV": {
"title": "PART_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"REASON_REJ": {
"title": "REASON_REJ",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"STGE_LOC": {
"title": "STGE_LOC",
"type": "string",
"description": "",
"maxLength": 4
},
"PROD_HIER": {
"title": "PROD_HIER",
"type": "string",
"description": "",
"maxLength": 18
},
"MATL_GROUP": {
"title": "MATL_GROUP",
"type": "string",
"description": "",
"maxLength": 9
},
"SUBTOTAL1": {
"title": "SUBTOTAL1",
"type": "number",
"description": ""
},
"SUBTOTAL2": {
"title": "SUBTOTAL2",
"type": "number",
"description": ""
},
"SUBTOTAL3": {
"title": "SUBTOTAL3",
"type": "number",
"description": ""
},
"SUBTOTAL4": {
"title": "SUBTOTAL4",
"type": "number",
"description": ""
},
"SUBTOTAL5": {
"title": "SUBTOTAL5",
"type": "number",
"description": ""
},
"SUBTOTAL6": {
"title": "SUBTOTAL6",
"type": "number",
"description": ""
}
},
"required": []
}
},
"ORDER_PARTNERS": {
"title": "ORDER_PARTNERS",
"type": "array",
"description": "Partners",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIPARTNR",
"type": "object",
"properties": {
"PARTN_ROLE": {
"title": "PARTN_ROLE",
"type": "string",
"description": "",
"maxLength": 2
},
"PARTN_NUMB": {
"title": "PARTN_NUMB",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"TITLE": {
"title": "TITLE",
"type": "string",
"description": "",
"maxLength": 15
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_2": {
"title": "NAME_2",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_3": {
"title": "NAME_3",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_4": {
"title": "NAME_4",
"type": "string",
"description": "",
"maxLength": 35
},
"STREET": {
"title": "STREET",
"type": "string",
"description": "",
"maxLength": 35
},
"COUNTRY": {
"title": "COUNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"COUNTRY_ISO": {
"title": "COUNTRY_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"POSTL_CODE": {
"title": "POSTL_CODE",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_PCD": {
"title": "POBX_PCD",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_CTY": {
"title": "POBX_CTY",
"type": "string",
"description": "",
"maxLength": 35
},
"CITY": {
"title": "CITY",
"type": "string",
"description": "",
"maxLength": 35
},
"DISTRICT": {
"title": "DISTRICT",
"type": "string",
"description": "",
"maxLength": 35
},
"REGION": {
"title": "REGION",
"type": "string",
"description": "",
"maxLength": 3
},
"PO_BOX": {
"title": "PO_BOX",
"type": "string",
"description": "",
"maxLength": 10
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"TELEPHONE2": {
"title": "TELEPHONE2",
"type": "string",
"description": "",
"maxLength": 16
},
"TELEBOX": {
"title": "TELEBOX",
"type": "string",
"description": "",
"maxLength": 15
},
"FAX_NUMBER": {
"title": "FAX_NUMBER",
"type": "string",
"description": "",
"maxLength": 31
},
"TELETEX_NO": {
"title": "TELETEX_NO",
"type": "string",
"description": "",
"maxLength": 30
},
"TELEX_NO": {
"title": "TELEX_NO",
"type": "string",
"description": "",
"maxLength": 30
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"LANGU_ISO": {
"title": "LANGU_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"UNLOAD_PT": {
"title": "UNLOAD_PT",
"type": "string",
"description": "",
"maxLength": 25
},
"TRANSPZONE": {
"title": "TRANSPZONE",
"type": "string",
"description": "",
"maxLength": 10
},
"TAXJURCODE": {
"title": "TAXJURCODE",
"type": "string",
"description": "",
"maxLength": 15
},
"ADDRESS": {
"title": "ADDRESS",
"type": "string",
"description": "",
"maxLength": 10
},
"PRIV_ADDR": {
"title": "PRIV_ADDR",
"type": "string",
"description": "",
"maxLength": 10
},
"ADDR_TYPE": {
"title": "ADDR_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"ADDR_ORIG": {
"title": "ADDR_ORIG",
"type": "string",
"description": "",
"maxLength": 1
},
"ADDR_LINK": {
"title": "ADDR_LINK",
"type": "string",
"description": "",
"maxLength": 10
},
"VAT_REG_NO": {
"title": "VAT_REG_NO",
"type": "string",
"description": "",
"maxLength": 20
}
},
"required": []
}
},
"ORDER_SCHEDULE_EX": {
"title": "ORDER_SCHEDULE_EX",
"type": "array",
"description": "Schedule line data output",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDHEDU",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"SCHED_LINE": {
"title": "SCHED_LINE",
"type": "integer",
"description": ""
},
"SCHED_TYPE": {
"title": "SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"RELFORDEL": {
"title": "RELFORDEL",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_DATE": {
"title": "REQ_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"REQ_TIME": {
"title": "REQ_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "number",
"description": ""
},
"CONFIR_QTY": {
"title": "CONFIR_QTY",
"type": "number",
"description": ""
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"ISOCODUNIT": {
"title": "ISOCODUNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"REQ_QTY1": {
"title": "REQ_QTY1",
"type": "number",
"description": ""
},
"BASE_UOM": {
"title": "BASE_UOM",
"type": "string",
"description": "",
"maxLength": 3
},
"ISOBASUNIT": {
"title": "ISOBASUNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"REQ_DATE1": {
"title": "REQ_DATE1",
"type": "string",
"description": "",
"maxLength": 8
},
"REQ_TYPE": {
"title": "REQ_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"PLTYPE": {
"title": "PLTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"BUSIDOCNR": {
"title": "BUSIDOCNR",
"type": "string",
"description": "",
"maxLength": 10
},
"BUSIITNR": {
"title": "BUSIITNR",
"type": "integer",
"description": ""
},
"SCHED_LIN1": {
"title": "SCHED_LIN1",
"type": "integer",
"description": ""
},
"EARL_DATE": {
"title": "EARL_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"MAINT_REQ": {
"title": "MAINT_REQ",
"type": "integer",
"description": ""
},
"PREQ_NO": {
"title": "PREQ_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_TYPE": {
"title": "PO_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"DOC_CAT": {
"title": "DOC_CAT",
"type": "string",
"description": "",
"maxLength": 1
},
"CONF_STAT": {
"title": "CONF_STAT",
"type": "string",
"description": "",
"maxLength": 1
},
"IR_IND": {
"title": "IR_IND",
"type": "string",
"description": "",
"maxLength": 1
},
"RETURNDATE": {
"title": "RETURNDATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_DATE": {
"title": "TP_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"MS_DATE": {
"title": "MS_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"LOAD_DATE": {
"title": "LOAD_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"GI_DATE": {
"title": "GI_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"CORR_QTY": {
"title": "CORR_QTY",
"type": "number",
"description": ""
},
"REQ_DLV_BL": {
"title": "REQ_DLV_BL",
"type": "string",
"description": "",
"maxLength": 2
},
"GRP_DEFIN": {
"title": "GRP_DEFIN",
"type": "integer",
"description": ""
},
"RELEASTYP": {
"title": "RELEASTYP",
"type": "string",
"description": "",
"maxLength": 1
},
"FORCAST_NR": {
"title": "FORCAST_NR",
"type": "integer",
"description": ""
},
"COMMIT_QTY": {
"title": "COMMIT_QTY",
"type": "number",
"description": ""
},
"SIZE2": {
"title": "SIZE2",
"type": "number",
"description": ""
},
"SIZE3": {
"title": "SIZE3",
"type": "number",
"description": ""
},
"UNIT_MEAS": {
"title": "UNIT_MEAS",
"type": "string",
"description": "",
"maxLength": 3
},
"ISO_ROMEI": {
"title": "ISO_ROMEI",
"type": "string",
"description": "",
"maxLength": 3
},
"FORMULAKEY": {
"title": "FORMULAKEY",
"type": "string",
"description": "",
"maxLength": 2
},
"SALESQTYNR": {
"title": "SALESQTYNR",
"type": "number",
"description": ""
},
"SALESQTYDE": {
"title": "SALESQTYDE",
"type": "number",
"description": ""
},
"AVAIL_CON": {
"title": "AVAIL_CON",
"type": "string",
"description": "",
"maxLength": 1
},
"MOVE_TYPE": {
"title": "MOVE_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"PREQ_ITEM": {
"title": "PREQ_ITEM",
"type": "integer",
"description": ""
},
"LINTYP_EDI": {
"title": "LINTYP_EDI",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDERID": {
"title": "ORDERID",
"type": "string",
"description": "",
"maxLength": 12
},
"PLANORDNR": {
"title": "PLANORDNR",
"type": "string",
"description": "",
"maxLength": 10
},
"BOMEXPL_NO": {
"title": "BOMEXPL_NO",
"type": "string",
"description": "",
"maxLength": 8
},
"CUSTCHSTAT": {
"title": "CUSTCHSTAT",
"type": "string",
"description": "",
"maxLength": 17
},
"GURANTEED": {
"title": "GURANTEED",
"type": "number",
"description": ""
},
"MS_TIME": {
"title": "MS_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"TP_TIME": {
"title": "TP_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"LOAD_TIME": {
"title": "LOAD_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"GI_TIME": {
"title": "GI_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"ROUTESCHED": {
"title": "ROUTESCHED",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
},
"ORDER_SCHEDULE_IN": {
"title": "ORDER_SCHEDULE_IN",
"type": "array",
"description": "Schedule Line Data Input",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISCHDL",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"SCHED_LINE": {
"title": "SCHED_LINE",
"type": "integer",
"description": ""
},
"REQ_DATE": {
"title": "REQ_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_TIME": {
"title": "REQ_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "number",
"description": ""
},
"REQ_DLV_BL": {
"title": "REQ_DLV_BL",
"type": "string",
"description": "",
"maxLength": 2
},
"SCHED_TYPE": {
"title": "SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"TP_DATE": {
"title": "TP_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"MS_DATE": {
"title": "MS_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"LOAD_DATE": {
"title": "LOAD_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"GI_DATE": {
"title": "GI_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"TP_TIME": {
"title": "TP_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"MS_TIME": {
"title": "MS_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"LOAD_TIME": {
"title": "LOAD_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"GI_TIME": {
"title": "GI_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
},
"DLV_DATE": {
"title": "DLV_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REL_TYPE": {
"title": "REL_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"PLAN_SCHED_TYPE": {
"title": "PLAN_SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"PARTNERADDRESSES": {
"title": "PARTNERADDRESSES",
"type": "array",
"description": "BAPI Reference Structure for Addresses (Org./Company)",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIADDR1",
"type": "object",
"properties": {
"ADDR_NO": {
"title": "ADDR_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"FORMOFADDR": {
"title": "FORMOFADDR",
"type": "string",
"description": "",
"maxLength": 20
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 40
},
"NAME_2": {
"title": "NAME_2",
"type": "string",
"description": "",
"maxLength": 40
},
"NAME_3": {
"title": "NAME_3",
"type": "string",
"description": "",
"maxLength": 40
},
"NAME_4": {
"title": "NAME_4",
"type": "string",
"description": "",
"maxLength": 40
},
"C_O_NAME": {
"title": "C_O_NAME",
"type": "string",
"description": "",
"maxLength": 40
},
"CITY": {
"title": "CITY",
"type": "string",
"description": "",
"maxLength": 40
},
"DISTRICT": {
"title": "DISTRICT",
"type": "string",
"description": "",
"maxLength": 40
},
"CITY_NO": {
"title": "CITY_NO",
"type": "string",
"description": "",
"maxLength": 12
},
"POSTL_COD1": {
"title": "POSTL_COD1",
"type": "string",
"description": "",
"maxLength": 10
},
"POSTL_COD2": {
"title": "POSTL_COD2",
"type": "string",
"description": "",
"maxLength": 10
},
"POSTL_COD3": {
"title": "POSTL_COD3",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_BOX": {
"title": "PO_BOX",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_BOX_CIT": {
"title": "PO_BOX_CIT",
"type": "string",
"description": "",
"maxLength": 40
},
"DELIV_DIS": {
"title": "DELIV_DIS",
"type": "string",
"description": "",
"maxLength": 15
},
"STREET": {
"title": "STREET",
"type": "string",
"description": "",
"maxLength": 40
},
"STREET_NO": {
"title": "STREET_NO",
"type": "string",
"description": "",
"maxLength": 12
},
"STR_ABBR": {
"title": "STR_ABBR",
"type": "string",
"description": "",
"maxLength": 2
},
"HOUSE_NO": {
"title": "HOUSE_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"STR_SUPPL1": {
"title": "STR_SUPPL1",
"type": "string",
"description": "",
"maxLength": 40
},
"STR_SUPPL2": {
"title": "STR_SUPPL2",
"type": "string",
"description": "",
"maxLength": 40
},
"LOCATION": {
"title": "LOCATION",
"type": "string",
"description": "",
"maxLength": 40
},
"BUILDING": {
"title": "BUILDING",
"type": "string",
"description": "",
"maxLength": 10
},
"FLOOR": {
"title": "FLOOR",
"type": "string",
"description": "",
"maxLength": 10
},
"ROOM_NO": {
"title": "ROOM_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"COUNTRY": {
"title": "COUNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"REGION": {
"title": "REGION",
"type": "string",
"description": "",
"maxLength": 3
},
"SORT1": {
"title": "SORT1",
"type": "string",
"description": "",
"maxLength": 20
},
"SORT2": {
"title": "SORT2",
"type": "string",
"description": "",
"maxLength": 20
},
"TIME_ZONE": {
"title": "TIME_ZONE",
"type": "string",
"description": "",
"maxLength": 6
},
"TAXJURCODE": {
"title": "TAXJURCODE",
"type": "string",
"description": "",
"maxLength": 15
},
"ADR_NOTES": {
"title": "ADR_NOTES",
"type": "string",
"description": "",
"maxLength": 50
},
"COMM_TYPE": {
"title": "COMM_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"TEL1_NUMBR": {
"title": "TEL1_NUMBR",
"type": "string",
"description": "",
"maxLength": 30
},
"TEL1_EXT": {
"title": "TEL1_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"FAX_NUMBER": {
"title": "FAX_NUMBER",
"type": "string",
"description": "",
"maxLength": 30
},
"FAX_EXTENS": {
"title": "FAX_EXTENS",
"type": "string",
"description": "",
"maxLength": 10
},
"STREET_LNG": {
"title": "STREET_LNG",
"type": "string",
"description": "",
"maxLength": 60
},
"DISTRCT_NO": {
"title": "DISTRCT_NO",
"type": "string",
"description": "",
"maxLength": 8
},
"CHCKSTATUS": {
"title": "CHCKSTATUS",
"type": "string",
"description": "",
"maxLength": 1
},
"PBOXCIT_NO": {
"title": "PBOXCIT_NO",
"type": "string",
"description": "",
"maxLength": 12
},
"TRANSPZONE": {
"title": "TRANSPZONE",
"type": "string",
"description": "",
"maxLength": 10
},
"HOUSE_NO2": {
"title": "HOUSE_NO2",
"type": "string",
"description": "",
"maxLength": 10
},
"E_MAIL": {
"title": "E_MAIL",
"type": "string",
"description": "",
"maxLength": 241
},
"STR_SUPPL3": {
"title": "STR_SUPPL3",
"type": "string",
"description": "",
"maxLength": 40
},
"TITLE": {
"title": "TITLE",
"type": "string",
"description": "",
"maxLength": 30
},
"COUNTRYISO": {
"title": "COUNTRYISO",
"type": "string",
"description": "",
"maxLength": 2
},
"LANGU_ISO": {
"title": "LANGU_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"BUILD_LONG": {
"title": "BUILD_LONG",
"type": "string",
"description": "",
"maxLength": 20
},
"REGIOGROUP": {
"title": "REGIOGROUP",
"type": "string",
"description": "",
"maxLength": 8
},
"HOME_CITY": {
"title": "HOME_CITY",
"type": "string",
"description": "",
"maxLength": 40
},
"HOMECITYNO": {
"title": "HOMECITYNO",
"type": "string",
"description": "",
"maxLength": 12
},
"PCODE1_EXT": {
"title": "PCODE1_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"PCODE2_EXT": {
"title": "PCODE2_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"PCODE3_EXT": {
"title": "PCODE3_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_W_O_NO": {
"title": "PO_W_O_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_BOX_REG": {
"title": "PO_BOX_REG",
"type": "string",
"description": "",
"maxLength": 3
},
"POBOX_CTRY": {
"title": "POBOX_CTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"PO_CTRYISO": {
"title": "PO_CTRYISO",
"type": "string",
"description": "",
"maxLength": 2
},
"HOMEPAGE": {
"title": "HOMEPAGE",
"type": "string",
"description": "",
"maxLength": 132
},
"DONT_USE_S": {
"title": "DONT_USE_S",
"type": "string",
"description": "",
"maxLength": 4
},
"DONT_USE_P": {
"title": "DONT_USE_P",
"type": "string",
"description": "",
"maxLength": 4
},
"HOUSE_NO3": {
"title": "HOUSE_NO3",
"type": "string",
"description": "",
"maxLength": 10
},
"LANGU_CR": {
"title": "LANGU_CR",
"type": "string",
"description": "",
"maxLength": 1
},
"LANGUCRISO": {
"title": "LANGUCRISO",
"type": "string",
"description": "",
"maxLength": 2
},
"PO_BOX_LOBBY": {
"title": "PO_BOX_LOBBY",
"type": "string",
"description": "",
"maxLength": 40
},
"DELI_SERV_TYPE": {
"title": "DELI_SERV_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"DELI_SERV_NUMBER": {
"title": "DELI_SERV_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"URI_TYPE": {
"title": "URI_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"COUNTY_CODE": {
"title": "COUNTY_CODE",
"type": "string",
"description": "",
"maxLength": 8
},
"COUNTY": {
"title": "COUNTY",
"type": "string",
"description": "",
"maxLength": 40
},
"TOWNSHIP_CODE": {
"title": "TOWNSHIP_CODE",
"type": "string",
"description": "",
"maxLength": 8
},
"TOWNSHIP": {
"title": "TOWNSHIP",
"type": "string",
"description": "",
"maxLength": 40
}
},
"required": []
}
}
},
"required": [
"ORDER_HEADER_IN",
"ORDER_PARTNERS"
]
}
Example:
{
"ORDER_HEADER_IN": {
"DOC_TYPE": "TA",
"SALES_ORG": "1000",
"DISTR_CHAN": "10",
"DIVISION": "10"
},
"ORDER_ITEMS_IN": [
{
"ITM_NUMBER": 0,
"HG_LV_ITEM": 0,
"MATERIAL": "H15",
"DLV_GROUP": 0,
"TARGET_QTY": 1,
"REQ_QTY": 1,
"REQ_TIME": "02:14:00",
"COND_VALUE": 0,
"COND_P_UNT": 0
}
],
"ORDER_PARTNERS": [
{
"PARTN_ROLE": "AG",
"PARTN_NUMB": "0000100012",
"ITM_NUMBER": 0
},
{
"PARTN_ROLE": "RE",
"PARTN_NUMB": "0000100012",
"ITM_NUMBER": 0
}
]
}
HTTP status code 200
OK
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "OutputOfBAPI_SALESORDER_SIMULATE",
"type": "object",
"properties": {
"BILLING_PARTY": {
"title": "BAPIPAYER",
"type": "object",
"description": "Payer",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"PAYER": {
"title": "PAYER",
"type": "string",
"description": "",
"maxLength": 10
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 35
},
"STREET": {
"title": "STREET",
"type": "string",
"description": "",
"maxLength": 30
},
"PO_BOX": {
"title": "PO_BOX",
"type": "string",
"description": "",
"maxLength": 10
},
"POSTL_CODE": {
"title": "POSTL_CODE",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_PCD": {
"title": "POBX_PCD",
"type": "string",
"description": "",
"maxLength": 10
},
"CITY": {
"title": "CITY",
"type": "string",
"description": "",
"maxLength": 25
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"COUNTRY": {
"title": "COUNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"C_CTR_AREA": {
"title": "C_CTR_AREA",
"type": "string",
"description": "",
"maxLength": 4
},
"CRED_ACCNT": {
"title": "CRED_ACCNT",
"type": "string",
"description": "",
"maxLength": 10
},
"CRED_LIMIT": {
"title": "CRED_LIMIT",
"type": "number",
"description": ""
},
"ORDER_VALS": {
"title": "ORDER_VALS",
"type": "number",
"description": ""
},
"RCVBL_VALS": {
"title": "RCVBL_VALS",
"type": "number",
"description": ""
},
"CRED_LIAB": {
"title": "CRED_LIAB",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"MN_INVOICE": {
"title": "MN_INVOICE",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_SCHED": {
"title": "BILL_SCHED",
"type": "string",
"description": "",
"maxLength": 2
},
"LIST_SCHED": {
"title": "LIST_SCHED",
"type": "string",
"description": "",
"maxLength": 2
},
"VAL_LIMIT": {
"title": "VAL_LIMIT",
"type": "number",
"description": ""
},
"ACCNT_ASGN": {
"title": "ACCNT_ASGN",
"type": "string",
"description": "",
"maxLength": 2
},
"PMNTTRMS": {
"title": "PMNTTRMS",
"type": "string",
"description": "",
"maxLength": 4
},
"ADD_VAL_DY": {
"title": "ADD_VAL_DY",
"type": "integer",
"description": ""
},
"FIX_VAL_DY": {
"title": "FIX_VAL_DY",
"type": "string",
"description": "",
"maxLength": 8
},
"PROD_PROP": {
"title": "PROD_PROP",
"type": "string",
"description": "",
"maxLength": 10
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"ORDER_BLCK": {
"title": "ORDER_BLCK",
"type": "string",
"description": "",
"maxLength": 2
},
"VAT_REG_NO": {
"title": "VAT_REG_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"VAT_CNTRY": {
"title": "VAT_CNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"TAX_CLASS1": {
"title": "TAX_CLASS1",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"REBATE_REL": {
"title": "REBATE_REL",
"type": "string",
"description": "",
"maxLength": 1
},
"REBATE_FRM": {
"title": "REBATE_FRM",
"type": "string",
"description": "",
"maxLength": 8
},
"CRED_GROUP": {
"title": "CRED_GROUP",
"type": "string",
"description": "",
"maxLength": 4
},
"REPR_GROUP": {
"title": "REPR_GROUP",
"type": "string",
"description": "",
"maxLength": 3
},
"RISK_CATEG": {
"title": "RISK_CATEG",
"type": "string",
"description": "",
"maxLength": 3
},
"TRADE_ID": {
"title": "TRADE_ID",
"type": "string",
"description": "",
"maxLength": 6
}
},
"required": []
},
"RETURN": {
"title": "BAPIRETURN",
"type": "object",
"description": "Error Text",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"TYPE": {
"title": "TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"CODE": {
"title": "CODE",
"type": "string",
"description": "",
"maxLength": 5
},
"MESSAGE": {
"title": "MESSAGE",
"type": "string",
"description": "",
"maxLength": 220
},
"LOG_NO": {
"title": "LOG_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"LOG_MSG_NO": {
"title": "LOG_MSG_NO",
"type": "integer",
"description": ""
},
"MESSAGE_V1": {
"title": "MESSAGE_V1",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V2": {
"title": "MESSAGE_V2",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V3": {
"title": "MESSAGE_V3",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V4": {
"title": "MESSAGE_V4",
"type": "string",
"description": "",
"maxLength": 50
}
},
"required": []
},
"SALESDOCUMENT": {
"title": "SALESDOCUMENT",
"type": "string",
"description": "Sales and Distribution Document Number",
"maxLength": 10,
"default": ""
},
"ORDER_HEADERS_OUT": {
"title": "ORDER_HEADERS_OUT",
"type": "array",
"description": "Order Headers for Document Numbers",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDHD",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"REC_DATE": {
"title": "REC_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"REC_TIME": {
"title": "REC_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"CREATED_BY": {
"title": "CREATED_BY",
"type": "string",
"description": "",
"maxLength": 12
},
"QT_VALID_F": {
"title": "QT_VALID_F",
"type": "string",
"description": "",
"maxLength": 8
},
"QT_VALID_T": {
"title": "QT_VALID_T",
"type": "string",
"description": "",
"maxLength": 8
},
"DOC_DATE": {
"title": "DOC_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"SD_DOC_CAT": {
"title": "SD_DOC_CAT",
"type": "string",
"description": "",
"maxLength": 1
},
"TRAN_GROUP": {
"title": "TRAN_GROUP",
"type": "string",
"description": "",
"maxLength": 1
},
"DOC_TYPE": {
"title": "DOC_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"ORD_REASON": {
"title": "ORD_REASON",
"type": "string",
"description": "",
"maxLength": 3
},
"WAR_DATE": {
"title": "WAR_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"SD_COL_NUM": {
"title": "SD_COL_NUM",
"type": "string",
"description": "",
"maxLength": 10
},
"DLV_BLOCK": {
"title": "DLV_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"NET_VAL_HD": {
"title": "NET_VAL_HD",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURREN_ISO": {
"title": "CURREN_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"SALES_ORG": {
"title": "SALES_ORG",
"type": "string",
"description": "",
"maxLength": 4
},
"DISTR_CHAN": {
"title": "DISTR_CHAN",
"type": "string",
"description": "",
"maxLength": 2
},
"DIVISION": {
"title": "DIVISION",
"type": "string",
"description": "",
"maxLength": 2
},
"SALES_GRP": {
"title": "SALES_GRP",
"type": "string",
"description": "",
"maxLength": 3
},
"SALES_OFF": {
"title": "SALES_OFF",
"type": "string",
"description": "",
"maxLength": 4
},
"BUS_AREA": {
"title": "BUS_AREA",
"type": "string",
"description": "",
"maxLength": 4
},
"CT_AREA": {
"title": "CT_AREA",
"type": "string",
"description": "",
"maxLength": 4
},
"CT_VALID_F": {
"title": "CT_VALID_F",
"type": "string",
"description": "",
"maxLength": 8
},
"CT_VALID_T": {
"title": "CT_VALID_T",
"type": "string",
"description": "",
"maxLength": 8
},
"CONDITIONS": {
"title": "CONDITIONS",
"type": "string",
"description": "",
"maxLength": 10
},
"REQ_DATE_H": {
"title": "REQ_DATE_H",
"type": "string",
"description": "",
"maxLength": 8
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"COMPL_DLV": {
"title": "COMPL_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"DOC_CLASS": {
"title": "DOC_CLASS",
"type": "string",
"description": "",
"maxLength": 9
},
"DOC_INDIC": {
"title": "DOC_INDIC",
"type": "string",
"description": "",
"maxLength": 1
},
"SD_PRIC_PR": {
"title": "SD_PRIC_PR",
"type": "string",
"description": "",
"maxLength": 6
},
"SHIP_COND": {
"title": "SHIP_COND",
"type": "string",
"description": "",
"maxLength": 2
},
"ORDBILLTYP": {
"title": "ORDBILLTYP",
"type": "string",
"description": "",
"maxLength": 4
},
"ORD_PROBAB": {
"title": "ORD_PROBAB",
"type": "integer",
"description": ""
},
"SEAR_PRPR": {
"title": "SEAR_PRPR",
"type": "string",
"description": "",
"maxLength": 40
},
"PURCH_NO": {
"title": "PURCH_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 4
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_SUPPLEM": {
"title": "PO_SUPPLEM",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 12
},
"ORDERER_NA": {
"title": "ORDERER_NA",
"type": "string",
"description": "",
"maxLength": 35
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"DUN_COUNT": {
"title": "DUN_COUNT",
"type": "number",
"description": ""
},
"DUN_DATE": {
"title": "DUN_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"SOLD_TO": {
"title": "SOLD_TO",
"type": "string",
"description": "",
"maxLength": 10
},
"COSTCENTER": {
"title": "COSTCENTER",
"type": "string",
"description": "",
"maxLength": 10
},
"UPDATE_GRP": {
"title": "UPDATE_GRP",
"type": "string",
"description": "",
"maxLength": 6
},
"STAT_CURR": {
"title": "STAT_CURR",
"type": "string",
"description": "",
"maxLength": 5
},
"ISOSTATCUR": {
"title": "ISOSTATCUR",
"type": "string",
"description": "",
"maxLength": 3
},
"CH_ON": {
"title": "CH_ON",
"type": "string",
"description": "",
"maxLength": 8
},
"CUST_GRP1": {
"title": "CUST_GRP1",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP2": {
"title": "CUST_GRP2",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP3": {
"title": "CUST_GRP3",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP4": {
"title": "CUST_GRP4",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP5": {
"title": "CUST_GRP5",
"type": "string",
"description": "",
"maxLength": 3
},
"AGREE_COND": {
"title": "AGREE_COND",
"type": "string",
"description": "",
"maxLength": 10
},
"CO_AREA": {
"title": "CO_AREA",
"type": "string",
"description": "",
"maxLength": 4
},
"WBS_ELEM": {
"title": "WBS_ELEM",
"type": "integer",
"description": ""
},
"EXCHG_RATE": {
"title": "EXCHG_RATE",
"type": "string",
"description": "",
"maxLength": 4
},
"C_CTR_AREA": {
"title": "C_CTR_AREA",
"type": "string",
"description": "",
"maxLength": 4
},
"CRED_ACCNT": {
"title": "CRED_ACCNT",
"type": "string",
"description": "",
"maxLength": 10
},
"CRED_GROUP": {
"title": "CRED_GROUP",
"type": "string",
"description": "",
"maxLength": 4
},
"REPR_GROUP": {
"title": "REPR_GROUP",
"type": "string",
"description": "",
"maxLength": 3
},
"RISK_CATEG": {
"title": "RISK_CATEG",
"type": "string",
"description": "",
"maxLength": 3
},
"CURR_CRED": {
"title": "CURR_CRED",
"type": "string",
"description": "",
"maxLength": 5
},
"ISOCURRCRE": {
"title": "ISOCURRCRE",
"type": "string",
"description": "",
"maxLength": 3
},
"REL_DAT_DD": {
"title": "REL_DAT_DD",
"type": "string",
"description": "",
"maxLength": 8
},
"NEXT_CHDAT": {
"title": "NEXT_CHDAT",
"type": "string",
"description": "",
"maxLength": 8
},
"NEXT_DATE": {
"title": "NEXT_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"REL_CREDIT": {
"title": "REL_CREDIT",
"type": "number",
"description": ""
},
"HI_TYPE_PR": {
"title": "HI_TYPE_PR",
"type": "string",
"description": "",
"maxLength": 1
},
"DLVSCHEDUS": {
"title": "DLVSCHEDUS",
"type": "string",
"description": "",
"maxLength": 3
},
"PLAN_DLV": {
"title": "PLAN_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC": {
"title": "REF_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"OB_JNR_HD": {
"title": "OB_JNR_HD",
"type": "string",
"description": "",
"maxLength": 22
},
"COMP_CODE": {
"title": "COMP_CODE",
"type": "string",
"description": "",
"maxLength": 4
},
"ALT_TAX_CL": {
"title": "ALT_TAX_CL",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC_L": {
"title": "REF_DOC_L",
"type": "string",
"description": "",
"maxLength": 16
},
"ASS_NUMBER": {
"title": "ASS_NUMBER",
"type": "string",
"description": "",
"maxLength": 18
},
"DOC_CAT_SD": {
"title": "DOC_CAT_SD",
"type": "string",
"description": "",
"maxLength": 1
},
"KALSM_CH": {
"title": "KALSM_CH",
"type": "string",
"description": "",
"maxLength": 6
},
"ACC_PERIOD": {
"title": "ACC_PERIOD",
"type": "integer",
"description": ""
},
"ORDERID": {
"title": "ORDERID",
"type": "string",
"description": "",
"maxLength": 12
},
"NOTIF_NO": {
"title": "NOTIF_NO",
"type": "string",
"description": "",
"maxLength": 12
},
"MASTER_CON": {
"title": "MASTER_CON",
"type": "string",
"description": "",
"maxLength": 10
},
"REF_PROC": {
"title": "REF_PROC",
"type": "string",
"description": "",
"maxLength": 4
},
"CHECK_PART": {
"title": "CHECK_PART",
"type": "string",
"description": "",
"maxLength": 1
},
"PICK_UP_DA": {
"title": "PICK_UP_DA",
"type": "string",
"description": "",
"maxLength": 8
},
"PICK_UP_T1": {
"title": "PICK_UP_T1",
"type": "string",
"description": "",
"maxLength": 6
},
"PICK_UP_T2": {
"title": "PICK_UP_T2",
"type": "string",
"description": "",
"maxLength": 6
},
"NUM_PAY_CA": {
"title": "NUM_PAY_CA",
"type": "string",
"description": "",
"maxLength": 10
},
"LINE_TIME": {
"title": "LINE_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"TAX_DEST_CT": {
"title": "TAX_DEST_CT",
"type": "string",
"description": "",
"maxLength": 3
},
"ISOTAXDEST": {
"title": "ISOTAXDEST",
"type": "string",
"description": "",
"maxLength": 2
},
"TAX_DEPART": {
"title": "TAX_DEPART",
"type": "string",
"description": "",
"maxLength": 3
},
"ISOTAXDEPA": {
"title": "ISOTAXDEPA",
"type": "string",
"description": "",
"maxLength": 2
},
"EU_TRIANG": {
"title": "EU_TRIANG",
"type": "string",
"description": "",
"maxLength": 1
},
"MAST_CONTR": {
"title": "MAST_CONTR",
"type": "string",
"description": "",
"maxLength": 1
},
"CML_QTY_DA": {
"title": "CML_QTY_DA",
"type": "string",
"description": "",
"maxLength": 8
},
"MS_DATE": {
"title": "MS_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"VERSION": {
"title": "VERSION",
"type": "string",
"description": "",
"maxLength": 12
},
"REF_DOC_L_LONG": {
"title": "REF_DOC_L_LONG",
"type": "string",
"description": "",
"maxLength": 35
},
"CRM_GUID": {
"title": "CRM_GUID",
"type": "string",
"description": "",
"maxLength": 70
}
},
"required": []
}
},
"SHIP_TO_PARTY": {
"title": "BAPISHIPTO",
"type": "object",
"description": "Ship-To Party",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"SHIP_TO": {
"title": "SHIP_TO",
"type": "string",
"description": "",
"maxLength": 10
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 35
},
"STREET": {
"title": "STREET",
"type": "string",
"description": "",
"maxLength": 30
},
"PO_BOX": {
"title": "PO_BOX",
"type": "string",
"description": "",
"maxLength": 10
},
"POSTL_CODE": {
"title": "POSTL_CODE",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_PCD": {
"title": "POBX_PCD",
"type": "string",
"description": "",
"maxLength": 10
},
"CITY": {
"title": "CITY",
"type": "string",
"description": "",
"maxLength": 25
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"DEST_CNTRY": {
"title": "DEST_CNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"TRNSP_ZONE": {
"title": "TRNSP_ZONE",
"type": "string",
"description": "",
"maxLength": 10
},
"TRAIN_STAT": {
"title": "TRAIN_STAT",
"type": "string",
"description": "",
"maxLength": 25
},
"EXPR_STAT": {
"title": "EXPR_STAT",
"type": "string",
"description": "",
"maxLength": 25
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"UNLOAD_PT": {
"title": "UNLOAD_PT",
"type": "string",
"description": "",
"maxLength": 25
},
"FAC_CALEND": {
"title": "FAC_CALEND",
"type": "string",
"description": "",
"maxLength": 2
},
"RECV_HOURS": {
"title": "RECV_HOURS",
"type": "string",
"description": "",
"maxLength": 3
},
"MO_AM_FROM": {
"title": "MO_AM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"MO_AM_UNTL": {
"title": "MO_AM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"MO_PM_FROM": {
"title": "MO_PM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"MO_PM_UNTL": {
"title": "MO_PM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"TU_AM_FROM": {
"title": "TU_AM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"TU_AM_UNTL": {
"title": "TU_AM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"TU_PM_FROM": {
"title": "TU_PM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"TU_PM_UNTL": {
"title": "TU_PM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"WE_AM_FROM": {
"title": "WE_AM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"WR_AM_UNTL": {
"title": "WR_AM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"WE_PM_FROM": {
"title": "WE_PM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"WE_PM_UNTL": {
"title": "WE_PM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"TH_AM_FROM": {
"title": "TH_AM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"TH_AM_UNTL": {
"title": "TH_AM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"TH_PM_FROM": {
"title": "TH_PM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"TH_PM_UNTL": {
"title": "TH_PM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"FR_AM_FROM": {
"title": "FR_AM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"FR_AM_UNTL": {
"title": "FR_AM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"FR_PM_FROM": {
"title": "FR_PM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"FR_PM_UNTL": {
"title": "FR_PM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"SA_AM_FROM": {
"title": "SA_AM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"SA_AM_UNTL": {
"title": "SA_AM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"SA_PM_FROM": {
"title": "SA_PM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"SA_PM_UNTL": {
"title": "SA_PM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"SU_AM_FROM": {
"title": "SU_AM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"SU_AM_UNTL": {
"title": "SU_AM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"SU_PM_FROM": {
"title": "SU_PM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"SU_PM_UNTL": {
"title": "SU_PM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"VAT_REG_NO": {
"title": "VAT_REG_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"TAX_CLASS1": {
"title": "TAX_CLASS1",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"REGION": {
"title": "REGION",
"type": "string",
"description": "",
"maxLength": 3
},
"COUNTY_CDE": {
"title": "COUNTY_CDE",
"type": "string",
"description": "",
"maxLength": 3
},
"CITY_CODE": {
"title": "CITY_CODE",
"type": "string",
"description": "",
"maxLength": 4
},
"TAXJURCODE": {
"title": "TAXJURCODE",
"type": "string",
"description": "",
"maxLength": 15
},
"CTRDATA_OK": {
"title": "CTRDATA_OK",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_PLANT": {
"title": "DLV_PLANT",
"type": "string",
"description": "",
"maxLength": 4
},
"DLV_BLOCK": {
"title": "DLV_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"ORDER_BLCK": {
"title": "ORDER_BLCK",
"type": "string",
"description": "",
"maxLength": 2
},
"PROD_PROP": {
"title": "PROD_PROP",
"type": "string",
"description": "",
"maxLength": 10
},
"SHIP_COND": {
"title": "SHIP_COND",
"type": "string",
"description": "",
"maxLength": 2
},
"ACC_1_TIME": {
"title": "ACC_1_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCNT_GRP": {
"title": "ACCNT_GRP",
"type": "string",
"description": "",
"maxLength": 4
},
"DESC_PARTN": {
"title": "DESC_PARTN",
"type": "string",
"description": "",
"maxLength": 30
},
"FY_VARIANT": {
"title": "FY_VARIANT",
"type": "string",
"description": "",
"maxLength": 2
},
"PROD_ATTR1": {
"title": "PROD_ATTR1",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_ATTR2": {
"title": "PROD_ATTR2",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_ATTR3": {
"title": "PROD_ATTR3",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_ATTR4": {
"title": "PROD_ATTR4",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_ATTR5": {
"title": "PROD_ATTR5",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_ATTR6": {
"title": "PROD_ATTR6",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_ATTR7": {
"title": "PROD_ATTR7",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_ATTR8": {
"title": "PROD_ATTR8",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_ATTR9": {
"title": "PROD_ATTR9",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_ATTRA": {
"title": "PROD_ATTRA",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
},
"SOLD_TO_PARTY": {
"title": "BAPISOLDTO",
"type": "object",
"description": "Sold-to party",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"SOLD_TO": {
"title": "SOLD_TO",
"type": "string",
"description": "",
"maxLength": 10
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 35
},
"STREET": {
"title": "STREET",
"type": "string",
"description": "",
"maxLength": 30
},
"PO_BOX": {
"title": "PO_BOX",
"type": "string",
"description": "",
"maxLength": 10
},
"POSTL_CODE": {
"title": "POSTL_CODE",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_PCD": {
"title": "POBX_PCD",
"type": "string",
"description": "",
"maxLength": 10
},
"CITY": {
"title": "CITY",
"type": "string",
"description": "",
"maxLength": 25
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"COUNTRY": {
"title": "COUNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"STAT_GROUP": {
"title": "STAT_GROUP",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDER_BLCK": {
"title": "ORDER_BLCK",
"type": "string",
"description": "",
"maxLength": 2
},
"PRC_PROCED": {
"title": "PRC_PROCED",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_GROUP": {
"title": "CUST_GROUP",
"type": "string",
"description": "",
"maxLength": 2
},
"SALES_DIST": {
"title": "SALES_DIST",
"type": "string",
"description": "",
"maxLength": 6
},
"PRICE_GRP": {
"title": "PRICE_GRP",
"type": "string",
"description": "",
"maxLength": 2
},
"PRICE_LIST": {
"title": "PRICE_LIST",
"type": "string",
"description": "",
"maxLength": 2
},
"INCOTERMS1": {
"title": "INCOTERMS1",
"type": "string",
"description": "",
"maxLength": 3
},
"INCOTERMS2": {
"title": "INCOTERMS2",
"type": "string",
"description": "",
"maxLength": 28
},
"COMPL_DLV": {
"title": "COMPL_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"MAX_PL_DLV": {
"title": "MAX_PL_DLV",
"type": "number",
"description": ""
},
"ORDER_COMB": {
"title": "ORDER_COMB",
"type": "string",
"description": "",
"maxLength": 1
},
"BTCH_SPLIT": {
"title": "BTCH_SPLIT",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_PRIO": {
"title": "DLV_PRIO",
"type": "integer",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"EXCHG_RATE": {
"title": "EXCHG_RATE",
"type": "string",
"description": "",
"maxLength": 4
},
"SHIP_COND": {
"title": "SHIP_COND",
"type": "string",
"description": "",
"maxLength": 2
},
"PART_DLV": {
"title": "PART_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDER_PROB": {
"title": "ORDER_PROB",
"type": "integer",
"description": ""
},
"DLV_BLOCK": {
"title": "DLV_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"PROD_PROP": {
"title": "PROD_PROP",
"type": "string",
"description": "",
"maxLength": 10
},
"ACC_1_TIME": {
"title": "ACC_1_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_OFF": {
"title": "SALES_OFF",
"type": "string",
"description": "",
"maxLength": 4
},
"SALES_GRP": {
"title": "SALES_GRP",
"type": "string",
"description": "",
"maxLength": 3
},
"VAT_REG_NO": {
"title": "VAT_REG_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"TAX_CLASS1": {
"title": "TAX_CLASS1",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"COMPANY_ID": {
"title": "COMPANY_ID",
"type": "string",
"description": "",
"maxLength": 6
}
},
"required": []
},
"EXTENSIONIN": {
"title": "EXTENSIONIN",
"type": "array",
"description": "Customer enhancment import",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIPAREX",
"type": "object",
"properties": {
"STRUCTURE": {
"title": "STRUCTURE",
"type": "string",
"description": "",
"maxLength": 30
},
"VALUEPART1": {
"title": "VALUEPART1",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART2": {
"title": "VALUEPART2",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART3": {
"title": "VALUEPART3",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART4": {
"title": "VALUEPART4",
"type": "string",
"description": "",
"maxLength": 240
}
},
"required": []
}
},
"MESSAGETABLE": {
"title": "MESSAGETABLE",
"type": "array",
"description": "Warning table (XVBFS)",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIRET2",
"type": "object",
"properties": {
"TYPE": {
"title": "TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"ID": {
"title": "ID",
"type": "string",
"description": "",
"maxLength": 20
},
"NUMBER": {
"title": "NUMBER",
"type": "integer",
"description": ""
},
"MESSAGE": {
"title": "MESSAGE",
"type": "string",
"description": "",
"maxLength": 220
},
"LOG_NO": {
"title": "LOG_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"LOG_MSG_NO": {
"title": "LOG_MSG_NO",
"type": "integer",
"description": ""
},
"MESSAGE_V1": {
"title": "MESSAGE_V1",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V2": {
"title": "MESSAGE_V2",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V3": {
"title": "MESSAGE_V3",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V4": {
"title": "MESSAGE_V4",
"type": "string",
"description": "",
"maxLength": 50
},
"PARAMETER": {
"title": "PARAMETER",
"type": "string",
"description": "",
"maxLength": 32
},
"ROW": {
"title": "ROW",
"type": "string",
"description": ""
},
"FIELD": {
"title": "FIELD",
"type": "string",
"description": "",
"maxLength": 30
},
"SYSTEM": {
"title": "SYSTEM",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
},
"ORDER_CCARD": {
"title": "ORDER_CCARD",
"type": "array",
"description": "Credit Card Data",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICCARD",
"type": "object",
"properties": {
"CC_TYPE": {
"title": "CC_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"CC_NUMBER": {
"title": "CC_NUMBER",
"type": "string",
"description": "",
"maxLength": 25
},
"CC_VALID_T": {
"title": "CC_VALID_T",
"type": "string",
"description": "",
"maxLength": 10
},
"CC_NAME": {
"title": "CC_NAME",
"type": "string",
"description": "",
"maxLength": 40
},
"BILLAMOUNT": {
"title": "BILLAMOUNT",
"type": "number",
"description": ""
},
"AUTH_FLAG": {
"title": "AUTH_FLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"AUTHAMOUNT": {
"title": "AUTHAMOUNT",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"AUTH_DATE": {
"title": "AUTH_DATE",
"type": "string",
"description": "",
"maxLength": 10
},
"AUTH_TIME": {
"title": "AUTH_TIME",
"type": "string",
"description": "",
"maxLength": 8
},
"AUTH_CC_NO": {
"title": "AUTH_CC_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"AUTH_REFNO": {
"title": "AUTH_REFNO",
"type": "string",
"description": "",
"maxLength": 15
},
"CC_REACT": {
"title": "CC_REACT",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_RE_AMOUNT": {
"title": "CC_RE_AMOUNT",
"type": "number",
"description": ""
},
"GL_ACCOUNT": {
"title": "GL_ACCOUNT",
"type": "string",
"description": "",
"maxLength": 10
},
"CC_STAT_EX": {
"title": "CC_STAT_EX",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_REACT_T": {
"title": "CC_REACT_T",
"type": "string",
"description": "",
"maxLength": 40
},
"VIRT_CARD": {
"title": "VIRT_CARD",
"type": "string",
"description": "",
"maxLength": 1
},
"MERCHIDCL": {
"title": "MERCHIDCL",
"type": "string",
"description": "",
"maxLength": 15
},
"PRE_AUTH": {
"title": "PRE_AUTH",
"type": "string",
"description": "CCPRE",
"maxLength": 1
},
"CC_SEQ_NO": {
"title": "CC_SEQ_NO",
"type": "string",
"description": "CCFOL",
"maxLength": 10
},
"AMOUNTCHAN": {
"title": "AMOUNTCHAN",
"type": "string",
"description": "CCVAL",
"maxLength": 1
},
"AUTHORTYPE": {
"title": "AUTHORTYPE",
"type": "string",
"description": "CCAUA",
"maxLength": 1
},
"DATAORIGIN": {
"title": "DATAORIGIN",
"type": "string",
"description": "CSOUR",
"maxLength": 1
},
"RADRCHECK1": {
"title": "RADRCHECK1",
"type": "string",
"description": "RCAVR_CC",
"maxLength": 4
},
"RADRCHECK2": {
"title": "RADRCHECK2",
"type": "string",
"description": "RCAVA_CC",
"maxLength": 4
},
"RADRCHECK3": {
"title": "RADRCHECK3",
"type": "string",
"description": "RCAVZ_CC",
"maxLength": 4
},
"RCARDCHECK": {
"title": "RCARDCHECK",
"type": "string",
"description": "RCRSP_CC",
"maxLength": 4
},
"CC_LIMITED": {
"title": "CC_LIMITED",
"type": "string",
"description": "CCBEG",
"maxLength": 1
},
"CC_VERIF_VALUE": {
"title": "CC_VERIF_VALUE",
"type": "string",
"description": "CVVAL",
"maxLength": 6
},
"CC_CTRL_FIELD": {
"title": "CC_CTRL_FIELD",
"type": "string",
"description": "CVVCT",
"maxLength": 1
},
"CC_IN_USE_ST": {
"title": "CC_IN_USE_ST",
"type": "string",
"description": "CVVST",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CCARD_EX": {
"title": "ORDER_CCARD_EX",
"type": "array",
"description": "Credit card data output",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICCARD_EX",
"type": "object",
"properties": {
"PAY_TYPE": {
"title": "PAY_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_TYPE": {
"title": "CC_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"CC_NUMBER": {
"title": "CC_NUMBER",
"type": "string",
"description": "",
"maxLength": 25
},
"CC_SEQ_NO": {
"title": "CC_SEQ_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"CC_VALID_F": {
"title": "CC_VALID_F",
"type": "string",
"description": "",
"maxLength": 8
},
"CC_VALID_T": {
"title": "CC_VALID_T",
"type": "string",
"description": "",
"maxLength": 8
},
"CC_NAME": {
"title": "CC_NAME",
"type": "string",
"description": "",
"maxLength": 40
},
"AUTHAMOUNT": {
"title": "AUTHAMOUNT",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"AUTH_DATE": {
"title": "AUTH_DATE",
"type": "string",
"description": "",
"maxLength": 10
},
"AUTH_TIME": {
"title": "AUTH_TIME",
"type": "string",
"description": "",
"maxLength": 8
},
"MERCHIDCL": {
"title": "MERCHIDCL",
"type": "string",
"description": "",
"maxLength": 15
},
"TERMINAL": {
"title": "TERMINAL",
"type": "string",
"description": "",
"maxLength": 10
},
"BILLAMOUNT": {
"title": "BILLAMOUNT",
"type": "number",
"description": ""
},
"CC_LI_AMOUNT": {
"title": "CC_LI_AMOUNT",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_AUTTH_NO": {
"title": "CC_AUTTH_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"BILLSTATUS": {
"title": "BILLSTATUS",
"type": "string",
"description": "",
"maxLength": 1
},
"DATAORIGIN": {
"title": "DATAORIGIN",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_SETTLED": {
"title": "CC_SETTLED",
"type": "string",
"description": "",
"maxLength": 1
},
"AUTH_REFNO": {
"title": "AUTH_REFNO",
"type": "string",
"description": "",
"maxLength": 15
},
"PTOFRCPT": {
"title": "PTOFRCPT",
"type": "string",
"description": "",
"maxLength": 10
},
"CC_REACT": {
"title": "CC_REACT",
"type": "string",
"description": "",
"maxLength": 1
},
"AUTH_FLAG": {
"title": "AUTH_FLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_PLAN": {
"title": "BILL_PLAN",
"type": "string",
"description": "",
"maxLength": 10
},
"BILL_PLANI": {
"title": "BILL_PLANI",
"type": "integer",
"description": ""
},
"CC_RE_AMOUNT": {
"title": "CC_RE_AMOUNT",
"type": "number",
"description": ""
},
"GL_ACCOUNT": {
"title": "GL_ACCOUNT",
"type": "string",
"description": "",
"maxLength": 10
},
"CC_STAT_EX": {
"title": "CC_STAT_EX",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_REACT_T": {
"title": "CC_REACT_T",
"type": "string",
"description": "",
"maxLength": 40
},
"RFCAUT": {
"title": "RFCAUT",
"type": "string",
"description": "",
"maxLength": 32
},
"AUT_SETINIT": {
"title": "AUT_SETINIT",
"type": "string",
"description": "",
"maxLength": 30
},
"AUT_SETINFO": {
"title": "AUT_SETINFO",
"type": "string",
"description": "",
"maxLength": 30
},
"PRE_AUTH": {
"title": "PRE_AUTH",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_BLOB": {
"title": "ORDER_CFGS_BLOB",
"type": "array",
"description": "Internal configuration data (SCE)",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUBLB",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"CONTEXT": {
"title": "CONTEXT",
"type": "string",
"description": "",
"maxLength": 250
}
},
"required": []
}
},
"ORDER_CFGS_INST": {
"title": "ORDER_CFGS_INST",
"type": "array",
"description": "Configuration: Instances",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUINS",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"OBJ_TYPE": {
"title": "OBJ_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"CLASS_TYPE": {
"title": "CLASS_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"OBJ_KEY": {
"title": "OBJ_KEY",
"type": "string",
"description": "",
"maxLength": 50
},
"OBJ_TXT": {
"title": "OBJ_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"QUANTITY": {
"title": "QUANTITY",
"type": "string",
"description": "",
"maxLength": 15
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"QUANTITY_UNIT": {
"title": "QUANTITY_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"COMPLETE": {
"title": "COMPLETE",
"type": "string",
"description": "",
"maxLength": 1
},
"CONSISTENT": {
"title": "CONSISTENT",
"type": "string",
"description": "",
"maxLength": 1
},
"OBJECT_GUID": {
"title": "OBJECT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"PERSIST_ID": {
"title": "PERSIST_ID",
"type": "string",
"description": "",
"maxLength": 32
},
"PERSIST_ID_TYPE": {
"title": "PERSIST_ID_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_PART_OF": {
"title": "ORDER_CFGS_PART_OF",
"type": "array",
"description": "Configuration: Part-of Specifications",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUPRT",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"PARENT_ID": {
"title": "PARENT_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"PART_OF_NO": {
"title": "PART_OF_NO",
"type": "string",
"description": "",
"maxLength": 4
},
"OBJ_TYPE": {
"title": "OBJ_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"CLASS_TYPE": {
"title": "CLASS_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"OBJ_KEY": {
"title": "OBJ_KEY",
"type": "string",
"description": "",
"maxLength": 50
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_RELEVANT": {
"title": "SALES_RELEVANT",
"type": "string",
"description": "",
"maxLength": 1
},
"PART_OF_GUID": {
"title": "PART_OF_GUID",
"type": "string",
"description": "",
"maxLength": 32
}
},
"required": []
}
},
"ORDER_CFGS_REF": {
"title": "ORDER_CFGS_REF",
"type": "array",
"description": "Configuration: Reference Data",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUCFG",
"type": "object",
"properties": {
"POSEX": {
"title": "POSEX",
"type": "string",
"description": "",
"maxLength": 6
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"ROOT_ID": {
"title": "ROOT_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"SCE": {
"title": "SCE",
"type": "string",
"description": "",
"maxLength": 1
},
"KBNAME": {
"title": "KBNAME",
"type": "string",
"description": "",
"maxLength": 30
},
"KBVERSION": {
"title": "KBVERSION",
"type": "string",
"description": "",
"maxLength": 30
},
"COMPLETE": {
"title": "COMPLETE",
"type": "string",
"description": "",
"maxLength": 1
},
"CONSISTENT": {
"title": "CONSISTENT",
"type": "string",
"description": "",
"maxLength": 1
},
"CFGINFO": {
"title": "CFGINFO",
"type": "string",
"description": "",
"maxLength": 250
},
"KBPROFILE": {
"title": "KBPROFILE",
"type": "string",
"description": "",
"maxLength": 30
},
"KBLANGUAGE": {
"title": "KBLANGUAGE",
"type": "string",
"description": "",
"maxLength": 1
},
"CBASE_ID": {
"title": "CBASE_ID",
"type": "string",
"description": "",
"maxLength": 32
},
"CBASE_ID_TYPE": {
"title": "CBASE_ID_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_VALUE": {
"title": "ORDER_CFGS_VALUE",
"type": "array",
"description": "Configuration: Characteristic Values",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUVAL",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"CHARC": {
"title": "CHARC",
"type": "string",
"description": "",
"maxLength": 40
},
"CHARC_TXT": {
"title": "CHARC_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"VALUE": {
"title": "VALUE",
"type": "string",
"description": "",
"maxLength": 40
},
"VALUE_TXT": {
"title": "VALUE_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"VALUE_TO": {
"title": "VALUE_TO",
"type": "string",
"description": "",
"maxLength": 40
},
"VALCODE": {
"title": "VALCODE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CONDITION_EX": {
"title": "ORDER_CONDITION_EX",
"type": "array",
"description": "Conditions Output",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICOND",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"COND_ST_NO": {
"title": "COND_ST_NO",
"type": "integer",
"description": ""
},
"SD000COND_COUNT": {
"title": "COND_COUNT",
"type": "integer",
"description": ""
},
"SD000COND_TYPE": {
"title": "COND_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"SD000COND_VALUE": {
"title": "COND_VALUE",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"COND_UNIT": {
"title": "COND_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"COND_P_UNT": {
"title": "COND_P_UNT",
"type": "number",
"description": ""
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_UNT_ISO": {
"title": "CD_UNT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
},
"APPLICATIO": {
"title": "APPLICATIO",
"type": "string",
"description": "",
"maxLength": 2
},
"CONPRICDAT": {
"title": "CONPRICDAT",
"type": "string",
"description": "",
"maxLength": 8
},
"CALCTYPCON": {
"title": "CALCTYPCON",
"type": "string",
"description": "",
"maxLength": 1
},
"CONBASEVAL": {
"title": "CONBASEVAL",
"type": "number",
"description": ""
},
"CONEXCHRAT": {
"title": "CONEXCHRAT",
"type": "number",
"description": ""
},
"NUMCONVERT": {
"title": "NUMCONVERT",
"type": "number",
"description": ""
},
"DENOMINATO": {
"title": "DENOMINATO",
"type": "number",
"description": ""
},
"CONDTYPE": {
"title": "CONDTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"STAT_CON": {
"title": "STAT_CON",
"type": "string",
"description": "",
"maxLength": 1
},
"SCALETYPE": {
"title": "SCALETYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCRUALS": {
"title": "ACCRUALS",
"type": "string",
"description": "",
"maxLength": 1
},
"CONINVOLST": {
"title": "CONINVOLST",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDORIGIN": {
"title": "CONDORIGIN",
"type": "string",
"description": "",
"maxLength": 1
},
"GROUPCOND": {
"title": "GROUPCOND",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_UPDAT": {
"title": "COND_UPDAT",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCESS_SEQ": {
"title": "ACCESS_SEQ",
"type": "integer",
"description": ""
},
"CONDCOUNT": {
"title": "CONDCOUNT",
"type": "integer",
"description": ""
},
"ROUNDOFFDI": {
"title": "ROUNDOFFDI",
"type": "number",
"description": ""
},
"CONDVALUE": {
"title": "CONDVALUE",
"type": "number",
"description": ""
},
"CURRENCY_2": {
"title": "CURRENCY_2",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO_2": {
"title": "CURR_ISO_2",
"type": "string",
"description": "",
"maxLength": 3
},
"CONDCNTRL": {
"title": "CONDCNTRL",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDISACTI": {
"title": "CONDISACTI",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDCLASS": {
"title": "CONDCLASS",
"type": "string",
"description": "",
"maxLength": 1
},
"FACTBASVAL": {
"title": "FACTBASVAL",
"type": "number",
"description": ""
},
"SCALEBASIN": {
"title": "SCALEBASIN",
"type": "string",
"description": "",
"maxLength": 1
},
"SCALBASVAL": {
"title": "SCALBASVAL",
"type": "number",
"description": ""
},
"UNITMEASUR": {
"title": "UNITMEASUR",
"type": "string",
"description": "",
"maxLength": 3
},
"ISO_UNIT": {
"title": "ISO_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"CURRENCKEY": {
"title": "CURRENCKEY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURRENISO": {
"title": "CURRENISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CONDINCOMP": {
"title": "CONDINCOMP",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDCONFIG": {
"title": "CONDCONFIG",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDCHAMAN": {
"title": "CONDCHAMAN",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_NO": {
"title": "COND_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"TAX_CODE": {
"title": "TAX_CODE",
"type": "string",
"description": "",
"maxLength": 2
},
"VARCOND": {
"title": "VARCOND",
"type": "string",
"description": "",
"maxLength": 26
},
"ACCOUNTKEY": {
"title": "ACCOUNTKEY",
"type": "string",
"description": "",
"maxLength": 3
},
"ACCOUNT_KE": {
"title": "ACCOUNT_KE",
"type": "string",
"description": "",
"maxLength": 3
},
"WT_WITHCD": {
"title": "WT_WITHCD",
"type": "string",
"description": "",
"maxLength": 2
},
"STRUCTCOND": {
"title": "STRUCTCOND",
"type": "string",
"description": "",
"maxLength": 1
},
"FACTCONBAS": {
"title": "FACTCONBAS",
"type": "number",
"description": ""
},
"CONDCOINHD": {
"title": "CONDCOINHD",
"type": "integer",
"description": ""
}
},
"required": []
}
},
"ORDER_INCOMPLETE": {
"title": "ORDER_INCOMPLETE",
"type": "array",
"description": "",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIINCOMP",
"type": "object",
"properties": {
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"SCHED_LINE": {
"title": "SCHED_LINE",
"type": "integer",
"description": ""
},
"PARTN_ROLE": {
"title": "PARTN_ROLE",
"type": "string",
"description": "",
"maxLength": 2
},
"TABLE_NAME": {
"title": "TABLE_NAME",
"type": "string",
"description": "",
"maxLength": 30
},
"FIELD_NAME": {
"title": "FIELD_NAME",
"type": "string",
"description": "",
"maxLength": 30
},
"FIELD_TEXT": {
"title": "FIELD_TEXT",
"type": "string",
"description": "",
"maxLength": 40
}
},
"required": []
}
},
"ORDER_ITEMS_IN": {
"title": "ORDER_ITEMS_IN",
"type": "array",
"description": "Item Data Input",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIITEMIN",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"HG_LV_ITEM": {
"title": "HG_LV_ITEM",
"type": "integer",
"description": ""
},
"PO_ITM_NO": {
"title": "PO_ITM_NO",
"type": "string",
"description": "",
"maxLength": 6
},
"MATERIAL": {
"title": "MATERIAL",
"type": "string",
"description": "",
"maxLength": 18
},
"CUST_MAT": {
"title": "CUST_MAT",
"type": "string",
"description": "",
"maxLength": 22
},
"BATCH": {
"title": "BATCH",
"type": "string",
"description": "",
"maxLength": 10
},
"DLV_GROUP": {
"title": "DLV_GROUP",
"type": "integer",
"description": ""
},
"PART_DLV": {
"title": "PART_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"REASON_REJ": {
"title": "REASON_REJ",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_DATE": {
"title": "BILL_DATE",
"type": "string",
"description": "",
"maxLength": 10
},
"PLANT": {
"title": "PLANT",
"type": "string",
"description": "",
"maxLength": 4
},
"STORE_LOC": {
"title": "STORE_LOC",
"type": "string",
"description": "",
"maxLength": 4
},
"TARGET_QTY": {
"title": "TARGET_QTY",
"type": "integer",
"description": ""
},
"TARGET_QU": {
"title": "TARGET_QU",
"type": "string",
"description": "",
"maxLength": 3
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "integer",
"description": ""
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"ITEM_CATEG": {
"title": "ITEM_CATEG",
"type": "string",
"description": "",
"maxLength": 4
},
"SHORT_TEXT": {
"title": "SHORT_TEXT",
"type": "string",
"description": "",
"maxLength": 40
},
"REQ_DATE": {
"title": "REQ_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_TIME": {
"title": "REQ_TIME",
"type": "string",
"description": "",
"maxLength": 8
},
"COND_TYPE": {
"title": "COND_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"COND_VALUE": {
"title": "COND_VALUE",
"type": "number",
"description": ""
},
"COND_P_UNT": {
"title": "COND_P_UNT",
"type": "integer",
"description": ""
},
"COND_D_UNT": {
"title": "COND_D_UNT",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP1": {
"title": "PRC_GROUP1",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP2": {
"title": "PRC_GROUP2",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP3": {
"title": "PRC_GROUP3",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP4": {
"title": "PRC_GROUP4",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP5": {
"title": "PRC_GROUP5",
"type": "string",
"description": "",
"maxLength": 3
},
"PROD_HIERA": {
"title": "PROD_HIERA",
"type": "string",
"description": "",
"maxLength": 18
},
"MATL_GROUP": {
"title": "MATL_GROUP",
"type": "string",
"description": "",
"maxLength": 9
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 35
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 12
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 35
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 12
},
"PO_ITM_NO_S": {
"title": "PO_ITM_NO_S",
"type": "string",
"description": "",
"maxLength": 6
},
"COND_VAL1": {
"title": "COND_VAL1",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"T_UNIT_ISO": {
"title": "T_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"S_UNIT_ISO": {
"title": "S_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_UNT_ISO": {
"title": "CD_UNT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_MAT35": {
"title": "CUST_MAT35",
"type": "string",
"description": "",
"maxLength": 35
},
"INCOTERMS1": {
"title": "INCOTERMS1",
"type": "string",
"description": "",
"maxLength": 3
},
"INCOTERMS2": {
"title": "INCOTERMS2",
"type": "string",
"description": "",
"maxLength": 28
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 3
},
"ASSORT_MOD": {
"title": "ASSORT_MOD",
"type": "string",
"description": "",
"maxLength": 18
},
"VAL_CONTR": {
"title": "VAL_CONTR",
"type": "string",
"description": "",
"maxLength": 10
},
"VAL_CON_I": {
"title": "VAL_CON_I",
"type": "integer",
"description": ""
},
"REF_DOC": {
"title": "REF_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"REF_DOC_IT": {
"title": "REF_DOC_IT",
"type": "integer",
"description": ""
},
"REF_DOC_CA": {
"title": "REF_DOC_CA",
"type": "string",
"description": "",
"maxLength": 1
},
"CD_TYPE2": {
"title": "CD_TYPE2",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE2": {
"title": "CD_VALUE2",
"type": "number",
"description": ""
},
"CD_P_UNT2": {
"title": "CD_P_UNT2",
"type": "integer",
"description": ""
},
"CD_D_UNT2": {
"title": "CD_D_UNT2",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO2": {
"title": "CD_D_UISO2",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR2": {
"title": "CD_CURR2",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO2": {
"title": "CD_CU_ISO2",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_TYPE3": {
"title": "CD_TYPE3",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE3": {
"title": "CD_VALUE3",
"type": "number",
"description": ""
},
"CD_P_UNT3": {
"title": "CD_P_UNT3",
"type": "integer",
"description": ""
},
"CD_D_UNT3": {
"title": "CD_D_UNT3",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO3": {
"title": "CD_D_UISO3",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR3": {
"title": "CD_CURR3",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO3": {
"title": "CD_CU_ISO3",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_TYPE4": {
"title": "CD_TYPE4",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE4": {
"title": "CD_VALUE4",
"type": "number",
"description": ""
},
"CD_P_UNT4": {
"title": "CD_P_UNT4",
"type": "integer",
"description": ""
},
"CD_D_UNT4": {
"title": "CD_D_UNT4",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO4": {
"title": "CD_D_UISO4",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR4": {
"title": "CD_CURR4",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO4": {
"title": "CD_CU_ISO4",
"type": "string",
"description": "",
"maxLength": 3
},
"MAT_EXT": {
"title": "MAT_EXT",
"type": "string",
"description": "",
"maxLength": 40
},
"MAT_GUID": {
"title": "MAT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_VERS": {
"title": "MAT_VERS",
"type": "string",
"description": "",
"maxLength": 10
},
"ALTERN_BOM": {
"title": "ALTERN_BOM",
"type": "string",
"description": "",
"maxLength": 2
},
"FKK_CONACCT": {
"title": "FKK_CONACCT",
"type": "string",
"description": "",
"maxLength": 12
},
"EAN_UPC": {
"title": "EAN_UPC",
"type": "string",
"description": "",
"maxLength": 18
},
"SHIP_POINT": {
"title": "SHIP_POINT",
"type": "string",
"description": "",
"maxLength": 4
},
"PRODCAT": {
"title": "PRODCAT",
"type": "string",
"description": "",
"maxLength": 10
},
"SGT_RCAT": {
"title": "SGT_RCAT",
"type": "string",
"description": "",
"maxLength": 16
}
},
"required": []
}
},
"ORDER_ITEMS_OUT": {
"title": "ORDER_ITEMS_OUT",
"type": "array",
"description": "Item Data Output",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIITEMEX",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"PO_ITM_NO": {
"title": "PO_ITM_NO",
"type": "string",
"description": "",
"maxLength": 6
},
"MATERIAL": {
"title": "MATERIAL",
"type": "string",
"description": "",
"maxLength": 18
},
"MAT_ENTRD": {
"title": "MAT_ENTRD",
"type": "string",
"description": "",
"maxLength": 18
},
"SHORT_TEXT": {
"title": "SHORT_TEXT",
"type": "string",
"description": "",
"maxLength": 40
},
"NET_VALUE": {
"title": "NET_VALUE",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"SD000SUBTOTAL_1": {
"title": "SUBTOTAL_1",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_2": {
"title": "SUBTOTAL_2",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_3": {
"title": "SUBTOTAL_3",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_4": {
"title": "SUBTOTAL_4",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_5": {
"title": "SUBTOTAL_5",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_6": {
"title": "SUBTOTAL_6",
"type": "number",
"description": ""
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"QTY_REQ_DT": {
"title": "QTY_REQ_DT",
"type": "integer",
"description": ""
},
"DLV_DATE": {
"title": "DLV_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"REPL_TIME": {
"title": "REPL_TIME",
"type": "integer",
"description": ""
},
"CONFIGURED": {
"title": "CONFIGURED",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 35
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 12
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 35
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 12
},
"PO_ITM_NO_S": {
"title": "PO_ITM_NO_S",
"type": "string",
"description": "",
"maxLength": 6
},
"NET_VALUE1": {
"title": "NET_VALUE1",
"type": "number",
"description": ""
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"S_UNIT_ISO": {
"title": "S_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "number",
"description": ""
},
"PLANT": {
"title": "PLANT",
"type": "string",
"description": "",
"maxLength": 4
},
"TX_DOC_CUR": {
"title": "TX_DOC_CUR",
"type": "number",
"description": ""
},
"MAT_EXT": {
"title": "MAT_EXT",
"type": "string",
"description": "",
"maxLength": 40
},
"MAT_GUID": {
"title": "MAT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_VERS": {
"title": "MAT_VERS",
"type": "string",
"description": "",
"maxLength": 10
},
"MAT_E_EXT": {
"title": "MAT_E_EXT",
"type": "string",
"description": "",
"maxLength": 40
},
"MAT_E_GUID": {
"title": "MAT_E_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_E_VERS": {
"title": "MAT_E_VERS",
"type": "string",
"description": "",
"maxLength": 10
},
"TARGET_QTY": {
"title": "TARGET_QTY",
"type": "number",
"description": ""
},
"TARGET_QU": {
"title": "TARGET_QU",
"type": "string",
"description": "",
"maxLength": 3
},
"T_UNIT_ISO": {
"title": "T_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"ITEM_CATEG": {
"title": "ITEM_CATEG",
"type": "string",
"description": "",
"maxLength": 4
},
"SHIP_POINT": {
"title": "SHIP_POINT",
"type": "string",
"description": "",
"maxLength": 4
},
"HG_LV_ITEM": {
"title": "HG_LV_ITEM",
"type": "integer",
"description": ""
},
"CUST_MAT": {
"title": "CUST_MAT",
"type": "string",
"description": "",
"maxLength": 35
},
"PART_DLV": {
"title": "PART_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"REASON_REJ": {
"title": "REASON_REJ",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"STGE_LOC": {
"title": "STGE_LOC",
"type": "string",
"description": "",
"maxLength": 4
},
"PROD_HIER": {
"title": "PROD_HIER",
"type": "string",
"description": "",
"maxLength": 18
},
"MATL_GROUP": {
"title": "MATL_GROUP",
"type": "string",
"description": "",
"maxLength": 9
},
"SUBTOTAL1": {
"title": "SUBTOTAL1",
"type": "number",
"description": ""
},
"SUBTOTAL2": {
"title": "SUBTOTAL2",
"type": "number",
"description": ""
},
"SUBTOTAL3": {
"title": "SUBTOTAL3",
"type": "number",
"description": ""
},
"SUBTOTAL4": {
"title": "SUBTOTAL4",
"type": "number",
"description": ""
},
"SUBTOTAL5": {
"title": "SUBTOTAL5",
"type": "number",
"description": ""
},
"SUBTOTAL6": {
"title": "SUBTOTAL6",
"type": "number",
"description": ""
}
},
"required": []
}
},
"ORDER_PARTNERS": {
"title": "ORDER_PARTNERS",
"type": "array",
"description": "Partners",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIPARTNR",
"type": "object",
"properties": {
"PARTN_ROLE": {
"title": "PARTN_ROLE",
"type": "string",
"description": "",
"maxLength": 2
},
"PARTN_NUMB": {
"title": "PARTN_NUMB",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"TITLE": {
"title": "TITLE",
"type": "string",
"description": "",
"maxLength": 15
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_2": {
"title": "NAME_2",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_3": {
"title": "NAME_3",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_4": {
"title": "NAME_4",
"type": "string",
"description": "",
"maxLength": 35
},
"STREET": {
"title": "STREET",
"type": "string",
"description": "",
"maxLength": 35
},
"COUNTRY": {
"title": "COUNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"COUNTRY_ISO": {
"title": "COUNTRY_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"POSTL_CODE": {
"title": "POSTL_CODE",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_PCD": {
"title": "POBX_PCD",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_CTY": {
"title": "POBX_CTY",
"type": "string",
"description": "",
"maxLength": 35
},
"CITY": {
"title": "CITY",
"type": "string",
"description": "",
"maxLength": 35
},
"DISTRICT": {
"title": "DISTRICT",
"type": "string",
"description": "",
"maxLength": 35
},
"REGION": {
"title": "REGION",
"type": "string",
"description": "",
"maxLength": 3
},
"PO_BOX": {
"title": "PO_BOX",
"type": "string",
"description": "",
"maxLength": 10
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"TELEPHONE2": {
"title": "TELEPHONE2",
"type": "string",
"description": "",
"maxLength": 16
},
"TELEBOX": {
"title": "TELEBOX",
"type": "string",
"description": "",
"maxLength": 15
},
"FAX_NUMBER": {
"title": "FAX_NUMBER",
"type": "string",
"description": "",
"maxLength": 31
},
"TELETEX_NO": {
"title": "TELETEX_NO",
"type": "string",
"description": "",
"maxLength": 30
},
"TELEX_NO": {
"title": "TELEX_NO",
"type": "string",
"description": "",
"maxLength": 30
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"LANGU_ISO": {
"title": "LANGU_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"UNLOAD_PT": {
"title": "UNLOAD_PT",
"type": "string",
"description": "",
"maxLength": 25
},
"TRANSPZONE": {
"title": "TRANSPZONE",
"type": "string",
"description": "",
"maxLength": 10
},
"TAXJURCODE": {
"title": "TAXJURCODE",
"type": "string",
"description": "",
"maxLength": 15
},
"ADDRESS": {
"title": "ADDRESS",
"type": "string",
"description": "",
"maxLength": 10
},
"PRIV_ADDR": {
"title": "PRIV_ADDR",
"type": "string",
"description": "",
"maxLength": 10
},
"ADDR_TYPE": {
"title": "ADDR_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"ADDR_ORIG": {
"title": "ADDR_ORIG",
"type": "string",
"description": "",
"maxLength": 1
},
"ADDR_LINK": {
"title": "ADDR_LINK",
"type": "string",
"description": "",
"maxLength": 10
},
"VAT_REG_NO": {
"title": "VAT_REG_NO",
"type": "string",
"description": "",
"maxLength": 20
}
},
"required": []
}
},
"ORDER_SCHEDULE_EX": {
"title": "ORDER_SCHEDULE_EX",
"type": "array",
"description": "Schedule line data output",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDHEDU",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"SCHED_LINE": {
"title": "SCHED_LINE",
"type": "integer",
"description": ""
},
"SCHED_TYPE": {
"title": "SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"RELFORDEL": {
"title": "RELFORDEL",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_DATE": {
"title": "REQ_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"REQ_TIME": {
"title": "REQ_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "number",
"description": ""
},
"CONFIR_QTY": {
"title": "CONFIR_QTY",
"type": "number",
"description": ""
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"ISOCODUNIT": {
"title": "ISOCODUNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"REQ_QTY1": {
"title": "REQ_QTY1",
"type": "number",
"description": ""
},
"BASE_UOM": {
"title": "BASE_UOM",
"type": "string",
"description": "",
"maxLength": 3
},
"ISOBASUNIT": {
"title": "ISOBASUNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"REQ_DATE1": {
"title": "REQ_DATE1",
"type": "string",
"description": "",
"maxLength": 8
},
"REQ_TYPE": {
"title": "REQ_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"PLTYPE": {
"title": "PLTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"BUSIDOCNR": {
"title": "BUSIDOCNR",
"type": "string",
"description": "",
"maxLength": 10
},
"BUSIITNR": {
"title": "BUSIITNR",
"type": "integer",
"description": ""
},
"SCHED_LIN1": {
"title": "SCHED_LIN1",
"type": "integer",
"description": ""
},
"EARL_DATE": {
"title": "EARL_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"MAINT_REQ": {
"title": "MAINT_REQ",
"type": "integer",
"description": ""
},
"PREQ_NO": {
"title": "PREQ_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_TYPE": {
"title": "PO_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"DOC_CAT": {
"title": "DOC_CAT",
"type": "string",
"description": "",
"maxLength": 1
},
"CONF_STAT": {
"title": "CONF_STAT",
"type": "string",
"description": "",
"maxLength": 1
},
"IR_IND": {
"title": "IR_IND",
"type": "string",
"description": "",
"maxLength": 1
},
"RETURNDATE": {
"title": "RETURNDATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_DATE": {
"title": "TP_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"MS_DATE": {
"title": "MS_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"LOAD_DATE": {
"title": "LOAD_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"GI_DATE": {
"title": "GI_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"CORR_QTY": {
"title": "CORR_QTY",
"type": "number",
"description": ""
},
"REQ_DLV_BL": {
"title": "REQ_DLV_BL",
"type": "string",
"description": "",
"maxLength": 2
},
"GRP_DEFIN": {
"title": "GRP_DEFIN",
"type": "integer",
"description": ""
},
"RELEASTYP": {
"title": "RELEASTYP",
"type": "string",
"description": "",
"maxLength": 1
},
"FORCAST_NR": {
"title": "FORCAST_NR",
"type": "integer",
"description": ""
},
"COMMIT_QTY": {
"title": "COMMIT_QTY",
"type": "number",
"description": ""
},
"SIZE2": {
"title": "SIZE2",
"type": "number",
"description": ""
},
"SIZE3": {
"title": "SIZE3",
"type": "number",
"description": ""
},
"UNIT_MEAS": {
"title": "UNIT_MEAS",
"type": "string",
"description": "",
"maxLength": 3
},
"ISO_ROMEI": {
"title": "ISO_ROMEI",
"type": "string",
"description": "",
"maxLength": 3
},
"FORMULAKEY": {
"title": "FORMULAKEY",
"type": "string",
"description": "",
"maxLength": 2
},
"SALESQTYNR": {
"title": "SALESQTYNR",
"type": "number",
"description": ""
},
"SALESQTYDE": {
"title": "SALESQTYDE",
"type": "number",
"description": ""
},
"AVAIL_CON": {
"title": "AVAIL_CON",
"type": "string",
"description": "",
"maxLength": 1
},
"MOVE_TYPE": {
"title": "MOVE_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"PREQ_ITEM": {
"title": "PREQ_ITEM",
"type": "integer",
"description": ""
},
"LINTYP_EDI": {
"title": "LINTYP_EDI",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDERID": {
"title": "ORDERID",
"type": "string",
"description": "",
"maxLength": 12
},
"PLANORDNR": {
"title": "PLANORDNR",
"type": "string",
"description": "",
"maxLength": 10
},
"BOMEXPL_NO": {
"title": "BOMEXPL_NO",
"type": "string",
"description": "",
"maxLength": 8
},
"CUSTCHSTAT": {
"title": "CUSTCHSTAT",
"type": "string",
"description": "",
"maxLength": 17
},
"GURANTEED": {
"title": "GURANTEED",
"type": "number",
"description": ""
},
"MS_TIME": {
"title": "MS_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"TP_TIME": {
"title": "TP_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"LOAD_TIME": {
"title": "LOAD_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"GI_TIME": {
"title": "GI_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"ROUTESCHED": {
"title": "ROUTESCHED",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
},
"ORDER_SCHEDULE_IN": {
"title": "ORDER_SCHEDULE_IN",
"type": "array",
"description": "Schedule Line Data Input",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISCHDL",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"SCHED_LINE": {
"title": "SCHED_LINE",
"type": "integer",
"description": ""
},
"REQ_DATE": {
"title": "REQ_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_TIME": {
"title": "REQ_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "number",
"description": ""
},
"REQ_DLV_BL": {
"title": "REQ_DLV_BL",
"type": "string",
"description": "",
"maxLength": 2
},
"SCHED_TYPE": {
"title": "SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"TP_DATE": {
"title": "TP_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"MS_DATE": {
"title": "MS_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"LOAD_DATE": {
"title": "LOAD_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"GI_DATE": {
"title": "GI_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"TP_TIME": {
"title": "TP_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"MS_TIME": {
"title": "MS_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"LOAD_TIME": {
"title": "LOAD_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"GI_TIME": {
"title": "GI_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
},
"DLV_DATE": {
"title": "DLV_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REL_TYPE": {
"title": "REL_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"PLAN_SCHED_TYPE": {
"title": "PLAN_SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"PARTNERADDRESSES": {
"title": "PARTNERADDRESSES",
"type": "array",
"description": "BAPI Reference Structure for Addresses (Org./Company)",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIADDR1",
"type": "object",
"properties": {
"ADDR_NO": {
"title": "ADDR_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"FORMOFADDR": {
"title": "FORMOFADDR",
"type": "string",
"description": "",
"maxLength": 20
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 40
},
"NAME_2": {
"title": "NAME_2",
"type": "string",
"description": "",
"maxLength": 40
},
"NAME_3": {
"title": "NAME_3",
"type": "string",
"description": "",
"maxLength": 40
},
"NAME_4": {
"title": "NAME_4",
"type": "string",
"description": "",
"maxLength": 40
},
"C_O_NAME": {
"title": "C_O_NAME",
"type": "string",
"description": "",
"maxLength": 40
},
"CITY": {
"title": "CITY",
"type": "string",
"description": "",
"maxLength": 40
},
"DISTRICT": {
"title": "DISTRICT",
"type": "string",
"description": "",
"maxLength": 40
},
"CITY_NO": {
"title": "CITY_NO",
"type": "string",
"description": "",
"maxLength": 12
},
"POSTL_COD1": {
"title": "POSTL_COD1",
"type": "string",
"description": "",
"maxLength": 10
},
"POSTL_COD2": {
"title": "POSTL_COD2",
"type": "string",
"description": "",
"maxLength": 10
},
"POSTL_COD3": {
"title": "POSTL_COD3",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_BOX": {
"title": "PO_BOX",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_BOX_CIT": {
"title": "PO_BOX_CIT",
"type": "string",
"description": "",
"maxLength": 40
},
"DELIV_DIS": {
"title": "DELIV_DIS",
"type": "string",
"description": "",
"maxLength": 15
},
"STREET": {
"title": "STREET",
"type": "string",
"description": "",
"maxLength": 40
},
"STREET_NO": {
"title": "STREET_NO",
"type": "string",
"description": "",
"maxLength": 12
},
"STR_ABBR": {
"title": "STR_ABBR",
"type": "string",
"description": "",
"maxLength": 2
},
"HOUSE_NO": {
"title": "HOUSE_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"STR_SUPPL1": {
"title": "STR_SUPPL1",
"type": "string",
"description": "",
"maxLength": 40
},
"STR_SUPPL2": {
"title": "STR_SUPPL2",
"type": "string",
"description": "",
"maxLength": 40
},
"LOCATION": {
"title": "LOCATION",
"type": "string",
"description": "",
"maxLength": 40
},
"BUILDING": {
"title": "BUILDING",
"type": "string",
"description": "",
"maxLength": 10
},
"FLOOR": {
"title": "FLOOR",
"type": "string",
"description": "",
"maxLength": 10
},
"ROOM_NO": {
"title": "ROOM_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"COUNTRY": {
"title": "COUNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"REGION": {
"title": "REGION",
"type": "string",
"description": "",
"maxLength": 3
},
"SORT1": {
"title": "SORT1",
"type": "string",
"description": "",
"maxLength": 20
},
"SORT2": {
"title": "SORT2",
"type": "string",
"description": "",
"maxLength": 20
},
"TIME_ZONE": {
"title": "TIME_ZONE",
"type": "string",
"description": "",
"maxLength": 6
},
"TAXJURCODE": {
"title": "TAXJURCODE",
"type": "string",
"description": "",
"maxLength": 15
},
"ADR_NOTES": {
"title": "ADR_NOTES",
"type": "string",
"description": "",
"maxLength": 50
},
"COMM_TYPE": {
"title": "COMM_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"TEL1_NUMBR": {
"title": "TEL1_NUMBR",
"type": "string",
"description": "",
"maxLength": 30
},
"TEL1_EXT": {
"title": "TEL1_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"FAX_NUMBER": {
"title": "FAX_NUMBER",
"type": "string",
"description": "",
"maxLength": 30
},
"FAX_EXTENS": {
"title": "FAX_EXTENS",
"type": "string",
"description": "",
"maxLength": 10
},
"STREET_LNG": {
"title": "STREET_LNG",
"type": "string",
"description": "",
"maxLength": 60
},
"DISTRCT_NO": {
"title": "DISTRCT_NO",
"type": "string",
"description": "",
"maxLength": 8
},
"CHCKSTATUS": {
"title": "CHCKSTATUS",
"type": "string",
"description": "",
"maxLength": 1
},
"PBOXCIT_NO": {
"title": "PBOXCIT_NO",
"type": "string",
"description": "",
"maxLength": 12
},
"TRANSPZONE": {
"title": "TRANSPZONE",
"type": "string",
"description": "",
"maxLength": 10
},
"HOUSE_NO2": {
"title": "HOUSE_NO2",
"type": "string",
"description": "",
"maxLength": 10
},
"E_MAIL": {
"title": "E_MAIL",
"type": "string",
"description": "",
"maxLength": 241
},
"STR_SUPPL3": {
"title": "STR_SUPPL3",
"type": "string",
"description": "",
"maxLength": 40
},
"TITLE": {
"title": "TITLE",
"type": "string",
"description": "",
"maxLength": 30
},
"COUNTRYISO": {
"title": "COUNTRYISO",
"type": "string",
"description": "",
"maxLength": 2
},
"LANGU_ISO": {
"title": "LANGU_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"BUILD_LONG": {
"title": "BUILD_LONG",
"type": "string",
"description": "",
"maxLength": 20
},
"REGIOGROUP": {
"title": "REGIOGROUP",
"type": "string",
"description": "",
"maxLength": 8
},
"HOME_CITY": {
"title": "HOME_CITY",
"type": "string",
"description": "",
"maxLength": 40
},
"HOMECITYNO": {
"title": "HOMECITYNO",
"type": "string",
"description": "",
"maxLength": 12
},
"PCODE1_EXT": {
"title": "PCODE1_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"PCODE2_EXT": {
"title": "PCODE2_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"PCODE3_EXT": {
"title": "PCODE3_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_W_O_NO": {
"title": "PO_W_O_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_BOX_REG": {
"title": "PO_BOX_REG",
"type": "string",
"description": "",
"maxLength": 3
},
"POBOX_CTRY": {
"title": "POBOX_CTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"PO_CTRYISO": {
"title": "PO_CTRYISO",
"type": "string",
"description": "",
"maxLength": 2
},
"HOMEPAGE": {
"title": "HOMEPAGE",
"type": "string",
"description": "",
"maxLength": 132
},
"DONT_USE_S": {
"title": "DONT_USE_S",
"type": "string",
"description": "",
"maxLength": 4
},
"DONT_USE_P": {
"title": "DONT_USE_P",
"type": "string",
"description": "",
"maxLength": 4
},
"HOUSE_NO3": {
"title": "HOUSE_NO3",
"type": "string",
"description": "",
"maxLength": 10
},
"LANGU_CR": {
"title": "LANGU_CR",
"type": "string",
"description": "",
"maxLength": 1
},
"LANGUCRISO": {
"title": "LANGUCRISO",
"type": "string",
"description": "",
"maxLength": 2
},
"PO_BOX_LOBBY": {
"title": "PO_BOX_LOBBY",
"type": "string",
"description": "",
"maxLength": 40
},
"DELI_SERV_TYPE": {
"title": "DELI_SERV_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"DELI_SERV_NUMBER": {
"title": "DELI_SERV_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"URI_TYPE": {
"title": "URI_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"COUNTY_CODE": {
"title": "COUNTY_CODE",
"type": "string",
"description": "",
"maxLength": 8
},
"COUNTY": {
"title": "COUNTY",
"type": "string",
"description": "",
"maxLength": 40
},
"TOWNSHIP_CODE": {
"title": "TOWNSHIP_CODE",
"type": "string",
"description": "",
"maxLength": 8
},
"TOWNSHIP": {
"title": "TOWNSHIP",
"type": "string",
"description": "",
"maxLength": 40
}
},
"required": []
}
}
},
"required": [
"BILLING_PARTY",
"RETURN",
"SALESDOCUMENT",
"SHIP_TO_PARTY",
"SOLD_TO_PARTY",
"ORDER_ITEMS_IN",
"ORDER_PARTNERS"
]
}
Example:
{
"BILLING_PARTY": {
"PAYER": "0000100012",
"NAME": "Booktree Inc.",
"STREET": "15 Harbor Road",
"POSTL_CODE": "92121",
"CITY": "San Diego",
"LANGU": "E",
"COUNTRY": "US",
"CRED_LIMIT": 0,
"ORDER_VALS": 0,
"RCVBL_VALS": 0,
"CRED_LIAB": 0,
"VAL_LIMIT": 0,
"ACCNT_ASGN": "01",
"PMNTTRMS": "0001",
"ADD_VAL_DY": 0
},
"RETURN": {
"LOG_MSG_NO": 0
},
"ORDER_HEADERS_OUT": [
{
"NET_VAL_HD": 48,
"CURRENCY": "USD"
}
],
"SHIP_TO_PARTY": {
"SHIP_TO": "0000100012",
"NAME": "Booktree Inc.",
"STREET": "15 Harbor Road",
"POSTL_CODE": "92121",
"CITY": "San Diego",
"LANGU": "E",
"DEST_CNTRY": "US",
"TRNSP_ZONE": "0000000001",
"REGION": "CA",
"TAXJURCODE": "CA0000000",
"DLV_PLANT": "1000",
"SHIP_COND": "01",
"ACCNT_GRP": "YB01"
},
"SOLD_TO_PARTY": {
"SOLD_TO": "0000100012",
"NAME": "Booktree Inc.",
"STREET": "15 Harbor Road",
"POSTL_CODE": "92121",
"CITY": "San Diego",
"LANGU": "E",
"COUNTRY": "US",
"STAT_GROUP": "1",
"PRC_PROCED": "1",
"CUST_GROUP": "02",
"INCOTERMS1": "EXW",
"INCOTERMS2": "Manufacturing",
"MAX_PL_DLV": 0,
"DLV_PRIO": 2,
"CURRENCY": "USD",
"SHIP_COND": "01",
"ORDER_PROB": 100
},
"EXTENSIONIN": [],
"MESSAGETABLE": [],
"ORDER_CCARD": [],
"ORDER_CCARD_EX": [],
"ORDER_CFGS_BLOB": [],
"ORDER_CFGS_INST": [],
"ORDER_CFGS_PART_OF": [],
"ORDER_CFGS_REF": [],
"ORDER_CFGS_VALUE": [],
"ORDER_CONDITION_EX": [
{
"ITM_NUMBER": 10,
"COND_ST_NO": 11,
"SD000COND_COUNT": 1,
"SD000COND_TYPE": "PR00",
"SD000COND_VALUE": 485,
"CURRENCY": "USD",
"COND_UNIT": "EA",
"COND_P_UNT": 1,
"CURR_ISO": "USD",
"CD_UNT_ISO": "EA",
"APPLICATIO": "V",
"CONPRICDAT": "2016-03-10",
"CALCTYPCON": "C",
"CONBASEVAL": 0.001,
"CONEXCHRAT": 1,
"NUMCONVERT": 1,
"DENOMINATO": 1,
"CONDORIGIN": "A",
"ACCESS_SEQ": 40,
"CONDCOUNT": 1,
"ROUNDOFFDI": 0,
"CONDVALUE": 0.49,
"CURRENCY_2": "USD",
"CURR_ISO_2": "USD",
"CONDCNTRL": "A",
"CONDCLASS": "B",
"FACTBASVAL": 0,
"SCALBASVAL": 0,
"COND_NO": "0000007610",
"FACTCONBAS": 0,
"CONDCOINHD": 0
},
{
"ITM_NUMBER": 10,
"COND_ST_NO": 104,
"SD000COND_COUNT": 1,
"SD000COND_TYPE": "K007",
"SD000COND_VALUE": -2,
"COND_P_UNT": 0,
"APPLICATIO": "V",
"CONPRICDAT": "2016-03-10",
"CALCTYPCON": "A",
"CONBASEVAL": 0.49,
"CONEXCHRAT": 0,
"NUMCONVERT": 0,
"DENOMINATO": 0,
"CONDORIGIN": "A",
"ACCESS_SEQ": 10,
"CONDCOUNT": 1,
"ROUNDOFFDI": 0,
"CONDVALUE": -0.01,
"CURRENCY_2": "USD",
"CURR_ISO_2": "USD",
"CONDCNTRL": "A",
"CONDCLASS": "A",
"FACTBASVAL": 0,
"SCALBASVAL": 0,
"COND_NO": "0000007620",
"FACTCONBAS": 0,
"CONDCOINHD": 0
},
{
"ITM_NUMBER": 10,
"COND_ST_NO": 911,
"SD000COND_COUNT": 1,
"SD000COND_TYPE": "AZWR",
"SD000COND_VALUE": 0,
"CURRENCY": "USD",
"COND_P_UNT": 0,
"CURR_ISO": "USD",
"APPLICATIO": "V",
"CONPRICDAT": "2016-03-10",
"CALCTYPCON": "B",
"CONBASEVAL": 0.048,
"CONEXCHRAT": 1,
"NUMCONVERT": 0,
"DENOMINATO": 0,
"CONDTYPE": "e",
"CONDORIGIN": "A",
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 0,
"CURRENCY_2": "USD",
"CURR_ISO_2": "USD",
"CONDCNTRL": "A",
"CONDCLASS": "A",
"FACTBASVAL": 0,
"SCALBASVAL": 0,
"FACTCONBAS": 0,
"CONDCOINHD": 0
},
{
"ITM_NUMBER": 10,
"COND_ST_NO": 915,
"SD000COND_COUNT": 1,
"SD000COND_TYPE": "UTXJ",
"SD000COND_VALUE": 0,
"COND_P_UNT": 0,
"APPLICATIO": "V",
"CONPRICDAT": "2016-03-10",
"CALCTYPCON": "A",
"CONBASEVAL": 0.48,
"CONEXCHRAT": 0,
"NUMCONVERT": 0,
"DENOMINATO": 0,
"CONDTYPE": "1",
"STAT_CON": "X",
"CONDORIGIN": "A",
"ACCESS_SEQ": 10,
"CONDCOUNT": 1,
"ROUNDOFFDI": 0,
"CONDVALUE": 0,
"CURRENCY_2": "USD",
"CURR_ISO_2": "USD",
"CONDCNTRL": "A",
"CONDCLASS": "D",
"FACTBASVAL": 0,
"SCALBASVAL": 0,
"COND_NO": "0000007291",
"TAX_CODE": "O1",
"FACTCONBAS": 0,
"CONDCOINHD": 0
},
{
"ITM_NUMBER": 10,
"COND_ST_NO": 916,
"SD000COND_COUNT": 1,
"SD000COND_TYPE": "JR1",
"SD000COND_VALUE": 6,
"COND_P_UNT": 0,
"APPLICATIO": "TX",
"CONPRICDAT": "2016-03-10",
"CALCTYPCON": "A",
"CONBASEVAL": 0.48,
"CONEXCHRAT": 0,
"NUMCONVERT": 0,
"DENOMINATO": 0,
"CONDTYPE": "1",
"CONDORIGIN": "A",
"ACCESS_SEQ": 10,
"CONDCOUNT": 1,
"ROUNDOFFDI": 0,
"CONDVALUE": 0.03,
"CURRENCY_2": "USD",
"CURR_ISO_2": "USD",
"CONDCNTRL": "A",
"CONDCLASS": "D",
"FACTBASVAL": 0,
"SCALBASVAL": 0,
"COND_NO": "0000007613",
"TAX_CODE": "O1",
"FACTCONBAS": 0,
"CONDCOINHD": 0
},
{
"ITM_NUMBER": 10,
"COND_ST_NO": 930,
"SD000COND_COUNT": 1,
"SD000COND_TYPE": "SKTO",
"SD000COND_VALUE": 0,
"COND_P_UNT": 0,
"APPLICATIO": "V",
"CONPRICDAT": "2016-03-10",
"CALCTYPCON": "A",
"CONBASEVAL": 0.51,
"CONEXCHRAT": 0,
"NUMCONVERT": 0,
"DENOMINATO": 0,
"CONDTYPE": "E",
"STAT_CON": "X",
"CONDORIGIN": "A",
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 0,
"CURRENCY_2": "USD",
"CURR_ISO_2": "USD",
"CONDCNTRL": "A",
"CONDCLASS": "A",
"FACTBASVAL": 0,
"SCALBASVAL": 0,
"FACTCONBAS": 0,
"CONDCOINHD": 0
},
{
"ITM_NUMBER": 10,
"COND_ST_NO": 940,
"SD000COND_COUNT": 1,
"SD000COND_TYPE": "VPRS",
"SD000COND_VALUE": 250,
"CURRENCY": "USD",
"COND_UNIT": "EA",
"COND_P_UNT": 1,
"CURR_ISO": "USD",
"CD_UNT_ISO": "EA",
"APPLICATIO": "V",
"CONPRICDAT": "2016-03-10",
"CALCTYPCON": "C",
"CONBASEVAL": 0.001,
"CONEXCHRAT": 1,
"NUMCONVERT": 1,
"DENOMINATO": 1,
"CONDTYPE": "G",
"STAT_CON": "X",
"CONDORIGIN": "A",
"ACCESS_SEQ": 0,
"CONDCOUNT": 0,
"ROUNDOFFDI": 0,
"CONDVALUE": 0.25,
"CURRENCY_2": "USD",
"CURR_ISO_2": "USD",
"CONDCNTRL": "A",
"CONDCLASS": "B",
"FACTBASVAL": 0,
"SCALBASVAL": 0,
"FACTCONBAS": 0,
"CONDCOINHD": 0
}
],
"ORDER_INCOMPLETE": [
{
"ITM_NUMBER": 0,
"SCHED_LINE": 0,
"TABLE_NAME": "VBKD",
"FIELD_NAME": "BSTKD",
"FIELD_TEXT": "PO number"
}
],
"ORDER_ITEMS_IN": [
{
"ITM_NUMBER": 0,
"HG_LV_ITEM": 0,
"MATERIAL": "H15",
"DLV_GROUP": 0,
"TARGET_QTY": 1,
"REQ_QTY": 1,
"REQ_TIME": "02:14:00",
"COND_VALUE": 0,
"COND_P_UNT": 0,
"COND_VAL1": 0,
"VAL_CON_I": 0,
"REF_DOC_IT": 0,
"CD_VALUE2": 0,
"CD_P_UNT2": 0,
"CD_VALUE3": 0,
"CD_P_UNT3": 0,
"CD_VALUE4": 0,
"CD_P_UNT4": 0
}
],
"ORDER_ITEMS_OUT": [
{
"ITM_NUMBER": 10,
"MATERIAL": "H15",
"MAT_ENTRD": "H15",
"SHORT_TEXT": "Notebook X15",
"NET_VALUE": 48,
"CURRENCY": "USD",
"SD000SUBTOTAL_1": 49,
"SD000SUBTOTAL_2": 48,
"SD000SUBTOTAL_3": 48,
"SD000SUBTOTAL_4": 0,
"SD000SUBTOTAL_5": 0,
"SD000SUBTOTAL_6": 0,
"SALES_UNIT": "EA",
"QTY_REQ_DT": 1,
"DLV_DATE": "2016-03-10",
"REPL_TIME": 0,
"NET_VALUE1": 0.48,
"CURR_ISO": "USD",
"S_UNIT_ISO": "EA",
"REQ_QTY": 0.001,
"PLANT": "1000",
"TX_DOC_CUR": 0.03,
"TARGET_QTY": 0,
"TARGET_QU": "EA",
"T_UNIT_ISO": "EA",
"ITEM_CATEG": "TAN",
"SHIP_POINT": "1000",
"HG_LV_ITEM": 0,
"PROD_HIER": "00001B000100000003",
"MATL_GROUP": "YBT01",
"SUBTOTAL1": 0.49,
"SUBTOTAL2": 0.48,
"SUBTOTAL3": 0.48,
"SUBTOTAL4": 0,
"SUBTOTAL5": 0,
"SUBTOTAL6": 0
}
],
"ORDER_PARTNERS": [
{
"PARTN_ROLE": "AG",
"PARTN_NUMB": "0000100012",
"ITM_NUMBER": 0
},
{
"PARTN_ROLE": "RE",
"PARTN_NUMB": "0000100012",
"ITM_NUMBER": 0
}
],
"ORDER_SCHEDULE_EX": [
{
"ITM_NUMBER": 10,
"SCHED_LINE": 1,
"SCHED_TYPE": "CP",
"RELFORDEL": "X",
"REQ_DATE": "2016-03-10",
"REQ_TIME": "02:14:00",
"REQ_QTY": 0.001,
"CONFIR_QTY": 0.001,
"SALES_UNIT": "EA",
"REQ_QTY1": 0.001,
"BASE_UOM": "EA",
"REQ_TYPE": "01",
"PLTYPE": "1",
"BUSIITNR": 0,
"SCHED_LIN1": 0,
"MAINT_REQ": 0,
"DATE_TYPE": "1",
"TP_DATE": "2016-03-09",
"MS_DATE": "2016-03-09",
"LOAD_DATE": "2016-03-09",
"GI_DATE": "2016-03-09",
"CORR_QTY": 0.001,
"GRP_DEFIN": 0,
"FORCAST_NR": 0,
"COMMIT_QTY": 0,
"SIZE2": 0,
"SIZE3": 0,
"SALESQTYNR": 1,
"SALESQTYDE": 1,
"AVAIL_CON": "X",
"MOVE_TYPE": "601",
"PREQ_ITEM": 0,
"GURANTEED": 0,
"MS_TIME": "22:00:00",
"TP_TIME": "22:00:00",
"LOAD_TIME": "22:00:00",
"GI_TIME": "22:00:00"
}
],
"ORDER_SCHEDULE_IN": [],
"PARTNERADDRESSES": []
}
HTTP status code 400
Request syntactically incorrect. Any details will be provided within the response payload.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 400,
"message": "There are validation problems, see details section for more information",
"moreInfo": "https://api.yaas.io/patterns/errortypes.html",
"type": "validation_violation",
"details": [
{
"field": "Accept-Language",
"message": "not a language",
"type": "invalid_header"
}
]
}
HTTP status code 401
Given request is unauthorized. Bad or expired token. Reauthenticate the user. Any details will be provided within the response payload.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 401,
"message": "Authorization: Unauthorized. Bearer TOKEN is invalid",
"type": "insufficient_credentials",
"moreInfo": "https://api.yaas.io/patterns/errortypes.html"
}
HTTP status code 403
Evaluated request scopes in access token are not sufficient and do not match required scopes.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 403,
"message": "Given request does not have required scopes in access token. It is not authorized to perform this operation.",
"type": "insufficient_permissions"
}
HTTP status code 408
Request timed out.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 408,
"type": "request_timeout",
"message": "The request timed out."
}
HTTP status code 500
An internal server error occurred.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 500,
"type": "internal_service_error",
"message": "An internal server error occurred."
}
/{tenant}/erpsalesorder/createsdorder1
Creation approach 1 of an ERP SD sales order
/{tenant}/erpsalesorder/createsdorder1
Create an ERP SD sales order using a JsonRPC post to execute BAPI_SALESORDER_CREATEFROMDAT1.
When you create an ERP SD sales order, you can specify the relevant information, for example:
- Header information of sales order, such as document type, sales organization, distribution chain and division
- Included line items, such as material identifier and number of items
- Relevant partner, such as the billing partner and the shipping partner
Furthermore, before you create an ERP SD sales order, you can simulate the SD order using the relevant information mentioned in the creation case.
Required scope: hybris.sdorderproxy_manage
.
post /{tenant}/erpsalesorder/createsdorder1
Create an ERP SD sales order using a JsonRPC post to execute BAPI_SALESORDER_CREATEFROMDAT1.
When you create an ERP SD sales order, you can specify the relevant information, for example:
- Header information of sales order, such as document type, sales organization, distribution chain and division
- Included line items, such as material identifier and number of items
- Relevant partner, such as the billing partner and the shipping partner
Furthermore, before you create an ERP SD sales order, you can simulate the SD order using the relevant information mentioned in the creation case.
Required scope: hybris.sdorderproxy_manage
.
URI Parameters
- Tenant: required (string - minLength: 3 - maxLength: 16 - pattern: [a-z][a-z0-9]+)
Stands for the "project" that requests this resource. Must match the "project" that is associated with the access token in the Authorization header.
Example:
myexampleshop
Headers
- Accept-Language: (string - repeat: true)
The value of the locale identifier of the language in which the attribute should be returned. Provide several values separated by comma, in order to specify fallback languages.
Example:
pl
- hybris-languages: (string - repeat: true)
Comma separated list of language identifiers for which the localization for an attribute should be provided.
Example:
en,pl,it
- Authorization: required (string)
Used to send a valid OAuth2 access token.
Example:
Bearer access_token
Query Parameters
- pageNumber: (integer - default: 1 - minimum: 1)
The page number to be retrieved where the size of the pages must be specified by the pageSize parameter. The number of the first page is 1.
Example:
1
- pageSize: (integer - default: 16 - minimum: 1)
The number of documents being retrieved on the page.
Example:
16
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "InputOfBAPI_SALESORDER_CREATEFROMDAT1",
"type": "object",
"properties": {
"CONVERT_PARVW_AUART": {
"title": "CONVERT_PARVW_AUART",
"type": "string",
"description": "Conversion of partner function + order type",
"maxLength": 1,
"default": "SPACE"
},
"ORDER_HEADER_IN": {
"title": "BAPISDHEAD",
"type": "object",
"description": "Order header",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"DOC_TYPE": {
"title": "DOC_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"COLLECT_NO": {
"title": "COLLECT_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"SALES_ORG": {
"title": "SALES_ORG",
"type": "string",
"description": "",
"maxLength": 4
},
"DISTR_CHAN": {
"title": "DISTR_CHAN",
"type": "string",
"description": "",
"maxLength": 2
},
"DIVISION": {
"title": "DIVISION",
"type": "string",
"description": "",
"maxLength": 2
},
"SALES_GRP": {
"title": "SALES_GRP",
"type": "string",
"description": "",
"maxLength": 3
},
"SALES_OFF": {
"title": "SALES_OFF",
"type": "string",
"description": "",
"maxLength": 4
},
"REQ_DATE_H": {
"title": "REQ_DATE_H",
"type": "string",
"description": "",
"maxLength": 10,
"pattern": "\\d{4}-\\d{2}-\\d{2}|\\s*"
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_NO": {
"title": "PURCH_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 4
},
"PO_SUPPLEM": {
"title": "PO_SUPPLEM",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 12
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 30
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"PRICE_GRP": {
"title": "PRICE_GRP",
"type": "string",
"description": "",
"maxLength": 2
},
"CUST_GROUP": {
"title": "CUST_GROUP",
"type": "string",
"description": "",
"maxLength": 2
},
"SALES_DIST": {
"title": "SALES_DIST",
"type": "string",
"description": "",
"maxLength": 6
},
"PRICE_LIST": {
"title": "PRICE_LIST",
"type": "string",
"description": "",
"maxLength": 2
},
"INCOTERMS1": {
"title": "INCOTERMS1",
"type": "string",
"description": "",
"maxLength": 3
},
"INCOTERMS2": {
"title": "INCOTERMS2",
"type": "string",
"description": "",
"maxLength": 28
},
"PMNTTRMS": {
"title": "PMNTTRMS",
"type": "string",
"description": "",
"maxLength": 4
},
"DLV_BLOCK": {
"title": "DLV_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"ORD_REASON": {
"title": "ORD_REASON",
"type": "string",
"description": "",
"maxLength": 3
},
"COMPL_DLV": {
"title": "COMPL_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICE_DATE": {
"title": "PRICE_DATE",
"type": "string",
"description": "",
"maxLength": 10,
"pattern": "\\d{4}-\\d{2}-\\d{2}|\\s*"
},
"QT_VALID_F": {
"title": "QT_VALID_F",
"type": "string",
"description": "",
"maxLength": 8
},
"QT_VALID_T": {
"title": "QT_VALID_T",
"type": "string",
"description": "",
"maxLength": 8
},
"CT_VALID_F": {
"title": "CT_VALID_F",
"type": "string",
"description": "",
"maxLength": 8
},
"CT_VALID_T": {
"title": "CT_VALID_T",
"type": "string",
"description": "",
"maxLength": 8
},
"CUST_GRP1": {
"title": "CUST_GRP1",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP2": {
"title": "CUST_GRP2",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP3": {
"title": "CUST_GRP3",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP4": {
"title": "CUST_GRP4",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP5": {
"title": "CUST_GRP5",
"type": "string",
"description": "",
"maxLength": 3
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 35
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 35
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 12
},
"SD_DOC_CAT": {
"title": "SD_DOC_CAT",
"type": "string",
"description": "",
"maxLength": 1
},
"SHIP_COND": {
"title": "SHIP_COND",
"type": "string",
"description": "",
"maxLength": 2
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURRENCY_ISO": {
"title": "CURRENCY_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_TYPE1": {
"title": "CD_TYPE1",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE1": {
"title": "CD_VALUE1",
"type": "number",
"description": ""
},
"CD_P_UNT1": {
"title": "CD_P_UNT1",
"type": "integer",
"description": ""
},
"CD_D_UNT1": {
"title": "CD_D_UNT1",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO1": {
"title": "CD_D_UISO1",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR1": {
"title": "CD_CURR1",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO1": {
"title": "CD_CU_ISO1",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_TYPE2": {
"title": "CD_TYPE2",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE2": {
"title": "CD_VALUE2",
"type": "number",
"description": ""
},
"CD_P_UNT2": {
"title": "CD_P_UNT2",
"type": "integer",
"description": ""
},
"CD_D_UNT2": {
"title": "CD_D_UNT2",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO2": {
"title": "CD_D_UISO2",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR2": {
"title": "CD_CURR2",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO2": {
"title": "CD_CU_ISO2",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_TYPE3": {
"title": "CD_TYPE3",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE3": {
"title": "CD_VALUE3",
"type": "number",
"description": ""
},
"CD_P_UNT3": {
"title": "CD_P_UNT3",
"type": "integer",
"description": ""
},
"CD_D_UNT3": {
"title": "CD_D_UNT3",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO3": {
"title": "CD_D_UISO3",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR3": {
"title": "CD_CURR3",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO3": {
"title": "CD_CU_ISO3",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_TYPE4": {
"title": "CD_TYPE4",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE4": {
"title": "CD_VALUE4",
"type": "number",
"description": ""
},
"CD_P_UNT4": {
"title": "CD_P_UNT4",
"type": "integer",
"description": ""
},
"CD_D_UNT4": {
"title": "CD_D_UNT4",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO4": {
"title": "CD_D_UISO4",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR4": {
"title": "CD_CURR4",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO4": {
"title": "CD_CU_ISO4",
"type": "string",
"description": "",
"maxLength": 3
},
"FKK_CONACCT": {
"title": "FKK_CONACCT",
"type": "string",
"description": "",
"maxLength": 12
},
"REF_DOC": {
"title": "REF_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"REF_DOC_CA": {
"title": "REF_DOC_CA",
"type": "string",
"description": "",
"maxLength": 1
},
"SEPA_MANDATE_ID": {
"title": "SEPA_MANDATE_ID",
"type": "string",
"description": "",
"maxLength": 35
}
},
"required": []
},
"WITHOUT_COMMIT": {
"title": "WITHOUT_COMMIT",
"type": "string",
"description": "Without commit?",
"maxLength": 1,
"default": "SPACE"
},
"ORDER_CCARD": {
"title": "ORDER_CCARD",
"type": "array",
"description": "Credit card data",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICCARD",
"type": "object",
"properties": {
"CC_TYPE": {
"title": "CC_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"CC_NUMBER": {
"title": "CC_NUMBER",
"type": "string",
"description": "",
"maxLength": 25
},
"CC_VALID_T": {
"title": "CC_VALID_T",
"type": "string",
"description": "",
"maxLength": 10
},
"CC_NAME": {
"title": "CC_NAME",
"type": "string",
"description": "",
"maxLength": 40
},
"BILLAMOUNT": {
"title": "BILLAMOUNT",
"type": "number",
"description": ""
},
"AUTH_FLAG": {
"title": "AUTH_FLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"AUTHAMOUNT": {
"title": "AUTHAMOUNT",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"AUTH_DATE": {
"title": "AUTH_DATE",
"type": "string",
"description": "",
"maxLength": 10
},
"AUTH_TIME": {
"title": "AUTH_TIME",
"type": "string",
"description": "",
"maxLength": 8
},
"AUTH_CC_NO": {
"title": "AUTH_CC_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"AUTH_REFNO": {
"title": "AUTH_REFNO",
"type": "string",
"description": "",
"maxLength": 15
},
"CC_REACT": {
"title": "CC_REACT",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_RE_AMOUNT": {
"title": "CC_RE_AMOUNT",
"type": "number",
"description": ""
},
"GL_ACCOUNT": {
"title": "GL_ACCOUNT",
"type": "string",
"description": "",
"maxLength": 10
},
"CC_STAT_EX": {
"title": "CC_STAT_EX",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_REACT_T": {
"title": "CC_REACT_T",
"type": "string",
"description": "",
"maxLength": 40
},
"VIRT_CARD": {
"title": "VIRT_CARD",
"type": "string",
"description": "",
"maxLength": 1
},
"MERCHIDCL": {
"title": "MERCHIDCL",
"type": "string",
"description": "",
"maxLength": 15
},
"PRE_AUTH": {
"title": "PRE_AUTH",
"type": "string",
"description": "CCPRE",
"maxLength": 1
},
"CC_SEQ_NO": {
"title": "CC_SEQ_NO",
"type": "string",
"description": "CCFOL",
"maxLength": 10
},
"AMOUNTCHAN": {
"title": "AMOUNTCHAN",
"type": "string",
"description": "CCVAL",
"maxLength": 1
},
"AUTHORTYPE": {
"title": "AUTHORTYPE",
"type": "string",
"description": "CCAUA",
"maxLength": 1
},
"DATAORIGIN": {
"title": "DATAORIGIN",
"type": "string",
"description": "CSOUR",
"maxLength": 1
},
"RADRCHECK1": {
"title": "RADRCHECK1",
"type": "string",
"description": "RCAVR_CC",
"maxLength": 4
},
"RADRCHECK2": {
"title": "RADRCHECK2",
"type": "string",
"description": "RCAVA_CC",
"maxLength": 4
},
"RADRCHECK3": {
"title": "RADRCHECK3",
"type": "string",
"description": "RCAVZ_CC",
"maxLength": 4
},
"RCARDCHECK": {
"title": "RCARDCHECK",
"type": "string",
"description": "RCRSP_CC",
"maxLength": 4
},
"CC_LIMITED": {
"title": "CC_LIMITED",
"type": "string",
"description": "CCBEG",
"maxLength": 1
},
"CC_VERIF_VALUE": {
"title": "CC_VERIF_VALUE",
"type": "string",
"description": "CVVAL",
"maxLength": 6
},
"CC_CTRL_FIELD": {
"title": "CC_CTRL_FIELD",
"type": "string",
"description": "CVVCT",
"maxLength": 1
},
"CC_IN_USE_ST": {
"title": "CC_IN_USE_ST",
"type": "string",
"description": "CVVST",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_BLOB": {
"title": "ORDER_CFGS_BLOB",
"type": "array",
"description": "",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUBLB",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"CONTEXT": {
"title": "CONTEXT",
"type": "string",
"description": "",
"maxLength": 250
}
},
"required": []
}
},
"ORDER_CFGS_INST": {
"title": "ORDER_CFGS_INST",
"type": "array",
"description": "Configuration: Instances",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUINS",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"OBJ_TYPE": {
"title": "OBJ_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"CLASS_TYPE": {
"title": "CLASS_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"OBJ_KEY": {
"title": "OBJ_KEY",
"type": "string",
"description": "",
"maxLength": 50
},
"OBJ_TXT": {
"title": "OBJ_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"QUANTITY": {
"title": "QUANTITY",
"type": "string",
"description": "",
"maxLength": 15
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"QUANTITY_UNIT": {
"title": "QUANTITY_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"COMPLETE": {
"title": "COMPLETE",
"type": "string",
"description": "",
"maxLength": 1
},
"CONSISTENT": {
"title": "CONSISTENT",
"type": "string",
"description": "",
"maxLength": 1
},
"OBJECT_GUID": {
"title": "OBJECT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"PERSIST_ID": {
"title": "PERSIST_ID",
"type": "string",
"description": "",
"maxLength": 32
},
"PERSIST_ID_TYPE": {
"title": "PERSIST_ID_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_PART_OF": {
"title": "ORDER_CFGS_PART_OF",
"type": "array",
"description": "Configuration: Part-of Specifications",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUPRT",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"PARENT_ID": {
"title": "PARENT_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"PART_OF_NO": {
"title": "PART_OF_NO",
"type": "string",
"description": "",
"maxLength": 4
},
"OBJ_TYPE": {
"title": "OBJ_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"CLASS_TYPE": {
"title": "CLASS_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"OBJ_KEY": {
"title": "OBJ_KEY",
"type": "string",
"description": "",
"maxLength": 50
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_RELEVANT": {
"title": "SALES_RELEVANT",
"type": "string",
"description": "",
"maxLength": 1
},
"PART_OF_GUID": {
"title": "PART_OF_GUID",
"type": "string",
"description": "",
"maxLength": 32
}
},
"required": []
}
},
"ORDER_CFGS_REF": {
"title": "ORDER_CFGS_REF",
"type": "array",
"description": "Configuration: Reference Data",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUCFG",
"type": "object",
"properties": {
"POSEX": {
"title": "POSEX",
"type": "string",
"description": "",
"maxLength": 6
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"ROOT_ID": {
"title": "ROOT_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"SCE": {
"title": "SCE",
"type": "string",
"description": "",
"maxLength": 1
},
"KBNAME": {
"title": "KBNAME",
"type": "string",
"description": "",
"maxLength": 30
},
"KBVERSION": {
"title": "KBVERSION",
"type": "string",
"description": "",
"maxLength": 30
},
"COMPLETE": {
"title": "COMPLETE",
"type": "string",
"description": "",
"maxLength": 1
},
"CONSISTENT": {
"title": "CONSISTENT",
"type": "string",
"description": "",
"maxLength": 1
},
"CFGINFO": {
"title": "CFGINFO",
"type": "string",
"description": "",
"maxLength": 250
},
"KBPROFILE": {
"title": "KBPROFILE",
"type": "string",
"description": "",
"maxLength": 30
},
"KBLANGUAGE": {
"title": "KBLANGUAGE",
"type": "string",
"description": "",
"maxLength": 1
},
"CBASE_ID": {
"title": "CBASE_ID",
"type": "string",
"description": "",
"maxLength": 32
},
"CBASE_ID_TYPE": {
"title": "CBASE_ID_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_VALUE": {
"title": "ORDER_CFGS_VALUE",
"type": "array",
"description": "Configuration: Characteristic Values",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUVAL",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"CHARC": {
"title": "CHARC",
"type": "string",
"description": "",
"maxLength": 40
},
"CHARC_TXT": {
"title": "CHARC_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"VALUE": {
"title": "VALUE",
"type": "string",
"description": "",
"maxLength": 40
},
"VALUE_TXT": {
"title": "VALUE_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"VALUE_TO": {
"title": "VALUE_TO",
"type": "string",
"description": "",
"maxLength": 40
},
"VALCODE": {
"title": "VALCODE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_ITEMS_IN": {
"title": "ORDER_ITEMS_IN",
"type": "array",
"description": "Item Data Input",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIITEMIN",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"HG_LV_ITEM": {
"title": "HG_LV_ITEM",
"type": "integer",
"description": ""
},
"PO_ITM_NO": {
"title": "PO_ITM_NO",
"type": "string",
"description": "",
"maxLength": 6
},
"MATERIAL": {
"title": "MATERIAL",
"type": "string",
"description": "",
"maxLength": 18
},
"CUST_MAT": {
"title": "CUST_MAT",
"type": "string",
"description": "",
"maxLength": 22
},
"BATCH": {
"title": "BATCH",
"type": "string",
"description": "",
"maxLength": 10
},
"DLV_GROUP": {
"title": "DLV_GROUP",
"type": "integer",
"description": ""
},
"PART_DLV": {
"title": "PART_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"REASON_REJ": {
"title": "REASON_REJ",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_DATE": {
"title": "BILL_DATE",
"type": "string",
"description": "",
"maxLength": 10
},
"PLANT": {
"title": "PLANT",
"type": "string",
"description": "",
"maxLength": 4
},
"STORE_LOC": {
"title": "STORE_LOC",
"type": "string",
"description": "",
"maxLength": 4
},
"TARGET_QTY": {
"title": "TARGET_QTY",
"type": "integer",
"description": ""
},
"TARGET_QU": {
"title": "TARGET_QU",
"type": "string",
"description": "",
"maxLength": 3
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "integer",
"description": ""
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"ITEM_CATEG": {
"title": "ITEM_CATEG",
"type": "string",
"description": "",
"maxLength": 4
},
"SHORT_TEXT": {
"title": "SHORT_TEXT",
"type": "string",
"description": "",
"maxLength": 40
},
"REQ_DATE": {
"title": "REQ_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_TIME": {
"title": "REQ_TIME",
"type": "string",
"description": "",
"maxLength": 8
},
"COND_TYPE": {
"title": "COND_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"COND_VALUE": {
"title": "COND_VALUE",
"type": "number",
"description": ""
},
"COND_P_UNT": {
"title": "COND_P_UNT",
"type": "integer",
"description": ""
},
"COND_D_UNT": {
"title": "COND_D_UNT",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP1": {
"title": "PRC_GROUP1",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP2": {
"title": "PRC_GROUP2",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP3": {
"title": "PRC_GROUP3",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP4": {
"title": "PRC_GROUP4",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP5": {
"title": "PRC_GROUP5",
"type": "string",
"description": "",
"maxLength": 3
},
"PROD_HIERA": {
"title": "PROD_HIERA",
"type": "string",
"description": "",
"maxLength": 18
},
"MATL_GROUP": {
"title": "MATL_GROUP",
"type": "string",
"description": "",
"maxLength": 9
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 35
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 12
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 35
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 12
},
"PO_ITM_NO_S": {
"title": "PO_ITM_NO_S",
"type": "string",
"description": "",
"maxLength": 6
},
"COND_VAL1": {
"title": "COND_VAL1",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"T_UNIT_ISO": {
"title": "T_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"S_UNIT_ISO": {
"title": "S_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_UNT_ISO": {
"title": "CD_UNT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_MAT35": {
"title": "CUST_MAT35",
"type": "string",
"description": "",
"maxLength": 35
},
"INCOTERMS1": {
"title": "INCOTERMS1",
"type": "string",
"description": "",
"maxLength": 3
},
"INCOTERMS2": {
"title": "INCOTERMS2",
"type": "string",
"description": "",
"maxLength": 28
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 3
},
"ASSORT_MOD": {
"title": "ASSORT_MOD",
"type": "string",
"description": "",
"maxLength": 18
},
"VAL_CONTR": {
"title": "VAL_CONTR",
"type": "string",
"description": "",
"maxLength": 10
},
"VAL_CON_I": {
"title": "VAL_CON_I",
"type": "integer",
"description": ""
},
"REF_DOC": {
"title": "REF_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"REF_DOC_IT": {
"title": "REF_DOC_IT",
"type": "integer",
"description": ""
},
"REF_DOC_CA": {
"title": "REF_DOC_CA",
"type": "string",
"description": "",
"maxLength": 1
},
"CD_TYPE2": {
"title": "CD_TYPE2",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE2": {
"title": "CD_VALUE2",
"type": "number",
"description": ""
},
"CD_P_UNT2": {
"title": "CD_P_UNT2",
"type": "integer",
"description": ""
},
"CD_D_UNT2": {
"title": "CD_D_UNT2",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO2": {
"title": "CD_D_UISO2",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR2": {
"title": "CD_CURR2",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO2": {
"title": "CD_CU_ISO2",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_TYPE3": {
"title": "CD_TYPE3",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE3": {
"title": "CD_VALUE3",
"type": "number",
"description": ""
},
"CD_P_UNT3": {
"title": "CD_P_UNT3",
"type": "integer",
"description": ""
},
"CD_D_UNT3": {
"title": "CD_D_UNT3",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO3": {
"title": "CD_D_UISO3",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR3": {
"title": "CD_CURR3",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO3": {
"title": "CD_CU_ISO3",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_TYPE4": {
"title": "CD_TYPE4",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE4": {
"title": "CD_VALUE4",
"type": "number",
"description": ""
},
"CD_P_UNT4": {
"title": "CD_P_UNT4",
"type": "integer",
"description": ""
},
"CD_D_UNT4": {
"title": "CD_D_UNT4",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO4": {
"title": "CD_D_UISO4",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR4": {
"title": "CD_CURR4",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO4": {
"title": "CD_CU_ISO4",
"type": "string",
"description": "",
"maxLength": 3
},
"MAT_EXT": {
"title": "MAT_EXT",
"type": "string",
"description": "",
"maxLength": 40
},
"MAT_GUID": {
"title": "MAT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_VERS": {
"title": "MAT_VERS",
"type": "string",
"description": "",
"maxLength": 10
},
"ALTERN_BOM": {
"title": "ALTERN_BOM",
"type": "string",
"description": "",
"maxLength": 2
},
"FKK_CONACCT": {
"title": "FKK_CONACCT",
"type": "string",
"description": "",
"maxLength": 12
},
"EAN_UPC": {
"title": "EAN_UPC",
"type": "string",
"description": "",
"maxLength": 18
},
"SHIP_POINT": {
"title": "SHIP_POINT",
"type": "string",
"description": "",
"maxLength": 4
},
"PRODCAT": {
"title": "PRODCAT",
"type": "string",
"description": "",
"maxLength": 10
},
"SGT_RCAT": {
"title": "SGT_RCAT",
"type": "string",
"description": "",
"maxLength": 16
}
},
"required": []
}
},
"ORDER_ITEMS_OUT": {
"title": "ORDER_ITEMS_OUT",
"type": "array",
"description": "Item Data Output",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIITEMEX",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"PO_ITM_NO": {
"title": "PO_ITM_NO",
"type": "string",
"description": "",
"maxLength": 6
},
"MATERIAL": {
"title": "MATERIAL",
"type": "string",
"description": "",
"maxLength": 18
},
"MAT_ENTRD": {
"title": "MAT_ENTRD",
"type": "string",
"description": "",
"maxLength": 18
},
"SHORT_TEXT": {
"title": "SHORT_TEXT",
"type": "string",
"description": "",
"maxLength": 40
},
"NET_VALUE": {
"title": "NET_VALUE",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"SD000SUBTOTAL_1": {
"title": "SUBTOTAL_1",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_2": {
"title": "SUBTOTAL_2",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_3": {
"title": "SUBTOTAL_3",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_4": {
"title": "SUBTOTAL_4",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_5": {
"title": "SUBTOTAL_5",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_6": {
"title": "SUBTOTAL_6",
"type": "number",
"description": ""
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"QTY_REQ_DT": {
"title": "QTY_REQ_DT",
"type": "integer",
"description": ""
},
"DLV_DATE": {
"title": "DLV_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"REPL_TIME": {
"title": "REPL_TIME",
"type": "integer",
"description": ""
},
"CONFIGURED": {
"title": "CONFIGURED",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 35
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 12
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 35
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 12
},
"PO_ITM_NO_S": {
"title": "PO_ITM_NO_S",
"type": "string",
"description": "",
"maxLength": 6
},
"NET_VALUE1": {
"title": "NET_VALUE1",
"type": "number",
"description": ""
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"S_UNIT_ISO": {
"title": "S_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "number",
"description": ""
},
"PLANT": {
"title": "PLANT",
"type": "string",
"description": "",
"maxLength": 4
},
"TX_DOC_CUR": {
"title": "TX_DOC_CUR",
"type": "number",
"description": ""
},
"MAT_EXT": {
"title": "MAT_EXT",
"type": "string",
"description": "",
"maxLength": 40
},
"MAT_GUID": {
"title": "MAT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_VERS": {
"title": "MAT_VERS",
"type": "string",
"description": "",
"maxLength": 10
},
"MAT_E_EXT": {
"title": "MAT_E_EXT",
"type": "string",
"description": "",
"maxLength": 40
},
"MAT_E_GUID": {
"title": "MAT_E_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_E_VERS": {
"title": "MAT_E_VERS",
"type": "string",
"description": "",
"maxLength": 10
},
"TARGET_QTY": {
"title": "TARGET_QTY",
"type": "number",
"description": ""
},
"TARGET_QU": {
"title": "TARGET_QU",
"type": "string",
"description": "",
"maxLength": 3
},
"T_UNIT_ISO": {
"title": "T_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"ITEM_CATEG": {
"title": "ITEM_CATEG",
"type": "string",
"description": "",
"maxLength": 4
},
"SHIP_POINT": {
"title": "SHIP_POINT",
"type": "string",
"description": "",
"maxLength": 4
},
"HG_LV_ITEM": {
"title": "HG_LV_ITEM",
"type": "integer",
"description": ""
},
"CUST_MAT": {
"title": "CUST_MAT",
"type": "string",
"description": "",
"maxLength": 35
},
"PART_DLV": {
"title": "PART_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"REASON_REJ": {
"title": "REASON_REJ",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"STGE_LOC": {
"title": "STGE_LOC",
"type": "string",
"description": "",
"maxLength": 4
},
"PROD_HIER": {
"title": "PROD_HIER",
"type": "string",
"description": "",
"maxLength": 18
},
"MATL_GROUP": {
"title": "MATL_GROUP",
"type": "string",
"description": "",
"maxLength": 9
},
"SUBTOTAL1": {
"title": "SUBTOTAL1",
"type": "number",
"description": ""
},
"SUBTOTAL2": {
"title": "SUBTOTAL2",
"type": "number",
"description": ""
},
"SUBTOTAL3": {
"title": "SUBTOTAL3",
"type": "number",
"description": ""
},
"SUBTOTAL4": {
"title": "SUBTOTAL4",
"type": "number",
"description": ""
},
"SUBTOTAL5": {
"title": "SUBTOTAL5",
"type": "number",
"description": ""
},
"SUBTOTAL6": {
"title": "SUBTOTAL6",
"type": "number",
"description": ""
}
},
"required": []
}
},
"ORDER_PARTNERS": {
"title": "ORDER_PARTNERS",
"type": "array",
"description": "Partners",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIPARTNR",
"type": "object",
"properties": {
"PARTN_ROLE": {
"title": "PARTN_ROLE",
"type": "string",
"description": "",
"maxLength": 2
},
"PARTN_NUMB": {
"title": "PARTN_NUMB",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"TITLE": {
"title": "TITLE",
"type": "string",
"description": "",
"maxLength": 15
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_2": {
"title": "NAME_2",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_3": {
"title": "NAME_3",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_4": {
"title": "NAME_4",
"type": "string",
"description": "",
"maxLength": 35
},
"STREET": {
"title": "STREET",
"type": "string",
"description": "",
"maxLength": 35
},
"COUNTRY": {
"title": "COUNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"COUNTRY_ISO": {
"title": "COUNTRY_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"POSTL_CODE": {
"title": "POSTL_CODE",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_PCD": {
"title": "POBX_PCD",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_CTY": {
"title": "POBX_CTY",
"type": "string",
"description": "",
"maxLength": 35
},
"CITY": {
"title": "CITY",
"type": "string",
"description": "",
"maxLength": 35
},
"DISTRICT": {
"title": "DISTRICT",
"type": "string",
"description": "",
"maxLength": 35
},
"REGION": {
"title": "REGION",
"type": "string",
"description": "",
"maxLength": 3
},
"PO_BOX": {
"title": "PO_BOX",
"type": "string",
"description": "",
"maxLength": 10
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"TELEPHONE2": {
"title": "TELEPHONE2",
"type": "string",
"description": "",
"maxLength": 16
},
"TELEBOX": {
"title": "TELEBOX",
"type": "string",
"description": "",
"maxLength": 15
},
"FAX_NUMBER": {
"title": "FAX_NUMBER",
"type": "string",
"description": "",
"maxLength": 31
},
"TELETEX_NO": {
"title": "TELETEX_NO",
"type": "string",
"description": "",
"maxLength": 30
},
"TELEX_NO": {
"title": "TELEX_NO",
"type": "string",
"description": "",
"maxLength": 30
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"LANGU_ISO": {
"title": "LANGU_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"UNLOAD_PT": {
"title": "UNLOAD_PT",
"type": "string",
"description": "",
"maxLength": 25
},
"TRANSPZONE": {
"title": "TRANSPZONE",
"type": "string",
"description": "",
"maxLength": 10
},
"TAXJURCODE": {
"title": "TAXJURCODE",
"type": "string",
"description": "",
"maxLength": 15
},
"ADDRESS": {
"title": "ADDRESS",
"type": "string",
"description": "",
"maxLength": 10
},
"PRIV_ADDR": {
"title": "PRIV_ADDR",
"type": "string",
"description": "",
"maxLength": 10
},
"ADDR_TYPE": {
"title": "ADDR_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"ADDR_ORIG": {
"title": "ADDR_ORIG",
"type": "string",
"description": "",
"maxLength": 1
},
"ADDR_LINK": {
"title": "ADDR_LINK",
"type": "string",
"description": "",
"maxLength": 10
},
"VAT_REG_NO": {
"title": "VAT_REG_NO",
"type": "string",
"description": "",
"maxLength": 20
}
},
"required": []
}
},
"ORDER_SCHEDULE_EX": {
"title": "ORDER_SCHEDULE_EX",
"type": "array",
"description": "Struture of VBEP with English Field Names",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDHEDU",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"SCHED_LINE": {
"title": "SCHED_LINE",
"type": "integer",
"description": ""
},
"SCHED_TYPE": {
"title": "SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"RELFORDEL": {
"title": "RELFORDEL",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_DATE": {
"title": "REQ_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"REQ_TIME": {
"title": "REQ_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "number",
"description": ""
},
"CONFIR_QTY": {
"title": "CONFIR_QTY",
"type": "number",
"description": ""
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"ISOCODUNIT": {
"title": "ISOCODUNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"REQ_QTY1": {
"title": "REQ_QTY1",
"type": "number",
"description": ""
},
"BASE_UOM": {
"title": "BASE_UOM",
"type": "string",
"description": "",
"maxLength": 3
},
"ISOBASUNIT": {
"title": "ISOBASUNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"REQ_DATE1": {
"title": "REQ_DATE1",
"type": "string",
"description": "",
"maxLength": 8
},
"REQ_TYPE": {
"title": "REQ_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"PLTYPE": {
"title": "PLTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"BUSIDOCNR": {
"title": "BUSIDOCNR",
"type": "string",
"description": "",
"maxLength": 10
},
"BUSIITNR": {
"title": "BUSIITNR",
"type": "integer",
"description": ""
},
"SCHED_LIN1": {
"title": "SCHED_LIN1",
"type": "integer",
"description": ""
},
"EARL_DATE": {
"title": "EARL_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"MAINT_REQ": {
"title": "MAINT_REQ",
"type": "integer",
"description": ""
},
"PREQ_NO": {
"title": "PREQ_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_TYPE": {
"title": "PO_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"DOC_CAT": {
"title": "DOC_CAT",
"type": "string",
"description": "",
"maxLength": 1
},
"CONF_STAT": {
"title": "CONF_STAT",
"type": "string",
"description": "",
"maxLength": 1
},
"IR_IND": {
"title": "IR_IND",
"type": "string",
"description": "",
"maxLength": 1
},
"RETURNDATE": {
"title": "RETURNDATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_DATE": {
"title": "TP_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"MS_DATE": {
"title": "MS_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"LOAD_DATE": {
"title": "LOAD_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"GI_DATE": {
"title": "GI_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"CORR_QTY": {
"title": "CORR_QTY",
"type": "number",
"description": ""
},
"REQ_DLV_BL": {
"title": "REQ_DLV_BL",
"type": "string",
"description": "",
"maxLength": 2
},
"GRP_DEFIN": {
"title": "GRP_DEFIN",
"type": "integer",
"description": ""
},
"RELEASTYP": {
"title": "RELEASTYP",
"type": "string",
"description": "",
"maxLength": 1
},
"FORCAST_NR": {
"title": "FORCAST_NR",
"type": "integer",
"description": ""
},
"COMMIT_QTY": {
"title": "COMMIT_QTY",
"type": "number",
"description": ""
},
"SIZE2": {
"title": "SIZE2",
"type": "number",
"description": ""
},
"SIZE3": {
"title": "SIZE3",
"type": "number",
"description": ""
},
"UNIT_MEAS": {
"title": "UNIT_MEAS",
"type": "string",
"description": "",
"maxLength": 3
},
"ISO_ROMEI": {
"title": "ISO_ROMEI",
"type": "string",
"description": "",
"maxLength": 3
},
"FORMULAKEY": {
"title": "FORMULAKEY",
"type": "string",
"description": "",
"maxLength": 2
},
"SALESQTYNR": {
"title": "SALESQTYNR",
"type": "number",
"description": ""
},
"SALESQTYDE": {
"title": "SALESQTYDE",
"type": "number",
"description": ""
},
"AVAIL_CON": {
"title": "AVAIL_CON",
"type": "string",
"description": "",
"maxLength": 1
},
"MOVE_TYPE": {
"title": "MOVE_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"PREQ_ITEM": {
"title": "PREQ_ITEM",
"type": "integer",
"description": ""
},
"LINTYP_EDI": {
"title": "LINTYP_EDI",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDERID": {
"title": "ORDERID",
"type": "string",
"description": "",
"maxLength": 12
},
"PLANORDNR": {
"title": "PLANORDNR",
"type": "string",
"description": "",
"maxLength": 10
},
"BOMEXPL_NO": {
"title": "BOMEXPL_NO",
"type": "string",
"description": "",
"maxLength": 8
},
"CUSTCHSTAT": {
"title": "CUSTCHSTAT",
"type": "string",
"description": "",
"maxLength": 17
},
"GURANTEED": {
"title": "GURANTEED",
"type": "number",
"description": ""
},
"MS_TIME": {
"title": "MS_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"TP_TIME": {
"title": "TP_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"LOAD_TIME": {
"title": "LOAD_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"GI_TIME": {
"title": "GI_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"ROUTESCHED": {
"title": "ROUTESCHED",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
}
},
"required": [
"ORDER_HEADER_IN",
"ORDER_ITEMS_IN",
"ORDER_PARTNERS"
]
}
Example:
{
"ORDER_HEADER_IN": {
"DOC_TYPE": "TA",
"SALES_ORG": "1000",
"DISTR_CHAN": "10",
"DIVISION": "10"
},
"ORDER_ITEMS_IN": [
{
"ITM_NUMBER": 0,
"HG_LV_ITEM": 0,
"MATERIAL": "H15",
"DLV_GROUP": 0,
"TARGET_QTY": 1,
"REQ_QTY": 1,
"REQ_TIME": "02:14:00",
"COND_VALUE": 0,
"COND_P_UNT": 0
}
],
"ORDER_PARTNERS": [
{
"PARTN_ROLE": "AG",
"PARTN_NUMB": "0000100012",
"ITM_NUMBER": 0
},
{
"PARTN_ROLE": "RE",
"PARTN_NUMB": "0000100012",
"ITM_NUMBER": 0
}
]
}
HTTP status code 200
OK
Headers
- Link: required (string - repeat: true)
Link to the current page, the next page and the previous page. Marked accordingly with rel self, rel next and rel prev. The syntax must be conform to RFC-5988. The link to the current page (self) is required and must be provided always. The link to the next page (next) is optional. If not present, the next page is not available, as the current page is the last page of the result. The link to the previous page (prev) is optional. If not present, the previous page is not available, as the current page is the first page of the result.
Example:
<http://sample.com?pageNumber=2&pageSize=10>; rel="self", <http://sample.com?pageNumber=3&pageSize=10>; rel="next"
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "OutputOfBAPI_SALESORDER_CREATEFROMDAT1",
"type": "object",
"properties": {
"BILLING_PARTY": {
"title": "BAPIPAYER",
"type": "object",
"description": "Payer",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"PAYER": {
"title": "PAYER",
"type": "string",
"description": "",
"maxLength": 10
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 35
},
"STREET": {
"title": "STREET",
"type": "string",
"description": "",
"maxLength": 30
},
"PO_BOX": {
"title": "PO_BOX",
"type": "string",
"description": "",
"maxLength": 10
},
"POSTL_CODE": {
"title": "POSTL_CODE",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_PCD": {
"title": "POBX_PCD",
"type": "string",
"description": "",
"maxLength": 10
},
"CITY": {
"title": "CITY",
"type": "string",
"description": "",
"maxLength": 25
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"COUNTRY": {
"title": "COUNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"C_CTR_AREA": {
"title": "C_CTR_AREA",
"type": "string",
"description": "",
"maxLength": 4
},
"CRED_ACCNT": {
"title": "CRED_ACCNT",
"type": "string",
"description": "",
"maxLength": 10
},
"CRED_LIMIT": {
"title": "CRED_LIMIT",
"type": "number",
"description": ""
},
"ORDER_VALS": {
"title": "ORDER_VALS",
"type": "number",
"description": ""
},
"RCVBL_VALS": {
"title": "RCVBL_VALS",
"type": "number",
"description": ""
},
"CRED_LIAB": {
"title": "CRED_LIAB",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"MN_INVOICE": {
"title": "MN_INVOICE",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_SCHED": {
"title": "BILL_SCHED",
"type": "string",
"description": "",
"maxLength": 2
},
"LIST_SCHED": {
"title": "LIST_SCHED",
"type": "string",
"description": "",
"maxLength": 2
},
"VAL_LIMIT": {
"title": "VAL_LIMIT",
"type": "number",
"description": ""
},
"ACCNT_ASGN": {
"title": "ACCNT_ASGN",
"type": "string",
"description": "",
"maxLength": 2
},
"PMNTTRMS": {
"title": "PMNTTRMS",
"type": "string",
"description": "",
"maxLength": 4
},
"ADD_VAL_DY": {
"title": "ADD_VAL_DY",
"type": "integer",
"description": ""
},
"FIX_VAL_DY": {
"title": "FIX_VAL_DY",
"type": "string",
"description": "",
"maxLength": 8
},
"PROD_PROP": {
"title": "PROD_PROP",
"type": "string",
"description": "",
"maxLength": 10
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"ORDER_BLCK": {
"title": "ORDER_BLCK",
"type": "string",
"description": "",
"maxLength": 2
},
"VAT_REG_NO": {
"title": "VAT_REG_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"VAT_CNTRY": {
"title": "VAT_CNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"TAX_CLASS1": {
"title": "TAX_CLASS1",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"REBATE_REL": {
"title": "REBATE_REL",
"type": "string",
"description": "",
"maxLength": 1
},
"REBATE_FRM": {
"title": "REBATE_FRM",
"type": "string",
"description": "",
"maxLength": 8
},
"CRED_GROUP": {
"title": "CRED_GROUP",
"type": "string",
"description": "",
"maxLength": 4
},
"REPR_GROUP": {
"title": "REPR_GROUP",
"type": "string",
"description": "",
"maxLength": 3
},
"RISK_CATEG": {
"title": "RISK_CATEG",
"type": "string",
"description": "",
"maxLength": 3
},
"TRADE_ID": {
"title": "TRADE_ID",
"type": "string",
"description": "",
"maxLength": 6
}
},
"required": []
},
"RETURN": {
"title": "BAPIRETURN1",
"type": "object",
"description": "Error Text",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"TYPE": {
"title": "TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"ID": {
"title": "ID",
"type": "string",
"description": "",
"maxLength": 20
},
"NUMBER": {
"title": "NUMBER",
"type": "integer",
"description": ""
},
"MESSAGE": {
"title": "MESSAGE",
"type": "string",
"description": "",
"maxLength": 220
},
"LOG_NO": {
"title": "LOG_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"LOG_MSG_NO": {
"title": "LOG_MSG_NO",
"type": "integer",
"description": ""
},
"MESSAGE_V1": {
"title": "MESSAGE_V1",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V2": {
"title": "MESSAGE_V2",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V3": {
"title": "MESSAGE_V3",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V4": {
"title": "MESSAGE_V4",
"type": "string",
"description": "",
"maxLength": 50
}
},
"required": []
},
"SALESDOCUMENT": {
"title": "SALESDOCUMENT",
"type": "string",
"description": "Sales and Distribution Document Number",
"maxLength": 10,
"default": ""
},
"SHIP_TO_PARTY": {
"title": "BAPISHIPTO",
"type": "object",
"description": "Ship-to party",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"SHIP_TO": {
"title": "SHIP_TO",
"type": "string",
"description": "",
"maxLength": 10
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 35
},
"STREET": {
"title": "STREET",
"type": "string",
"description": "",
"maxLength": 30
},
"PO_BOX": {
"title": "PO_BOX",
"type": "string",
"description": "",
"maxLength": 10
},
"POSTL_CODE": {
"title": "POSTL_CODE",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_PCD": {
"title": "POBX_PCD",
"type": "string",
"description": "",
"maxLength": 10
},
"CITY": {
"title": "CITY",
"type": "string",
"description": "",
"maxLength": 25
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"DEST_CNTRY": {
"title": "DEST_CNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"TRNSP_ZONE": {
"title": "TRNSP_ZONE",
"type": "string",
"description": "",
"maxLength": 10
},
"TRAIN_STAT": {
"title": "TRAIN_STAT",
"type": "string",
"description": "",
"maxLength": 25
},
"EXPR_STAT": {
"title": "EXPR_STAT",
"type": "string",
"description": "",
"maxLength": 25
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"UNLOAD_PT": {
"title": "UNLOAD_PT",
"type": "string",
"description": "",
"maxLength": 25
},
"FAC_CALEND": {
"title": "FAC_CALEND",
"type": "string",
"description": "",
"maxLength": 2
},
"RECV_HOURS": {
"title": "RECV_HOURS",
"type": "string",
"description": "",
"maxLength": 3
},
"MO_AM_FROM": {
"title": "MO_AM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"MO_AM_UNTL": {
"title": "MO_AM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"MO_PM_FROM": {
"title": "MO_PM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"MO_PM_UNTL": {
"title": "MO_PM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"TU_AM_FROM": {
"title": "TU_AM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"TU_AM_UNTL": {
"title": "TU_AM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"TU_PM_FROM": {
"title": "TU_PM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"TU_PM_UNTL": {
"title": "TU_PM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"WE_AM_FROM": {
"title": "WE_AM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"WR_AM_UNTL": {
"title": "WR_AM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"WE_PM_FROM": {
"title": "WE_PM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"WE_PM_UNTL": {
"title": "WE_PM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"TH_AM_FROM": {
"title": "TH_AM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"TH_AM_UNTL": {
"title": "TH_AM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"TH_PM_FROM": {
"title": "TH_PM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"TH_PM_UNTL": {
"title": "TH_PM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"FR_AM_FROM": {
"title": "FR_AM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"FR_AM_UNTL": {
"title": "FR_AM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"FR_PM_FROM": {
"title": "FR_PM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"FR_PM_UNTL": {
"title": "FR_PM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"SA_AM_FROM": {
"title": "SA_AM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"SA_AM_UNTL": {
"title": "SA_AM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"SA_PM_FROM": {
"title": "SA_PM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"SA_PM_UNTL": {
"title": "SA_PM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"SU_AM_FROM": {
"title": "SU_AM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"SU_AM_UNTL": {
"title": "SU_AM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"SU_PM_FROM": {
"title": "SU_PM_FROM",
"type": "string",
"description": "",
"maxLength": 6
},
"SU_PM_UNTL": {
"title": "SU_PM_UNTL",
"type": "string",
"description": "",
"maxLength": 6
},
"VAT_REG_NO": {
"title": "VAT_REG_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"TAX_CLASS1": {
"title": "TAX_CLASS1",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"REGION": {
"title": "REGION",
"type": "string",
"description": "",
"maxLength": 3
},
"COUNTY_CDE": {
"title": "COUNTY_CDE",
"type": "string",
"description": "",
"maxLength": 3
},
"CITY_CODE": {
"title": "CITY_CODE",
"type": "string",
"description": "",
"maxLength": 4
},
"TAXJURCODE": {
"title": "TAXJURCODE",
"type": "string",
"description": "",
"maxLength": 15
},
"CTRDATA_OK": {
"title": "CTRDATA_OK",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_PLANT": {
"title": "DLV_PLANT",
"type": "string",
"description": "",
"maxLength": 4
},
"DLV_BLOCK": {
"title": "DLV_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"ORDER_BLCK": {
"title": "ORDER_BLCK",
"type": "string",
"description": "",
"maxLength": 2
},
"PROD_PROP": {
"title": "PROD_PROP",
"type": "string",
"description": "",
"maxLength": 10
},
"SHIP_COND": {
"title": "SHIP_COND",
"type": "string",
"description": "",
"maxLength": 2
},
"ACC_1_TIME": {
"title": "ACC_1_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCNT_GRP": {
"title": "ACCNT_GRP",
"type": "string",
"description": "",
"maxLength": 4
},
"DESC_PARTN": {
"title": "DESC_PARTN",
"type": "string",
"description": "",
"maxLength": 30
},
"FY_VARIANT": {
"title": "FY_VARIANT",
"type": "string",
"description": "",
"maxLength": 2
},
"PROD_ATTR1": {
"title": "PROD_ATTR1",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_ATTR2": {
"title": "PROD_ATTR2",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_ATTR3": {
"title": "PROD_ATTR3",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_ATTR4": {
"title": "PROD_ATTR4",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_ATTR5": {
"title": "PROD_ATTR5",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_ATTR6": {
"title": "PROD_ATTR6",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_ATTR7": {
"title": "PROD_ATTR7",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_ATTR8": {
"title": "PROD_ATTR8",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_ATTR9": {
"title": "PROD_ATTR9",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_ATTRA": {
"title": "PROD_ATTRA",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
},
"SOLD_TO_PARTY": {
"title": "BAPISOLDTO",
"type": "object",
"description": "Sold-to party",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"SOLD_TO": {
"title": "SOLD_TO",
"type": "string",
"description": "",
"maxLength": 10
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 35
},
"STREET": {
"title": "STREET",
"type": "string",
"description": "",
"maxLength": 30
},
"PO_BOX": {
"title": "PO_BOX",
"type": "string",
"description": "",
"maxLength": 10
},
"POSTL_CODE": {
"title": "POSTL_CODE",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_PCD": {
"title": "POBX_PCD",
"type": "string",
"description": "",
"maxLength": 10
},
"CITY": {
"title": "CITY",
"type": "string",
"description": "",
"maxLength": 25
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"COUNTRY": {
"title": "COUNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"STAT_GROUP": {
"title": "STAT_GROUP",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDER_BLCK": {
"title": "ORDER_BLCK",
"type": "string",
"description": "",
"maxLength": 2
},
"PRC_PROCED": {
"title": "PRC_PROCED",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_GROUP": {
"title": "CUST_GROUP",
"type": "string",
"description": "",
"maxLength": 2
},
"SALES_DIST": {
"title": "SALES_DIST",
"type": "string",
"description": "",
"maxLength": 6
},
"PRICE_GRP": {
"title": "PRICE_GRP",
"type": "string",
"description": "",
"maxLength": 2
},
"PRICE_LIST": {
"title": "PRICE_LIST",
"type": "string",
"description": "",
"maxLength": 2
},
"INCOTERMS1": {
"title": "INCOTERMS1",
"type": "string",
"description": "",
"maxLength": 3
},
"INCOTERMS2": {
"title": "INCOTERMS2",
"type": "string",
"description": "",
"maxLength": 28
},
"COMPL_DLV": {
"title": "COMPL_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"MAX_PL_DLV": {
"title": "MAX_PL_DLV",
"type": "number",
"description": ""
},
"ORDER_COMB": {
"title": "ORDER_COMB",
"type": "string",
"description": "",
"maxLength": 1
},
"BTCH_SPLIT": {
"title": "BTCH_SPLIT",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_PRIO": {
"title": "DLV_PRIO",
"type": "integer",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"EXCHG_RATE": {
"title": "EXCHG_RATE",
"type": "string",
"description": "",
"maxLength": 4
},
"SHIP_COND": {
"title": "SHIP_COND",
"type": "string",
"description": "",
"maxLength": 2
},
"PART_DLV": {
"title": "PART_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDER_PROB": {
"title": "ORDER_PROB",
"type": "integer",
"description": ""
},
"DLV_BLOCK": {
"title": "DLV_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"PROD_PROP": {
"title": "PROD_PROP",
"type": "string",
"description": "",
"maxLength": 10
},
"ACC_1_TIME": {
"title": "ACC_1_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_OFF": {
"title": "SALES_OFF",
"type": "string",
"description": "",
"maxLength": 4
},
"SALES_GRP": {
"title": "SALES_GRP",
"type": "string",
"description": "",
"maxLength": 3
},
"VAT_REG_NO": {
"title": "VAT_REG_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"TAX_CLASS1": {
"title": "TAX_CLASS1",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"COMPANY_ID": {
"title": "COMPANY_ID",
"type": "string",
"description": "",
"maxLength": 6
}
},
"required": []
},
"ORDER_CCARD": {
"title": "ORDER_CCARD",
"type": "array",
"description": "Credit card data",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICCARD",
"type": "object",
"properties": {
"CC_TYPE": {
"title": "CC_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"CC_NUMBER": {
"title": "CC_NUMBER",
"type": "string",
"description": "",
"maxLength": 25
},
"CC_VALID_T": {
"title": "CC_VALID_T",
"type": "string",
"description": "",
"maxLength": 10
},
"CC_NAME": {
"title": "CC_NAME",
"type": "string",
"description": "",
"maxLength": 40
},
"BILLAMOUNT": {
"title": "BILLAMOUNT",
"type": "number",
"description": ""
},
"AUTH_FLAG": {
"title": "AUTH_FLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"AUTHAMOUNT": {
"title": "AUTHAMOUNT",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"AUTH_DATE": {
"title": "AUTH_DATE",
"type": "string",
"description": "",
"maxLength": 10
},
"AUTH_TIME": {
"title": "AUTH_TIME",
"type": "string",
"description": "",
"maxLength": 8
},
"AUTH_CC_NO": {
"title": "AUTH_CC_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"AUTH_REFNO": {
"title": "AUTH_REFNO",
"type": "string",
"description": "",
"maxLength": 15
},
"CC_REACT": {
"title": "CC_REACT",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_RE_AMOUNT": {
"title": "CC_RE_AMOUNT",
"type": "number",
"description": ""
},
"GL_ACCOUNT": {
"title": "GL_ACCOUNT",
"type": "string",
"description": "",
"maxLength": 10
},
"CC_STAT_EX": {
"title": "CC_STAT_EX",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_REACT_T": {
"title": "CC_REACT_T",
"type": "string",
"description": "",
"maxLength": 40
},
"VIRT_CARD": {
"title": "VIRT_CARD",
"type": "string",
"description": "",
"maxLength": 1
},
"MERCHIDCL": {
"title": "MERCHIDCL",
"type": "string",
"description": "",
"maxLength": 15
},
"PRE_AUTH": {
"title": "PRE_AUTH",
"type": "string",
"description": "CCPRE",
"maxLength": 1
},
"CC_SEQ_NO": {
"title": "CC_SEQ_NO",
"type": "string",
"description": "CCFOL",
"maxLength": 10
},
"AMOUNTCHAN": {
"title": "AMOUNTCHAN",
"type": "string",
"description": "CCVAL",
"maxLength": 1
},
"AUTHORTYPE": {
"title": "AUTHORTYPE",
"type": "string",
"description": "CCAUA",
"maxLength": 1
},
"DATAORIGIN": {
"title": "DATAORIGIN",
"type": "string",
"description": "CSOUR",
"maxLength": 1
},
"RADRCHECK1": {
"title": "RADRCHECK1",
"type": "string",
"description": "RCAVR_CC",
"maxLength": 4
},
"RADRCHECK2": {
"title": "RADRCHECK2",
"type": "string",
"description": "RCAVA_CC",
"maxLength": 4
},
"RADRCHECK3": {
"title": "RADRCHECK3",
"type": "string",
"description": "RCAVZ_CC",
"maxLength": 4
},
"RCARDCHECK": {
"title": "RCARDCHECK",
"type": "string",
"description": "RCRSP_CC",
"maxLength": 4
},
"CC_LIMITED": {
"title": "CC_LIMITED",
"type": "string",
"description": "CCBEG",
"maxLength": 1
},
"CC_VERIF_VALUE": {
"title": "CC_VERIF_VALUE",
"type": "string",
"description": "CVVAL",
"maxLength": 6
},
"CC_CTRL_FIELD": {
"title": "CC_CTRL_FIELD",
"type": "string",
"description": "CVVCT",
"maxLength": 1
},
"CC_IN_USE_ST": {
"title": "CC_IN_USE_ST",
"type": "string",
"description": "CVVST",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_BLOB": {
"title": "ORDER_CFGS_BLOB",
"type": "array",
"description": "",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUBLB",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"CONTEXT": {
"title": "CONTEXT",
"type": "string",
"description": "",
"maxLength": 250
}
},
"required": []
}
},
"ORDER_CFGS_INST": {
"title": "ORDER_CFGS_INST",
"type": "array",
"description": "Configuration: Instances",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUINS",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"OBJ_TYPE": {
"title": "OBJ_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"CLASS_TYPE": {
"title": "CLASS_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"OBJ_KEY": {
"title": "OBJ_KEY",
"type": "string",
"description": "",
"maxLength": 50
},
"OBJ_TXT": {
"title": "OBJ_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"QUANTITY": {
"title": "QUANTITY",
"type": "string",
"description": "",
"maxLength": 15
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"QUANTITY_UNIT": {
"title": "QUANTITY_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"COMPLETE": {
"title": "COMPLETE",
"type": "string",
"description": "",
"maxLength": 1
},
"CONSISTENT": {
"title": "CONSISTENT",
"type": "string",
"description": "",
"maxLength": 1
},
"OBJECT_GUID": {
"title": "OBJECT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"PERSIST_ID": {
"title": "PERSIST_ID",
"type": "string",
"description": "",
"maxLength": 32
},
"PERSIST_ID_TYPE": {
"title": "PERSIST_ID_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_PART_OF": {
"title": "ORDER_CFGS_PART_OF",
"type": "array",
"description": "Configuration: Part-of Specifications",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUPRT",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"PARENT_ID": {
"title": "PARENT_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"PART_OF_NO": {
"title": "PART_OF_NO",
"type": "string",
"description": "",
"maxLength": 4
},
"OBJ_TYPE": {
"title": "OBJ_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"CLASS_TYPE": {
"title": "CLASS_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"OBJ_KEY": {
"title": "OBJ_KEY",
"type": "string",
"description": "",
"maxLength": 50
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_RELEVANT": {
"title": "SALES_RELEVANT",
"type": "string",
"description": "",
"maxLength": 1
},
"PART_OF_GUID": {
"title": "PART_OF_GUID",
"type": "string",
"description": "",
"maxLength": 32
}
},
"required": []
}
},
"ORDER_CFGS_REF": {
"title": "ORDER_CFGS_REF",
"type": "array",
"description": "Configuration: Reference Data",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUCFG",
"type": "object",
"properties": {
"POSEX": {
"title": "POSEX",
"type": "string",
"description": "",
"maxLength": 6
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"ROOT_ID": {
"title": "ROOT_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"SCE": {
"title": "SCE",
"type": "string",
"description": "",
"maxLength": 1
},
"KBNAME": {
"title": "KBNAME",
"type": "string",
"description": "",
"maxLength": 30
},
"KBVERSION": {
"title": "KBVERSION",
"type": "string",
"description": "",
"maxLength": 30
},
"COMPLETE": {
"title": "COMPLETE",
"type": "string",
"description": "",
"maxLength": 1
},
"CONSISTENT": {
"title": "CONSISTENT",
"type": "string",
"description": "",
"maxLength": 1
},
"CFGINFO": {
"title": "CFGINFO",
"type": "string",
"description": "",
"maxLength": 250
},
"KBPROFILE": {
"title": "KBPROFILE",
"type": "string",
"description": "",
"maxLength": 30
},
"KBLANGUAGE": {
"title": "KBLANGUAGE",
"type": "string",
"description": "",
"maxLength": 1
},
"CBASE_ID": {
"title": "CBASE_ID",
"type": "string",
"description": "",
"maxLength": 32
},
"CBASE_ID_TYPE": {
"title": "CBASE_ID_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_VALUE": {
"title": "ORDER_CFGS_VALUE",
"type": "array",
"description": "Configuration: Characteristic Values",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUVAL",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"CHARC": {
"title": "CHARC",
"type": "string",
"description": "",
"maxLength": 40
},
"CHARC_TXT": {
"title": "CHARC_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"VALUE": {
"title": "VALUE",
"type": "string",
"description": "",
"maxLength": 40
},
"VALUE_TXT": {
"title": "VALUE_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"VALUE_TO": {
"title": "VALUE_TO",
"type": "string",
"description": "",
"maxLength": 40
},
"VALCODE": {
"title": "VALCODE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_ITEMS_IN": {
"title": "ORDER_ITEMS_IN",
"type": "array",
"description": "Item Data Input",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIITEMIN",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"HG_LV_ITEM": {
"title": "HG_LV_ITEM",
"type": "integer",
"description": ""
},
"PO_ITM_NO": {
"title": "PO_ITM_NO",
"type": "string",
"description": "",
"maxLength": 6
},
"MATERIAL": {
"title": "MATERIAL",
"type": "string",
"description": "",
"maxLength": 18
},
"CUST_MAT": {
"title": "CUST_MAT",
"type": "string",
"description": "",
"maxLength": 22
},
"BATCH": {
"title": "BATCH",
"type": "string",
"description": "",
"maxLength": 10
},
"DLV_GROUP": {
"title": "DLV_GROUP",
"type": "integer",
"description": ""
},
"PART_DLV": {
"title": "PART_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"REASON_REJ": {
"title": "REASON_REJ",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_DATE": {
"title": "BILL_DATE",
"type": "string",
"description": "",
"maxLength": 10
},
"PLANT": {
"title": "PLANT",
"type": "string",
"description": "",
"maxLength": 4
},
"STORE_LOC": {
"title": "STORE_LOC",
"type": "string",
"description": "",
"maxLength": 4
},
"TARGET_QTY": {
"title": "TARGET_QTY",
"type": "integer",
"description": ""
},
"TARGET_QU": {
"title": "TARGET_QU",
"type": "string",
"description": "",
"maxLength": 3
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "integer",
"description": ""
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"ITEM_CATEG": {
"title": "ITEM_CATEG",
"type": "string",
"description": "",
"maxLength": 4
},
"SHORT_TEXT": {
"title": "SHORT_TEXT",
"type": "string",
"description": "",
"maxLength": 40
},
"REQ_DATE": {
"title": "REQ_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_TIME": {
"title": "REQ_TIME",
"type": "string",
"description": "",
"maxLength": 8
},
"COND_TYPE": {
"title": "COND_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"COND_VALUE": {
"title": "COND_VALUE",
"type": "number",
"description": ""
},
"COND_P_UNT": {
"title": "COND_P_UNT",
"type": "integer",
"description": ""
},
"COND_D_UNT": {
"title": "COND_D_UNT",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP1": {
"title": "PRC_GROUP1",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP2": {
"title": "PRC_GROUP2",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP3": {
"title": "PRC_GROUP3",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP4": {
"title": "PRC_GROUP4",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP5": {
"title": "PRC_GROUP5",
"type": "string",
"description": "",
"maxLength": 3
},
"PROD_HIERA": {
"title": "PROD_HIERA",
"type": "string",
"description": "",
"maxLength": 18
},
"MATL_GROUP": {
"title": "MATL_GROUP",
"type": "string",
"description": "",
"maxLength": 9
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 35
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 12
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 35
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 12
},
"PO_ITM_NO_S": {
"title": "PO_ITM_NO_S",
"type": "string",
"description": "",
"maxLength": 6
},
"COND_VAL1": {
"title": "COND_VAL1",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"T_UNIT_ISO": {
"title": "T_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"S_UNIT_ISO": {
"title": "S_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_UNT_ISO": {
"title": "CD_UNT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_MAT35": {
"title": "CUST_MAT35",
"type": "string",
"description": "",
"maxLength": 35
},
"INCOTERMS1": {
"title": "INCOTERMS1",
"type": "string",
"description": "",
"maxLength": 3
},
"INCOTERMS2": {
"title": "INCOTERMS2",
"type": "string",
"description": "",
"maxLength": 28
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 3
},
"ASSORT_MOD": {
"title": "ASSORT_MOD",
"type": "string",
"description": "",
"maxLength": 18
},
"VAL_CONTR": {
"title": "VAL_CONTR",
"type": "string",
"description": "",
"maxLength": 10
},
"VAL_CON_I": {
"title": "VAL_CON_I",
"type": "integer",
"description": ""
},
"REF_DOC": {
"title": "REF_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"REF_DOC_IT": {
"title": "REF_DOC_IT",
"type": "integer",
"description": ""
},
"REF_DOC_CA": {
"title": "REF_DOC_CA",
"type": "string",
"description": "",
"maxLength": 1
},
"CD_TYPE2": {
"title": "CD_TYPE2",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE2": {
"title": "CD_VALUE2",
"type": "number",
"description": ""
},
"CD_P_UNT2": {
"title": "CD_P_UNT2",
"type": "integer",
"description": ""
},
"CD_D_UNT2": {
"title": "CD_D_UNT2",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO2": {
"title": "CD_D_UISO2",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR2": {
"title": "CD_CURR2",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO2": {
"title": "CD_CU_ISO2",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_TYPE3": {
"title": "CD_TYPE3",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE3": {
"title": "CD_VALUE3",
"type": "number",
"description": ""
},
"CD_P_UNT3": {
"title": "CD_P_UNT3",
"type": "integer",
"description": ""
},
"CD_D_UNT3": {
"title": "CD_D_UNT3",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO3": {
"title": "CD_D_UISO3",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR3": {
"title": "CD_CURR3",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO3": {
"title": "CD_CU_ISO3",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_TYPE4": {
"title": "CD_TYPE4",
"type": "string",
"description": "",
"maxLength": 4
},
"CD_VALUE4": {
"title": "CD_VALUE4",
"type": "number",
"description": ""
},
"CD_P_UNT4": {
"title": "CD_P_UNT4",
"type": "integer",
"description": ""
},
"CD_D_UNT4": {
"title": "CD_D_UNT4",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_D_UISO4": {
"title": "CD_D_UISO4",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_CURR4": {
"title": "CD_CURR4",
"type": "string",
"description": "",
"maxLength": 5
},
"CD_CU_ISO4": {
"title": "CD_CU_ISO4",
"type": "string",
"description": "",
"maxLength": 3
},
"MAT_EXT": {
"title": "MAT_EXT",
"type": "string",
"description": "",
"maxLength": 40
},
"MAT_GUID": {
"title": "MAT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_VERS": {
"title": "MAT_VERS",
"type": "string",
"description": "",
"maxLength": 10
},
"ALTERN_BOM": {
"title": "ALTERN_BOM",
"type": "string",
"description": "",
"maxLength": 2
},
"FKK_CONACCT": {
"title": "FKK_CONACCT",
"type": "string",
"description": "",
"maxLength": 12
},
"EAN_UPC": {
"title": "EAN_UPC",
"type": "string",
"description": "",
"maxLength": 18
},
"SHIP_POINT": {
"title": "SHIP_POINT",
"type": "string",
"description": "",
"maxLength": 4
},
"PRODCAT": {
"title": "PRODCAT",
"type": "string",
"description": "",
"maxLength": 10
},
"SGT_RCAT": {
"title": "SGT_RCAT",
"type": "string",
"description": "",
"maxLength": 16
}
},
"required": []
}
},
"ORDER_ITEMS_OUT": {
"title": "ORDER_ITEMS_OUT",
"type": "array",
"description": "Item Data Output",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIITEMEX",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"PO_ITM_NO": {
"title": "PO_ITM_NO",
"type": "string",
"description": "",
"maxLength": 6
},
"MATERIAL": {
"title": "MATERIAL",
"type": "string",
"description": "",
"maxLength": 18
},
"MAT_ENTRD": {
"title": "MAT_ENTRD",
"type": "string",
"description": "",
"maxLength": 18
},
"SHORT_TEXT": {
"title": "SHORT_TEXT",
"type": "string",
"description": "",
"maxLength": 40
},
"NET_VALUE": {
"title": "NET_VALUE",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"SD000SUBTOTAL_1": {
"title": "SUBTOTAL_1",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_2": {
"title": "SUBTOTAL_2",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_3": {
"title": "SUBTOTAL_3",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_4": {
"title": "SUBTOTAL_4",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_5": {
"title": "SUBTOTAL_5",
"type": "number",
"description": ""
},
"SD000SUBTOTAL_6": {
"title": "SUBTOTAL_6",
"type": "number",
"description": ""
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"QTY_REQ_DT": {
"title": "QTY_REQ_DT",
"type": "integer",
"description": ""
},
"DLV_DATE": {
"title": "DLV_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"REPL_TIME": {
"title": "REPL_TIME",
"type": "integer",
"description": ""
},
"CONFIGURED": {
"title": "CONFIGURED",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 35
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 12
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 35
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 12
},
"PO_ITM_NO_S": {
"title": "PO_ITM_NO_S",
"type": "string",
"description": "",
"maxLength": 6
},
"NET_VALUE1": {
"title": "NET_VALUE1",
"type": "number",
"description": ""
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"S_UNIT_ISO": {
"title": "S_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "number",
"description": ""
},
"PLANT": {
"title": "PLANT",
"type": "string",
"description": "",
"maxLength": 4
},
"TX_DOC_CUR": {
"title": "TX_DOC_CUR",
"type": "number",
"description": ""
},
"MAT_EXT": {
"title": "MAT_EXT",
"type": "string",
"description": "",
"maxLength": 40
},
"MAT_GUID": {
"title": "MAT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_VERS": {
"title": "MAT_VERS",
"type": "string",
"description": "",
"maxLength": 10
},
"MAT_E_EXT": {
"title": "MAT_E_EXT",
"type": "string",
"description": "",
"maxLength": 40
},
"MAT_E_GUID": {
"title": "MAT_E_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_E_VERS": {
"title": "MAT_E_VERS",
"type": "string",
"description": "",
"maxLength": 10
},
"TARGET_QTY": {
"title": "TARGET_QTY",
"type": "number",
"description": ""
},
"TARGET_QU": {
"title": "TARGET_QU",
"type": "string",
"description": "",
"maxLength": 3
},
"T_UNIT_ISO": {
"title": "T_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"ITEM_CATEG": {
"title": "ITEM_CATEG",
"type": "string",
"description": "",
"maxLength": 4
},
"SHIP_POINT": {
"title": "SHIP_POINT",
"type": "string",
"description": "",
"maxLength": 4
},
"HG_LV_ITEM": {
"title": "HG_LV_ITEM",
"type": "integer",
"description": ""
},
"CUST_MAT": {
"title": "CUST_MAT",
"type": "string",
"description": "",
"maxLength": 35
},
"PART_DLV": {
"title": "PART_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"REASON_REJ": {
"title": "REASON_REJ",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"STGE_LOC": {
"title": "STGE_LOC",
"type": "string",
"description": "",
"maxLength": 4
},
"PROD_HIER": {
"title": "PROD_HIER",
"type": "string",
"description": "",
"maxLength": 18
},
"MATL_GROUP": {
"title": "MATL_GROUP",
"type": "string",
"description": "",
"maxLength": 9
},
"SUBTOTAL1": {
"title": "SUBTOTAL1",
"type": "number",
"description": ""
},
"SUBTOTAL2": {
"title": "SUBTOTAL2",
"type": "number",
"description": ""
},
"SUBTOTAL3": {
"title": "SUBTOTAL3",
"type": "number",
"description": ""
},
"SUBTOTAL4": {
"title": "SUBTOTAL4",
"type": "number",
"description": ""
},
"SUBTOTAL5": {
"title": "SUBTOTAL5",
"type": "number",
"description": ""
},
"SUBTOTAL6": {
"title": "SUBTOTAL6",
"type": "number",
"description": ""
}
},
"required": []
}
},
"ORDER_PARTNERS": {
"title": "ORDER_PARTNERS",
"type": "array",
"description": "Partners",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIPARTNR",
"type": "object",
"properties": {
"PARTN_ROLE": {
"title": "PARTN_ROLE",
"type": "string",
"description": "",
"maxLength": 2
},
"PARTN_NUMB": {
"title": "PARTN_NUMB",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"TITLE": {
"title": "TITLE",
"type": "string",
"description": "",
"maxLength": 15
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_2": {
"title": "NAME_2",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_3": {
"title": "NAME_3",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_4": {
"title": "NAME_4",
"type": "string",
"description": "",
"maxLength": 35
},
"STREET": {
"title": "STREET",
"type": "string",
"description": "",
"maxLength": 35
},
"COUNTRY": {
"title": "COUNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"COUNTRY_ISO": {
"title": "COUNTRY_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"POSTL_CODE": {
"title": "POSTL_CODE",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_PCD": {
"title": "POBX_PCD",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_CTY": {
"title": "POBX_CTY",
"type": "string",
"description": "",
"maxLength": 35
},
"CITY": {
"title": "CITY",
"type": "string",
"description": "",
"maxLength": 35
},
"DISTRICT": {
"title": "DISTRICT",
"type": "string",
"description": "",
"maxLength": 35
},
"REGION": {
"title": "REGION",
"type": "string",
"description": "",
"maxLength": 3
},
"PO_BOX": {
"title": "PO_BOX",
"type": "string",
"description": "",
"maxLength": 10
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"TELEPHONE2": {
"title": "TELEPHONE2",
"type": "string",
"description": "",
"maxLength": 16
},
"TELEBOX": {
"title": "TELEBOX",
"type": "string",
"description": "",
"maxLength": 15
},
"FAX_NUMBER": {
"title": "FAX_NUMBER",
"type": "string",
"description": "",
"maxLength": 31
},
"TELETEX_NO": {
"title": "TELETEX_NO",
"type": "string",
"description": "",
"maxLength": 30
},
"TELEX_NO": {
"title": "TELEX_NO",
"type": "string",
"description": "",
"maxLength": 30
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"LANGU_ISO": {
"title": "LANGU_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"UNLOAD_PT": {
"title": "UNLOAD_PT",
"type": "string",
"description": "",
"maxLength": 25
},
"TRANSPZONE": {
"title": "TRANSPZONE",
"type": "string",
"description": "",
"maxLength": 10
},
"TAXJURCODE": {
"title": "TAXJURCODE",
"type": "string",
"description": "",
"maxLength": 15
},
"ADDRESS": {
"title": "ADDRESS",
"type": "string",
"description": "",
"maxLength": 10
},
"PRIV_ADDR": {
"title": "PRIV_ADDR",
"type": "string",
"description": "",
"maxLength": 10
},
"ADDR_TYPE": {
"title": "ADDR_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"ADDR_ORIG": {
"title": "ADDR_ORIG",
"type": "string",
"description": "",
"maxLength": 1
},
"ADDR_LINK": {
"title": "ADDR_LINK",
"type": "string",
"description": "",
"maxLength": 10
},
"VAT_REG_NO": {
"title": "VAT_REG_NO",
"type": "string",
"description": "",
"maxLength": 20
}
},
"required": []
}
},
"ORDER_SCHEDULE_EX": {
"title": "ORDER_SCHEDULE_EX",
"type": "array",
"description": "Struture of VBEP with English Field Names",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDHEDU",
"type": "object",
"properties": {
"OPERATION": {
"title": "OPERATION",
"type": "string",
"description": "",
"maxLength": 3
},
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"SCHED_LINE": {
"title": "SCHED_LINE",
"type": "integer",
"description": ""
},
"SCHED_TYPE": {
"title": "SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"RELFORDEL": {
"title": "RELFORDEL",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_DATE": {
"title": "REQ_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"REQ_TIME": {
"title": "REQ_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "number",
"description": ""
},
"CONFIR_QTY": {
"title": "CONFIR_QTY",
"type": "number",
"description": ""
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"ISOCODUNIT": {
"title": "ISOCODUNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"REQ_QTY1": {
"title": "REQ_QTY1",
"type": "number",
"description": ""
},
"BASE_UOM": {
"title": "BASE_UOM",
"type": "string",
"description": "",
"maxLength": 3
},
"ISOBASUNIT": {
"title": "ISOBASUNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"REQ_DATE1": {
"title": "REQ_DATE1",
"type": "string",
"description": "",
"maxLength": 8
},
"REQ_TYPE": {
"title": "REQ_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"PLTYPE": {
"title": "PLTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"BUSIDOCNR": {
"title": "BUSIDOCNR",
"type": "string",
"description": "",
"maxLength": 10
},
"BUSIITNR": {
"title": "BUSIITNR",
"type": "integer",
"description": ""
},
"SCHED_LIN1": {
"title": "SCHED_LIN1",
"type": "integer",
"description": ""
},
"EARL_DATE": {
"title": "EARL_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"MAINT_REQ": {
"title": "MAINT_REQ",
"type": "integer",
"description": ""
},
"PREQ_NO": {
"title": "PREQ_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_TYPE": {
"title": "PO_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"DOC_CAT": {
"title": "DOC_CAT",
"type": "string",
"description": "",
"maxLength": 1
},
"CONF_STAT": {
"title": "CONF_STAT",
"type": "string",
"description": "",
"maxLength": 1
},
"IR_IND": {
"title": "IR_IND",
"type": "string",
"description": "",
"maxLength": 1
},
"RETURNDATE": {
"title": "RETURNDATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_DATE": {
"title": "TP_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"MS_DATE": {
"title": "MS_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"LOAD_DATE": {
"title": "LOAD_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"GI_DATE": {
"title": "GI_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"CORR_QTY": {
"title": "CORR_QTY",
"type": "number",
"description": ""
},
"REQ_DLV_BL": {
"title": "REQ_DLV_BL",
"type": "string",
"description": "",
"maxLength": 2
},
"GRP_DEFIN": {
"title": "GRP_DEFIN",
"type": "integer",
"description": ""
},
"RELEASTYP": {
"title": "RELEASTYP",
"type": "string",
"description": "",
"maxLength": 1
},
"FORCAST_NR": {
"title": "FORCAST_NR",
"type": "integer",
"description": ""
},
"COMMIT_QTY": {
"title": "COMMIT_QTY",
"type": "number",
"description": ""
},
"SIZE2": {
"title": "SIZE2",
"type": "number",
"description": ""
},
"SIZE3": {
"title": "SIZE3",
"type": "number",
"description": ""
},
"UNIT_MEAS": {
"title": "UNIT_MEAS",
"type": "string",
"description": "",
"maxLength": 3
},
"ISO_ROMEI": {
"title": "ISO_ROMEI",
"type": "string",
"description": "",
"maxLength": 3
},
"FORMULAKEY": {
"title": "FORMULAKEY",
"type": "string",
"description": "",
"maxLength": 2
},
"SALESQTYNR": {
"title": "SALESQTYNR",
"type": "number",
"description": ""
},
"SALESQTYDE": {
"title": "SALESQTYDE",
"type": "number",
"description": ""
},
"AVAIL_CON": {
"title": "AVAIL_CON",
"type": "string",
"description": "",
"maxLength": 1
},
"MOVE_TYPE": {
"title": "MOVE_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"PREQ_ITEM": {
"title": "PREQ_ITEM",
"type": "integer",
"description": ""
},
"LINTYP_EDI": {
"title": "LINTYP_EDI",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDERID": {
"title": "ORDERID",
"type": "string",
"description": "",
"maxLength": 12
},
"PLANORDNR": {
"title": "PLANORDNR",
"type": "string",
"description": "",
"maxLength": 10
},
"BOMEXPL_NO": {
"title": "BOMEXPL_NO",
"type": "string",
"description": "",
"maxLength": 8
},
"CUSTCHSTAT": {
"title": "CUSTCHSTAT",
"type": "string",
"description": "",
"maxLength": 17
},
"GURANTEED": {
"title": "GURANTEED",
"type": "number",
"description": ""
},
"MS_TIME": {
"title": "MS_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"TP_TIME": {
"title": "TP_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"LOAD_TIME": {
"title": "LOAD_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"GI_TIME": {
"title": "GI_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"ROUTESCHED": {
"title": "ROUTESCHED",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
}
},
"required": [
"BILLING_PARTY",
"RETURN",
"SALESDOCUMENT",
"SHIP_TO_PARTY",
"SOLD_TO_PARTY",
"ORDER_ITEMS_IN",
"ORDER_PARTNERS"
]
}
Example:
{
"BILLING_PARTY": {
"PAYER": "0000100012",
"NAME": "Booktree Inc.",
"STREET": "15 Harbor Road",
"POSTL_CODE": "92121",
"CITY": "San Diego",
"LANGU": "E",
"COUNTRY": "US",
"CRED_LIMIT": 0,
"ORDER_VALS": 0,
"RCVBL_VALS": 0,
"CRED_LIAB": 0,
"VAL_LIMIT": 0,
"ACCNT_ASGN": "01",
"PMNTTRMS": "0001",
"ADD_VAL_DY": 0
},
"RETURN": {
"NUMBER": 0,
"LOG_MSG_NO": 0
},
"SALESDOCUMENT": "0000073735",
"SHIP_TO_PARTY": {
"SHIP_TO": "0000100012",
"NAME": "Booktree Inc.",
"STREET": "15 Harbor Road",
"POSTL_CODE": "92121",
"CITY": "San Diego",
"LANGU": "E",
"DEST_CNTRY": "US",
"TRNSP_ZONE": "0000000001",
"REGION": "CA",
"TAXJURCODE": "CA0000000",
"DLV_PLANT": "1000",
"SHIP_COND": "01",
"ACCNT_GRP": "YB01"
},
"SOLD_TO_PARTY": {
"SOLD_TO": "0000100012",
"NAME": "Booktree Inc.",
"STREET": "15 Harbor Road",
"POSTL_CODE": "92121",
"CITY": "San Diego",
"LANGU": "E",
"COUNTRY": "US",
"STAT_GROUP": "1",
"PRC_PROCED": "1",
"CUST_GROUP": "02",
"INCOTERMS1": "EXW",
"INCOTERMS2": "Manufacturing",
"MAX_PL_DLV": 0,
"DLV_PRIO": 2,
"CURRENCY": "USD",
"SHIP_COND": "01",
"ORDER_PROB": 100
},
"ORDER_CCARD": [],
"ORDER_CFGS_BLOB": [],
"ORDER_CFGS_INST": [],
"ORDER_CFGS_PART_OF": [],
"ORDER_CFGS_REF": [],
"ORDER_CFGS_VALUE": [],
"ORDER_ITEMS_IN": [
{
"ITM_NUMBER": 0,
"HG_LV_ITEM": 0,
"MATERIAL": "H15",
"DLV_GROUP": 0,
"TARGET_QTY": 1,
"REQ_QTY": 1,
"REQ_TIME": "02:14:00",
"COND_VALUE": 0,
"COND_P_UNT": 0,
"COND_VAL1": 0,
"VAL_CON_I": 0,
"REF_DOC_IT": 0,
"CD_VALUE2": 0,
"CD_P_UNT2": 0,
"CD_VALUE3": 0,
"CD_P_UNT3": 0,
"CD_VALUE4": 0,
"CD_P_UNT4": 0
}
],
"ORDER_ITEMS_OUT": [
{
"ITM_NUMBER": 10,
"MATERIAL": "H15",
"MAT_ENTRD": "H15",
"SHORT_TEXT": "Notebook X15",
"NET_VALUE": 48,
"CURRENCY": "USD",
"SD000SUBTOTAL_1": 49,
"SD000SUBTOTAL_2": 48,
"SD000SUBTOTAL_3": 48,
"SD000SUBTOTAL_4": 0,
"SD000SUBTOTAL_5": 0,
"SD000SUBTOTAL_6": 0,
"SALES_UNIT": "EA",
"QTY_REQ_DT": 1,
"DLV_DATE": "2016-03-10",
"REPL_TIME": 0,
"NET_VALUE1": 0.48,
"CURR_ISO": "USD",
"S_UNIT_ISO": "EA",
"REQ_QTY": 0.001,
"PLANT": "1000",
"TX_DOC_CUR": 0.03,
"TARGET_QTY": 0,
"TARGET_QU": "EA",
"T_UNIT_ISO": "EA",
"ITEM_CATEG": "TAN",
"SHIP_POINT": "1000",
"HG_LV_ITEM": 0,
"PROD_HIER": "00001B000100000003",
"MATL_GROUP": "YBT01",
"SUBTOTAL1": 0.49,
"SUBTOTAL2": 0.48,
"SUBTOTAL3": 0.48,
"SUBTOTAL4": 0,
"SUBTOTAL5": 0,
"SUBTOTAL6": 0
}
],
"ORDER_PARTNERS": [
{
"PARTN_ROLE": "AG",
"PARTN_NUMB": "0000100012",
"ITM_NUMBER": 0
},
{
"PARTN_ROLE": "RE",
"PARTN_NUMB": "0000100012",
"ITM_NUMBER": 0
}
],
"ORDER_SCHEDULE_EX": [
{
"ITM_NUMBER": 10,
"SCHED_LINE": 1,
"SCHED_TYPE": "CP",
"RELFORDEL": "X",
"REQ_DATE": "2016-03-10",
"REQ_TIME": "02:14:00",
"REQ_QTY": 0.001,
"CONFIR_QTY": 0.001,
"SALES_UNIT": "EA",
"REQ_QTY1": 0.001,
"BASE_UOM": "EA",
"REQ_TYPE": "01",
"PLTYPE": "1",
"BUSIITNR": 0,
"SCHED_LIN1": 0,
"MAINT_REQ": 0,
"DATE_TYPE": "1",
"TP_DATE": "2016-03-09",
"MS_DATE": "2016-03-09",
"LOAD_DATE": "2016-03-09",
"GI_DATE": "2016-03-09",
"CORR_QTY": 0.001,
"GRP_DEFIN": 0,
"FORCAST_NR": 0,
"COMMIT_QTY": 0,
"SIZE2": 0,
"SIZE3": 0,
"SALESQTYNR": 1,
"SALESQTYDE": 1,
"AVAIL_CON": "X",
"MOVE_TYPE": "601",
"PREQ_ITEM": 0,
"GURANTEED": 0,
"MS_TIME": "22:00:00",
"TP_TIME": "22:00:00",
"LOAD_TIME": "22:00:00",
"GI_TIME": "22:00:00"
}
]
}
HTTP status code 400
Request syntactically incorrect. Any details will be provided within the response payload.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 400,
"message": "There are validation problems, see details section for more information",
"moreInfo": "https://api.yaas.io/patterns/errortypes.html",
"type": "validation_violation",
"details": [
{
"field": "Accept-Language",
"message": "not a language",
"type": "invalid_header"
}
]
}
HTTP status code 401
Given request is unauthorized. Bad or expired token. Reauthenticate the user. Any details will be provided within the response payload.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 401,
"message": "Authorization: Unauthorized. Bearer TOKEN is invalid",
"type": "insufficient_credentials",
"moreInfo": "https://api.yaas.io/patterns/errortypes.html"
}
HTTP status code 403
Evaluated request scopes in access token are not sufficient and do not match required scopes.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 403,
"message": "Given request does not have required scopes in access token. It is not authorized to perform this operation.",
"type": "insufficient_permissions"
}
HTTP status code 408
Request timed out.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 408,
"type": "request_timeout",
"message": "The request timed out."
}
HTTP status code 500
An internal server error occurred.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 500,
"type": "internal_service_error",
"message": "An internal server error occurred."
}
/{tenant}/erpsalesorder/createsdorder2
Creation approach 2 of an ERP SD sales order
/{tenant}/erpsalesorder/createsdorder2
Create an ERP SD sales order using a JsonRPC post to call BAPI_SALESORDER_CREATEFROMDAT2. This method supports more input parameters than creation approach 1.
When you create an ERP SD sales order, you can specify the relevant information, for example:
- Header information of sales order, such as document type, sales organization, distribution chain and division
- Included line items, such as material identifier and number of items
- Relevant partner, such as the billing partner and the shipping partner
- Relevant schedule line
- Number assignment of ERP SD sales order
- Extension information for included line items
Furthermore, before you create an ERP SD sales order, you can simulate the SD order using the relevant information mentioned in the creation case.
Required scope: hybris.sdorderproxy_manage
post /{tenant}/erpsalesorder/createsdorder2
Create an ERP SD sales order using a JsonRPC post to call BAPI_SALESORDER_CREATEFROMDAT2. This method supports more input parameters than creation approach 1.
When you create an ERP SD sales order, you can specify the relevant information, for example:
- Header information of sales order, such as document type, sales organization, distribution chain and division
- Included line items, such as material identifier and number of items
- Relevant partner, such as the billing partner and the shipping partner
- Relevant schedule line
- Number assignment of ERP SD sales order
- Extension information for included line items
Furthermore, before you create an ERP SD sales order, you can simulate the SD order using the relevant information mentioned in the creation case.
Required scope: hybris.sdorderproxy_manage
URI Parameters
- Tenant: required (string - minLength: 3 - maxLength: 16 - pattern: [a-z][a-z0-9]+)
Stands for the "project" that requests this resource. Must match the "project" that is associated with the access token in the Authorization header.
Example:
myexampleshop
Headers
- Accept-Language: (string - repeat: true)
The value of the locale identifier of the language in which the attribute should be returned. Provide several values separated by comma, in order to specify fallback languages.
Example:
pl
- hybris-languages: (string - repeat: true)
Comma separated list of language identifiers for which the localization for an attribute should be provided.
Example:
en,pl,it
- Authorization: required (string)
Used to send a valid OAuth2 access token.
Example:
Bearer access_token
Query Parameters
- pageNumber: (integer - default: 1 - minimum: 1)
The page number to be retrieved where the size of the pages must be specified by the pageSize parameter. The number of the first page is 1.
Example:
1
- pageSize: (integer - default: 16 - minimum: 1)
The number of documents being retrieved on the page.
Example:
16
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "InputOfBAPI_SALESORDER_CREATEFROMDAT2",
"type": "object",
"properties": {
"BEHAVE_WHEN_ERROR": {
"title": "BEHAVE_WHEN_ERROR",
"type": "string",
"description": "Error Handling",
"maxLength": 1,
"default": ""
},
"BINARY_RELATIONSHIPTYPE": {
"title": "BINARY_RELATIONSHIPTYPE",
"type": "string",
"description": "Binary Relationship Type (Private)",
"maxLength": 4,
"default": ""
},
"CONVERT": {
"title": "CONVERT",
"type": "string",
"description": "Conversion of Partner Function + Order Type",
"maxLength": 1,
"default": "SPACE"
},
"INT_NUMBER_ASSIGNMENT": {
"title": "INT_NUMBER_ASSIGNMENT",
"type": "string",
"description": "Internal Item Number Assignment",
"maxLength": 1,
"default": ""
},
"LOGIC_SWITCH": {
"title": "BAPISDLS",
"type": "object",
"description": "Internal Control Parameter",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"PRICING": {
"title": "PRICING",
"type": "string",
"description": "",
"maxLength": 1
},
"ATP_WRKMOD": {
"title": "ATP_WRKMOD",
"type": "string",
"description": "",
"maxLength": 1
},
"SCHEDULING": {
"title": "SCHEDULING",
"type": "string",
"description": "",
"maxLength": 1
},
"NOSTRUCTURE": {
"title": "NOSTRUCTURE",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_HANDL": {
"title": "COND_HANDL",
"type": "string",
"description": "",
"maxLength": 1
},
"ADDR_CHECK": {
"title": "ADDR_CHECK",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
},
"ORDER_HEADER_IN": {
"title": "BAPISDHD1",
"type": "object",
"description": "Order Header",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFDOCTYPE": {
"title": "REFDOCTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"DOC_TYPE": {
"title": "DOC_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"COLLECT_NO": {
"title": "COLLECT_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"SALES_ORG": {
"title": "SALES_ORG",
"type": "string",
"description": "",
"maxLength": 4
},
"DISTR_CHAN": {
"title": "DISTR_CHAN",
"type": "string",
"description": "",
"maxLength": 2
},
"DIVISION": {
"title": "DIVISION",
"type": "string",
"description": "",
"maxLength": 2
},
"SALES_GRP": {
"title": "SALES_GRP",
"type": "string",
"description": "",
"maxLength": 3
},
"SALES_OFF": {
"title": "SALES_OFF",
"type": "string",
"description": "",
"maxLength": 4
},
"REQ_DATE_H": {
"title": "REQ_DATE_H",
"type": "string",
"description": "",
"maxLength": 8
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 4
},
"PO_SUPPLEM": {
"title": "PO_SUPPLEM",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 12
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 35
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"PRICE_GRP": {
"title": "PRICE_GRP",
"type": "string",
"description": "",
"maxLength": 2
},
"CUST_GROUP": {
"title": "CUST_GROUP",
"type": "string",
"description": "",
"maxLength": 2
},
"SALES_DIST": {
"title": "SALES_DIST",
"type": "string",
"description": "",
"maxLength": 6
},
"PRICE_LIST": {
"title": "PRICE_LIST",
"type": "string",
"description": "",
"maxLength": 2
},
"INCOTERMS1": {
"title": "INCOTERMS1",
"type": "string",
"description": "",
"maxLength": 3
},
"INCOTERMS2": {
"title": "INCOTERMS2",
"type": "string",
"description": "",
"maxLength": 28
},
"PMNTTRMS": {
"title": "PMNTTRMS",
"type": "string",
"description": "",
"maxLength": 4
},
"DLV_BLOCK": {
"title": "DLV_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"ORD_REASON": {
"title": "ORD_REASON",
"type": "string",
"description": "",
"maxLength": 3
},
"COMPL_DLV": {
"title": "COMPL_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICE_DATE": {
"title": "PRICE_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"QT_VALID_F": {
"title": "QT_VALID_F",
"type": "string",
"description": "",
"maxLength": 8
},
"QT_VALID_T": {
"title": "QT_VALID_T",
"type": "string",
"description": "",
"maxLength": 8
},
"CT_VALID_F": {
"title": "CT_VALID_F",
"type": "string",
"description": "",
"maxLength": 8
},
"CT_VALID_T": {
"title": "CT_VALID_T",
"type": "string",
"description": "",
"maxLength": 8
},
"CUST_GRP1": {
"title": "CUST_GRP1",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP2": {
"title": "CUST_GRP2",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP3": {
"title": "CUST_GRP3",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP4": {
"title": "CUST_GRP4",
"type": "string",
"description": "",
"maxLength": 3
},
"CUST_GRP5": {
"title": "CUST_GRP5",
"type": "string",
"description": "",
"maxLength": 3
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 35
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 35
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 12
},
"SD_DOC_CAT": {
"title": "SD_DOC_CAT",
"type": "string",
"description": "",
"maxLength": 1
},
"DOC_DATE": {
"title": "DOC_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"WAR_DATE": {
"title": "WAR_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"SHIP_COND": {
"title": "SHIP_COND",
"type": "string",
"description": "",
"maxLength": 2
},
"PP_SEARCH": {
"title": "PP_SEARCH",
"type": "string",
"description": "",
"maxLength": 40
},
"DUN_COUNT": {
"title": "DUN_COUNT",
"type": "number",
"description": ""
},
"DUN_DATE": {
"title": "DUN_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DLVSCHDUSE": {
"title": "DLVSCHDUSE",
"type": "string",
"description": "",
"maxLength": 3
},
"PLDLVSTYP": {
"title": "PLDLVSTYP",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC": {
"title": "REF_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"COMP_CDE_B": {
"title": "COMP_CDE_B",
"type": "string",
"description": "",
"maxLength": 4
},
"ALTTAX_CLS": {
"title": "ALTTAX_CLS",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC_L": {
"title": "REF_DOC_L",
"type": "string",
"description": "",
"maxLength": 16
},
"ASS_NUMBER": {
"title": "ASS_NUMBER",
"type": "string",
"description": "",
"maxLength": 18
},
"REFDOC_CAT": {
"title": "REFDOC_CAT",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDCOMB_IN": {
"title": "ORDCOMB_IN",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_SCHED": {
"title": "BILL_SCHED",
"type": "string",
"description": "",
"maxLength": 2
},
"INVO_SCHED": {
"title": "INVO_SCHED",
"type": "string",
"description": "",
"maxLength": 2
},
"MN_INVOICE": {
"title": "MN_INVOICE",
"type": "string",
"description": "",
"maxLength": 1
},
"EXRATE_FI": {
"title": "EXRATE_FI",
"type": "number",
"description": ""
},
"ADD_VAL_DY": {
"title": "ADD_VAL_DY",
"type": "integer",
"description": ""
},
"FIX_VAL_DY": {
"title": "FIX_VAL_DY",
"type": "string",
"description": "",
"maxLength": 8
},
"PYMT_METH": {
"title": "PYMT_METH",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCNT_ASGN": {
"title": "ACCNT_ASGN",
"type": "string",
"description": "",
"maxLength": 2
},
"EXCHG_RATE": {
"title": "EXCHG_RATE",
"type": "number",
"description": ""
},
"BILL_DATE": {
"title": "BILL_DATE",
"type": "string",
"description": "",
"maxLength": 10
},
"SERV_DATE": {
"title": "SERV_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DUNN_KEY": {
"title": "DUNN_KEY",
"type": "string",
"description": "",
"maxLength": 1
},
"DUNN_BLOCK": {
"title": "DUNN_BLOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"PMTGAR_PRO": {
"title": "PMTGAR_PRO",
"type": "string",
"description": "",
"maxLength": 6
},
"DEPARTM_NO": {
"title": "DEPARTM_NO",
"type": "string",
"description": "",
"maxLength": 4
},
"REC_POINT": {
"title": "REC_POINT",
"type": "string",
"description": "",
"maxLength": 25
},
"DOC_NUM_FI": {
"title": "DOC_NUM_FI",
"type": "string",
"description": "",
"maxLength": 10
},
"CSTCNDGRP1": {
"title": "CSTCNDGRP1",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP2": {
"title": "CSTCNDGRP2",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP3": {
"title": "CSTCNDGRP3",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP4": {
"title": "CSTCNDGRP4",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP5": {
"title": "CSTCNDGRP5",
"type": "string",
"description": "",
"maxLength": 2
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 3
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CREATED_BY": {
"title": "CREATED_BY",
"type": "string",
"description": "",
"maxLength": 12
},
"TAXDEP_CTY": {
"title": "TAXDEP_CTY",
"type": "string",
"description": "",
"maxLength": 3
},
"TAXDST_CTY": {
"title": "TAXDST_CTY",
"type": "string",
"description": "",
"maxLength": 3
},
"EUTRI_DEAL": {
"title": "EUTRI_DEAL",
"type": "string",
"description": "",
"maxLength": 1
},
"MAST_CONTR": {
"title": "MAST_CONTR",
"type": "string",
"description": "",
"maxLength": 10
},
"REF_PROC": {
"title": "REF_PROC",
"type": "string",
"description": "",
"maxLength": 4
},
"CHKPRTAUTH": {
"title": "CHKPRTAUTH",
"type": "string",
"description": "",
"maxLength": 1
},
"CMLQTY_DAT": {
"title": "CMLQTY_DAT",
"type": "string",
"description": "",
"maxLength": 8
},
"VERSION": {
"title": "VERSION",
"type": "string",
"description": "",
"maxLength": 12
},
"NOTIF_NO": {
"title": "NOTIF_NO",
"type": "string",
"description": "",
"maxLength": 12
},
"WBS_ELEM": {
"title": "WBS_ELEM",
"type": "string",
"description": "",
"maxLength": 24
},
"EXCH_RATE_FI_V": {
"title": "EXCH_RATE_FI_V",
"type": "number",
"description": ""
},
"EXCHG_RATE_V": {
"title": "EXCHG_RATE_V",
"type": "number",
"description": ""
},
"FKK_CONACCT": {
"title": "FKK_CONACCT",
"type": "string",
"description": "",
"maxLength": 12
},
"CAMPAIGN": {
"title": "CAMPAIGN",
"type": "string",
"description": "",
"maxLength": 16
},
"DOC_CLASS": {
"title": "DOC_CLASS",
"type": "string",
"description": "",
"maxLength": 9
},
"H_CURR": {
"title": "H_CURR",
"type": "string",
"description": "",
"maxLength": 5
},
"H_CURR_ISO": {
"title": "H_CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"SHIP_TYPE": {
"title": "SHIP_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"S_PROC_IND": {
"title": "S_PROC_IND",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_DOC_L_LONG": {
"title": "REF_DOC_L_LONG",
"type": "string",
"description": "",
"maxLength": 35
},
"LINE_TIME": {
"title": "LINE_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"CALC_MOTIVE": {
"title": "CALC_MOTIVE",
"type": "string",
"description": "",
"maxLength": 2
},
"PSM_PSTNG_DATE": {
"title": "PSM_PSTNG_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"TREASURY_ACC_SYMBOL": {
"title": "TREASURY_ACC_SYMBOL",
"type": "string",
"description": "",
"maxLength": 30
},
"BUSINESS_EVENT_TCODE": {
"title": "BUSINESS_EVENT_TCODE",
"type": "string",
"description": "",
"maxLength": 10
},
"MODIFICATION_ALLOWED": {
"title": "MODIFICATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"CANCELLATION_ALLOWED": {
"title": "CANCELLATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"PAYMENT_METHODS": {
"title": "PAYMENT_METHODS",
"type": "string",
"description": "",
"maxLength": 10
},
"BUSINESS_PARTNER_NO": {
"title": "BUSINESS_PARTNER_NO",
"type": "string",
"description": "",
"maxLength": 6
},
"REPORTING_FREQ": {
"title": "REPORTING_FREQ",
"type": "string",
"description": "",
"maxLength": 3
},
"SEPA_MANDATE_ID": {
"title": "SEPA_MANDATE_ID",
"type": "string",
"description": "",
"maxLength": 35
}
},
"required": []
},
"ORDER_HEADER_INX": {
"title": "BAPISDHD1X",
"type": "object",
"description": "Sales Order Check List",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"UPDATEFLAG": {
"title": "UPDATEFLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"DOC_TYPE": {
"title": "DOC_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"COLLECT_NO": {
"title": "COLLECT_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_ORG": {
"title": "SALES_ORG",
"type": "string",
"description": "",
"maxLength": 1
},
"DISTR_CHAN": {
"title": "DISTR_CHAN",
"type": "string",
"description": "",
"maxLength": 1
},
"DIVISION": {
"title": "DIVISION",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_GRP": {
"title": "SALES_GRP",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_OFF": {
"title": "SALES_OFF",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_DATE_H": {
"title": "REQ_DATE_H",
"type": "string",
"description": "",
"maxLength": 1
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_SUPPLEM": {
"title": "PO_SUPPLEM",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 1
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 1
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICE_GRP": {
"title": "PRICE_GRP",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_GROUP": {
"title": "CUST_GROUP",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_DIST": {
"title": "SALES_DIST",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICE_LIST": {
"title": "PRICE_LIST",
"type": "string",
"description": "",
"maxLength": 1
},
"INCOTERMS1": {
"title": "INCOTERMS1",
"type": "string",
"description": "",
"maxLength": 1
},
"INCOTERMS2": {
"title": "INCOTERMS2",
"type": "string",
"description": "",
"maxLength": 1
},
"PMNTTRMS": {
"title": "PMNTTRMS",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_BLOCK": {
"title": "DLV_BLOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"ORD_REASON": {
"title": "ORD_REASON",
"type": "string",
"description": "",
"maxLength": 1
},
"COMPL_DLV": {
"title": "COMPL_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICE_DATE": {
"title": "PRICE_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"QT_VALID_F": {
"title": "QT_VALID_F",
"type": "string",
"description": "",
"maxLength": 1
},
"QT_VALID_T": {
"title": "QT_VALID_T",
"type": "string",
"description": "",
"maxLength": 1
},
"CT_VALID_F": {
"title": "CT_VALID_F",
"type": "string",
"description": "",
"maxLength": 1
},
"CT_VALID_T": {
"title": "CT_VALID_T",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_GRP1": {
"title": "CUST_GRP1",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_GRP2": {
"title": "CUST_GRP2",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_GRP3": {
"title": "CUST_GRP3",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_GRP4": {
"title": "CUST_GRP4",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_GRP5": {
"title": "CUST_GRP5",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 1
},
"SD_DOC_CAT": {
"title": "SD_DOC_CAT",
"type": "string",
"description": "",
"maxLength": 1
},
"DOC_DATE": {
"title": "DOC_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"WAR_DATE": {
"title": "WAR_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"SHIP_COND": {
"title": "SHIP_COND",
"type": "string",
"description": "",
"maxLength": 1
},
"PP_SEARCH": {
"title": "PP_SEARCH",
"type": "string",
"description": "",
"maxLength": 1
},
"DUN_COUNT": {
"title": "DUN_COUNT",
"type": "string",
"description": "",
"maxLength": 1
},
"DUN_DATE": {
"title": "DUN_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"DLVSCHDUSE": {
"title": "DLVSCHDUSE",
"type": "string",
"description": "",
"maxLength": 1
},
"PLDLVSTYP": {
"title": "PLDLVSTYP",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC": {
"title": "REF_DOC",
"type": "string",
"description": "",
"maxLength": 1
},
"COMP_CDE_B": {
"title": "COMP_CDE_B",
"type": "string",
"description": "",
"maxLength": 1
},
"ALTTAX_CLS": {
"title": "ALTTAX_CLS",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC_L": {
"title": "REF_DOC_L",
"type": "string",
"description": "",
"maxLength": 1
},
"ASS_NUMBER": {
"title": "ASS_NUMBER",
"type": "string",
"description": "",
"maxLength": 1
},
"REFDOC_CAT": {
"title": "REFDOC_CAT",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDCOMB_IN": {
"title": "ORDCOMB_IN",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_SCHED": {
"title": "BILL_SCHED",
"type": "string",
"description": "",
"maxLength": 1
},
"INVO_SCHED": {
"title": "INVO_SCHED",
"type": "string",
"description": "",
"maxLength": 1
},
"MN_INVOICE": {
"title": "MN_INVOICE",
"type": "string",
"description": "",
"maxLength": 1
},
"EXRATE_FI": {
"title": "EXRATE_FI",
"type": "string",
"description": "",
"maxLength": 1
},
"ADD_VAL_DY": {
"title": "ADD_VAL_DY",
"type": "string",
"description": "",
"maxLength": 1
},
"FIX_VAL_DY": {
"title": "FIX_VAL_DY",
"type": "string",
"description": "",
"maxLength": 1
},
"PYMT_METH": {
"title": "PYMT_METH",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCNT_ASGN": {
"title": "ACCNT_ASGN",
"type": "string",
"description": "",
"maxLength": 1
},
"EXCHG_RATE": {
"title": "EXCHG_RATE",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_DATE": {
"title": "BILL_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"SERV_DATE": {
"title": "SERV_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"DUNN_KEY": {
"title": "DUNN_KEY",
"type": "string",
"description": "",
"maxLength": 1
},
"DUNN_BLOCK": {
"title": "DUNN_BLOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"PROMOTION": {
"title": "PROMOTION",
"type": "string",
"description": "",
"maxLength": 1
},
"PMTGAR_PRO": {
"title": "PMTGAR_PRO",
"type": "string",
"description": "",
"maxLength": 1
},
"DEPARTM_NO": {
"title": "DEPARTM_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"REC_POINT": {
"title": "REC_POINT",
"type": "string",
"description": "",
"maxLength": 1
},
"POITM_NO_S": {
"title": "POITM_NO_S",
"type": "string",
"description": "",
"maxLength": 1
},
"DOC_NUM_FI": {
"title": "DOC_NUM_FI",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP1": {
"title": "CSTCNDGRP1",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP2": {
"title": "CSTCNDGRP2",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP3": {
"title": "CSTCNDGRP3",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP4": {
"title": "CSTCNDGRP4",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP5": {
"title": "CSTCNDGRP5",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 1
},
"TAXDEP_CTY": {
"title": "TAXDEP_CTY",
"type": "string",
"description": "",
"maxLength": 1
},
"TAXDST_CTY": {
"title": "TAXDST_CTY",
"type": "string",
"description": "",
"maxLength": 1
},
"EUTRI_DEAL": {
"title": "EUTRI_DEAL",
"type": "string",
"description": "",
"maxLength": 1
},
"MAST_CONTR": {
"title": "MAST_CONTR",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_PROC": {
"title": "REF_PROC",
"type": "string",
"description": "",
"maxLength": 1
},
"CHKPRTAUTH": {
"title": "CHKPRTAUTH",
"type": "string",
"description": "",
"maxLength": 1
},
"CMLQTY_DAT": {
"title": "CMLQTY_DAT",
"type": "string",
"description": "",
"maxLength": 1
},
"VERSION": {
"title": "VERSION",
"type": "string",
"description": "",
"maxLength": 1
},
"NOTIF_NO": {
"title": "NOTIF_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"WBS_ELEM": {
"title": "WBS_ELEM",
"type": "string",
"description": "",
"maxLength": 1
},
"EXCH_RATE_FI_V": {
"title": "EXCH_RATE_FI_V",
"type": "string",
"description": "",
"maxLength": 1
},
"EXCHG_RATE_V": {
"title": "EXCHG_RATE_V",
"type": "string",
"description": "",
"maxLength": 1
},
"FKK_CONACCT": {
"title": "FKK_CONACCT",
"type": "string",
"description": "",
"maxLength": 1
},
"CAMPAIGN": {
"title": "CAMPAIGN",
"type": "string",
"description": "",
"maxLength": 1
},
"DOC_CLASS": {
"title": "DOC_CLASS",
"type": "string",
"description": "",
"maxLength": 1
},
"H_CURR": {
"title": "H_CURR",
"type": "string",
"description": "",
"maxLength": 1
},
"SHIP_TYPE": {
"title": "SHIP_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"S_PROC_IND": {
"title": "S_PROC_IND",
"type": "string",
"description": "",
"maxLength": 1
},
"LINE_TIME": {
"title": "LINE_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"CALC_MOTIVE": {
"title": "CALC_MOTIVE",
"type": "string",
"description": "",
"maxLength": 1
},
"PSM_PSTNG_DATE": {
"title": "PSM_PSTNG_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"TREASURY_ACC_SYMBOL": {
"title": "TREASURY_ACC_SYMBOL",
"type": "string",
"description": "",
"maxLength": 1
},
"BUSINESS_EVENT_TCODE": {
"title": "BUSINESS_EVENT_TCODE",
"type": "string",
"description": "",
"maxLength": 1
},
"MODIFICATION_ALLOWED": {
"title": "MODIFICATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"CANCELLATION_ALLOWED": {
"title": "CANCELLATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"PAYMENT_METHODS": {
"title": "PAYMENT_METHODS",
"type": "string",
"description": "",
"maxLength": 1
},
"BUSINESS_PARTNER_NO": {
"title": "BUSINESS_PARTNER_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"REPORTING_FREQ": {
"title": "REPORTING_FREQ",
"type": "string",
"description": "",
"maxLength": 1
},
"SEPA_MANDATE_ID": {
"title": "SEPA_MANDATE_ID",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
},
"SALESDOCUMENTIN": {
"title": "SALESDOCUMENTIN",
"type": "string",
"description": "Sales and Distribution Document Number",
"maxLength": 10,
"default": ""
},
"SENDER": {
"title": "BAPI_SENDER",
"type": "object",
"description": "Logical System - Sender",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"LOG_SYSTEM": {
"title": "LOG_SYSTEM",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
},
"TESTRUN": {
"title": "TESTRUN",
"type": "string",
"description": "Test Run",
"maxLength": 1,
"default": ""
},
"EXTENSIONEX": {
"title": "EXTENSIONEX",
"type": "array",
"description": "Reference Structure for BAPI Parameters ExtensionIn/ExtensionOut",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIPAREX",
"type": "object",
"properties": {
"STRUCTURE": {
"title": "STRUCTURE",
"type": "string",
"description": "",
"maxLength": 30
},
"VALUEPART1": {
"title": "VALUEPART1",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART2": {
"title": "VALUEPART2",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART3": {
"title": "VALUEPART3",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART4": {
"title": "VALUEPART4",
"type": "string",
"description": "",
"maxLength": 240
}
},
"required": []
}
},
"EXTENSIONIN": {
"title": "EXTENSIONIN",
"type": "array",
"description": "Customer Enhancement for VBAK, VBAP, VBEP",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIPAREX",
"type": "object",
"properties": {
"STRUCTURE": {
"title": "STRUCTURE",
"type": "string",
"description": "",
"maxLength": 30
},
"VALUEPART1": {
"title": "VALUEPART1",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART2": {
"title": "VALUEPART2",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART3": {
"title": "VALUEPART3",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART4": {
"title": "VALUEPART4",
"type": "string",
"description": "",
"maxLength": 240
}
},
"required": []
}
},
"ORDER_CCARD": {
"title": "ORDER_CCARD",
"type": "array",
"description": "Credit Card Data",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICCARD",
"type": "object",
"properties": {
"CC_TYPE": {
"title": "CC_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"CC_NUMBER": {
"title": "CC_NUMBER",
"type": "string",
"description": "",
"maxLength": 25
},
"CC_VALID_T": {
"title": "CC_VALID_T",
"type": "string",
"description": "",
"maxLength": 10
},
"CC_NAME": {
"title": "CC_NAME",
"type": "string",
"description": "",
"maxLength": 40
},
"BILLAMOUNT": {
"title": "BILLAMOUNT",
"type": "number",
"description": ""
},
"AUTH_FLAG": {
"title": "AUTH_FLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"AUTHAMOUNT": {
"title": "AUTHAMOUNT",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"AUTH_DATE": {
"title": "AUTH_DATE",
"type": "string",
"description": "",
"maxLength": 10
},
"AUTH_TIME": {
"title": "AUTH_TIME",
"type": "string",
"description": "",
"maxLength": 8
},
"AUTH_CC_NO": {
"title": "AUTH_CC_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"AUTH_REFNO": {
"title": "AUTH_REFNO",
"type": "string",
"description": "",
"maxLength": 15
},
"CC_REACT": {
"title": "CC_REACT",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_RE_AMOUNT": {
"title": "CC_RE_AMOUNT",
"type": "number",
"description": ""
},
"GL_ACCOUNT": {
"title": "GL_ACCOUNT",
"type": "string",
"description": "",
"maxLength": 10
},
"CC_STAT_EX": {
"title": "CC_STAT_EX",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_REACT_T": {
"title": "CC_REACT_T",
"type": "string",
"description": "",
"maxLength": 40
},
"VIRT_CARD": {
"title": "VIRT_CARD",
"type": "string",
"description": "",
"maxLength": 1
},
"MERCHIDCL": {
"title": "MERCHIDCL",
"type": "string",
"description": "",
"maxLength": 15
},
"PRE_AUTH": {
"title": "PRE_AUTH",
"type": "string",
"description": "CCPRE",
"maxLength": 1
},
"CC_SEQ_NO": {
"title": "CC_SEQ_NO",
"type": "string",
"description": "CCFOL",
"maxLength": 10
},
"AMOUNTCHAN": {
"title": "AMOUNTCHAN",
"type": "string",
"description": "CCVAL",
"maxLength": 1
},
"AUTHORTYPE": {
"title": "AUTHORTYPE",
"type": "string",
"description": "CCAUA",
"maxLength": 1
},
"DATAORIGIN": {
"title": "DATAORIGIN",
"type": "string",
"description": "CSOUR",
"maxLength": 1
},
"RADRCHECK1": {
"title": "RADRCHECK1",
"type": "string",
"description": "RCAVR_CC",
"maxLength": 4
},
"RADRCHECK2": {
"title": "RADRCHECK2",
"type": "string",
"description": "RCAVA_CC",
"maxLength": 4
},
"RADRCHECK3": {
"title": "RADRCHECK3",
"type": "string",
"description": "RCAVZ_CC",
"maxLength": 4
},
"RCARDCHECK": {
"title": "RCARDCHECK",
"type": "string",
"description": "RCRSP_CC",
"maxLength": 4
},
"CC_LIMITED": {
"title": "CC_LIMITED",
"type": "string",
"description": "CCBEG",
"maxLength": 1
},
"CC_VERIF_VALUE": {
"title": "CC_VERIF_VALUE",
"type": "string",
"description": "CVVAL",
"maxLength": 6
},
"CC_CTRL_FIELD": {
"title": "CC_CTRL_FIELD",
"type": "string",
"description": "CVVCT",
"maxLength": 1
},
"CC_IN_USE_ST": {
"title": "CC_IN_USE_ST",
"type": "string",
"description": "CVVST",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_BLOB": {
"title": "ORDER_CFGS_BLOB",
"type": "array",
"description": "Configuration: BLOB Internal Data (SCE)",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUBLB",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"CONTEXT": {
"title": "CONTEXT",
"type": "string",
"description": "",
"maxLength": 250
}
},
"required": []
}
},
"ORDER_CFGS_INST": {
"title": "ORDER_CFGS_INST",
"type": "array",
"description": "Configuration: Instances",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUINS",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"OBJ_TYPE": {
"title": "OBJ_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"CLASS_TYPE": {
"title": "CLASS_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"OBJ_KEY": {
"title": "OBJ_KEY",
"type": "string",
"description": "",
"maxLength": 50
},
"OBJ_TXT": {
"title": "OBJ_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"QUANTITY": {
"title": "QUANTITY",
"type": "string",
"description": "",
"maxLength": 15
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"QUANTITY_UNIT": {
"title": "QUANTITY_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"COMPLETE": {
"title": "COMPLETE",
"type": "string",
"description": "",
"maxLength": 1
},
"CONSISTENT": {
"title": "CONSISTENT",
"type": "string",
"description": "",
"maxLength": 1
},
"OBJECT_GUID": {
"title": "OBJECT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"PERSIST_ID": {
"title": "PERSIST_ID",
"type": "string",
"description": "",
"maxLength": 32
},
"PERSIST_ID_TYPE": {
"title": "PERSIST_ID_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_PART_OF": {
"title": "ORDER_CFGS_PART_OF",
"type": "array",
"description": "Configuration: Part-of Specifications",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUPRT",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"PARENT_ID": {
"title": "PARENT_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"PART_OF_NO": {
"title": "PART_OF_NO",
"type": "string",
"description": "",
"maxLength": 4
},
"OBJ_TYPE": {
"title": "OBJ_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"CLASS_TYPE": {
"title": "CLASS_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"OBJ_KEY": {
"title": "OBJ_KEY",
"type": "string",
"description": "",
"maxLength": 50
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_RELEVANT": {
"title": "SALES_RELEVANT",
"type": "string",
"description": "",
"maxLength": 1
},
"PART_OF_GUID": {
"title": "PART_OF_GUID",
"type": "string",
"description": "",
"maxLength": 32
}
},
"required": []
}
},
"ORDER_CFGS_REF": {
"title": "ORDER_CFGS_REF",
"type": "array",
"description": "Configuration: Reference Data",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUCFG",
"type": "object",
"properties": {
"POSEX": {
"title": "POSEX",
"type": "string",
"description": "",
"maxLength": 6
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"ROOT_ID": {
"title": "ROOT_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"SCE": {
"title": "SCE",
"type": "string",
"description": "",
"maxLength": 1
},
"KBNAME": {
"title": "KBNAME",
"type": "string",
"description": "",
"maxLength": 30
},
"KBVERSION": {
"title": "KBVERSION",
"type": "string",
"description": "",
"maxLength": 30
},
"COMPLETE": {
"title": "COMPLETE",
"type": "string",
"description": "",
"maxLength": 1
},
"CONSISTENT": {
"title": "CONSISTENT",
"type": "string",
"description": "",
"maxLength": 1
},
"CFGINFO": {
"title": "CFGINFO",
"type": "string",
"description": "",
"maxLength": 250
},
"KBPROFILE": {
"title": "KBPROFILE",
"type": "string",
"description": "",
"maxLength": 30
},
"KBLANGUAGE": {
"title": "KBLANGUAGE",
"type": "string",
"description": "",
"maxLength": 1
},
"CBASE_ID": {
"title": "CBASE_ID",
"type": "string",
"description": "",
"maxLength": 32
},
"CBASE_ID_TYPE": {
"title": "CBASE_ID_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_REFINST": {
"title": "ORDER_CFGS_REFINST",
"type": "array",
"description": "Configuration: Reference Item / Instance",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUREF",
"type": "object",
"properties": {
"POSEX": {
"title": "POSEX",
"type": "string",
"description": "",
"maxLength": 6
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
}
},
"required": []
}
},
"ORDER_CFGS_VALUE": {
"title": "ORDER_CFGS_VALUE",
"type": "array",
"description": "Configuration: Characteristic Values",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUVAL",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"CHARC": {
"title": "CHARC",
"type": "string",
"description": "",
"maxLength": 40
},
"CHARC_TXT": {
"title": "CHARC_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"VALUE": {
"title": "VALUE",
"type": "string",
"description": "",
"maxLength": 40
},
"VALUE_TXT": {
"title": "VALUE_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"VALUE_TO": {
"title": "VALUE_TO",
"type": "string",
"description": "",
"maxLength": 40
},
"VALCODE": {
"title": "VALCODE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_VK": {
"title": "ORDER_CFGS_VK",
"type": "array",
"description": "Configuration: Variant Condition Key",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUVK",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"VKEY": {
"title": "VKEY",
"type": "string",
"description": "",
"maxLength": 26
},
"FACTOR": {
"title": "FACTOR",
"type": "string",
"description": "",
"maxLength": 15
}
},
"required": []
}
},
"ORDER_CONDITIONS_IN": {
"title": "ORDER_CONDITIONS_IN",
"type": "array",
"description": "Conditions",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICOND",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"COND_ST_NO": {
"title": "COND_ST_NO",
"type": "integer",
"description": ""
},
"SD000COND_COUNT": {
"title": "COND_COUNT",
"type": "integer",
"description": ""
},
"SD000COND_TYPE": {
"title": "COND_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"SD000COND_VALUE": {
"title": "COND_VALUE",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"COND_UNIT": {
"title": "COND_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"COND_P_UNT": {
"title": "COND_P_UNT",
"type": "number",
"description": ""
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_UNT_ISO": {
"title": "CD_UNT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
},
"APPLICATIO": {
"title": "APPLICATIO",
"type": "string",
"description": "",
"maxLength": 2
},
"CONPRICDAT": {
"title": "CONPRICDAT",
"type": "string",
"description": "",
"maxLength": 8
},
"CALCTYPCON": {
"title": "CALCTYPCON",
"type": "string",
"description": "",
"maxLength": 1
},
"CONBASEVAL": {
"title": "CONBASEVAL",
"type": "number",
"description": ""
},
"CONEXCHRAT": {
"title": "CONEXCHRAT",
"type": "number",
"description": ""
},
"NUMCONVERT": {
"title": "NUMCONVERT",
"type": "number",
"description": ""
},
"DENOMINATO": {
"title": "DENOMINATO",
"type": "number",
"description": ""
},
"CONDTYPE": {
"title": "CONDTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"STAT_CON": {
"title": "STAT_CON",
"type": "string",
"description": "",
"maxLength": 1
},
"SCALETYPE": {
"title": "SCALETYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCRUALS": {
"title": "ACCRUALS",
"type": "string",
"description": "",
"maxLength": 1
},
"CONINVOLST": {
"title": "CONINVOLST",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDORIGIN": {
"title": "CONDORIGIN",
"type": "string",
"description": "",
"maxLength": 1
},
"GROUPCOND": {
"title": "GROUPCOND",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_UPDAT": {
"title": "COND_UPDAT",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCESS_SEQ": {
"title": "ACCESS_SEQ",
"type": "integer",
"description": ""
},
"CONDCOUNT": {
"title": "CONDCOUNT",
"type": "integer",
"description": ""
},
"ROUNDOFFDI": {
"title": "ROUNDOFFDI",
"type": "number",
"description": ""
},
"CONDVALUE": {
"title": "CONDVALUE",
"type": "number",
"description": ""
},
"CURRENCY_2": {
"title": "CURRENCY_2",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO_2": {
"title": "CURR_ISO_2",
"type": "string",
"description": "",
"maxLength": 3
},
"CONDCNTRL": {
"title": "CONDCNTRL",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDISACTI": {
"title": "CONDISACTI",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDCLASS": {
"title": "CONDCLASS",
"type": "string",
"description": "",
"maxLength": 1
},
"FACTBASVAL": {
"title": "FACTBASVAL",
"type": "number",
"description": ""
},
"SCALEBASIN": {
"title": "SCALEBASIN",
"type": "string",
"description": "",
"maxLength": 1
},
"SCALBASVAL": {
"title": "SCALBASVAL",
"type": "number",
"description": ""
},
"UNITMEASUR": {
"title": "UNITMEASUR",
"type": "string",
"description": "",
"maxLength": 3
},
"ISO_UNIT": {
"title": "ISO_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"CURRENCKEY": {
"title": "CURRENCKEY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURRENISO": {
"title": "CURRENISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CONDINCOMP": {
"title": "CONDINCOMP",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDCONFIG": {
"title": "CONDCONFIG",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDCHAMAN": {
"title": "CONDCHAMAN",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_NO": {
"title": "COND_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"TAX_CODE": {
"title": "TAX_CODE",
"type": "string",
"description": "",
"maxLength": 2
},
"VARCOND": {
"title": "VARCOND",
"type": "string",
"description": "",
"maxLength": 26
},
"ACCOUNTKEY": {
"title": "ACCOUNTKEY",
"type": "string",
"description": "",
"maxLength": 3
},
"ACCOUNT_KE": {
"title": "ACCOUNT_KE",
"type": "string",
"description": "",
"maxLength": 3
},
"WT_WITHCD": {
"title": "WT_WITHCD",
"type": "string",
"description": "",
"maxLength": 2
},
"STRUCTCOND": {
"title": "STRUCTCOND",
"type": "string",
"description": "",
"maxLength": 1
},
"FACTCONBAS": {
"title": "FACTCONBAS",
"type": "number",
"description": ""
},
"CONDCOINHD": {
"title": "CONDCOINHD",
"type": "integer",
"description": ""
}
},
"required": []
}
},
"ORDER_CONDITIONS_INX": {
"title": "ORDER_CONDITIONS_INX",
"type": "array",
"description": "Conditions Checkbox",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICONDX",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"COND_ST_NO": {
"title": "COND_ST_NO",
"type": "integer",
"description": ""
},
"COND_COUNT": {
"title": "COND_COUNT",
"type": "integer",
"description": ""
},
"COND_TYPE": {
"title": "COND_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"UPDATEFLAG": {
"title": "UPDATEFLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_VALUE": {
"title": "COND_VALUE",
"type": "string",
"description": "",
"maxLength": 1
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_UNIT": {
"title": "COND_UNIT",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_P_UNT": {
"title": "COND_P_UNT",
"type": "string",
"description": "",
"maxLength": 1
},
"VARCOND": {
"title": "VARCOND",
"type": "string",
"description": "",
"maxLength": 26
}
},
"required": []
}
},
"ORDER_ITEMS_IN": {
"title": "ORDER_ITEMS_IN",
"type": "array",
"description": "Item Data",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDITM",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"HG_LV_ITEM": {
"title": "HG_LV_ITEM",
"type": "integer",
"description": ""
},
"PO_ITM_NO": {
"title": "PO_ITM_NO",
"type": "string",
"description": "",
"maxLength": 6
},
"MATERIAL": {
"title": "MATERIAL",
"type": "string",
"description": "",
"maxLength": 18
},
"ALT_TO_ITM": {
"title": "ALT_TO_ITM",
"type": "integer",
"description": ""
},
"CUST_MAT22": {
"title": "CUST_MAT22",
"type": "string",
"description": "",
"maxLength": 22
},
"BATCH": {
"title": "BATCH",
"type": "string",
"description": "",
"maxLength": 10
},
"DLV_GROUP": {
"title": "DLV_GROUP",
"type": "integer",
"description": ""
},
"PART_DLV": {
"title": "PART_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"REASON_REJ": {
"title": "REASON_REJ",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_DATE": {
"title": "BILL_DATE",
"type": "string",
"description": "",
"maxLength": 10
},
"PLANT": {
"title": "PLANT",
"type": "string",
"description": "",
"maxLength": 4
},
"STORE_LOC": {
"title": "STORE_LOC",
"type": "string",
"description": "",
"maxLength": 4
},
"TARGET_QTY": {
"title": "TARGET_QTY",
"type": "number",
"description": ""
},
"TARGET_QU": {
"title": "TARGET_QU",
"type": "string",
"description": "",
"maxLength": 3
},
"T_UNIT_ISO": {
"title": "T_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"ITEM_CATEG": {
"title": "ITEM_CATEG",
"type": "string",
"description": "",
"maxLength": 4
},
"SHORT_TEXT": {
"title": "SHORT_TEXT",
"type": "string",
"description": "",
"maxLength": 40
},
"PRC_GROUP1": {
"title": "PRC_GROUP1",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP2": {
"title": "PRC_GROUP2",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP3": {
"title": "PRC_GROUP3",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP4": {
"title": "PRC_GROUP4",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP5": {
"title": "PRC_GROUP5",
"type": "string",
"description": "",
"maxLength": 3
},
"PROD_HIERA": {
"title": "PROD_HIERA",
"type": "string",
"description": "",
"maxLength": 18
},
"MATL_GROUP": {
"title": "MATL_GROUP",
"type": "string",
"description": "",
"maxLength": 9
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 35
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 12
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 35
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 12
},
"POITM_NO_S": {
"title": "POITM_NO_S",
"type": "string",
"description": "",
"maxLength": 6
},
"PRICE_GRP": {
"title": "PRICE_GRP",
"type": "string",
"description": "",
"maxLength": 2
},
"CUST_GROUP": {
"title": "CUST_GROUP",
"type": "string",
"description": "",
"maxLength": 2
},
"SALES_DIST": {
"title": "SALES_DIST",
"type": "string",
"description": "",
"maxLength": 6
},
"PRICE_LIST": {
"title": "PRICE_LIST",
"type": "string",
"description": "",
"maxLength": 2
},
"INCOTERMS1": {
"title": "INCOTERMS1",
"type": "string",
"description": "",
"maxLength": 3
},
"INCOTERMS2": {
"title": "INCOTERMS2",
"type": "string",
"description": "",
"maxLength": 28
},
"ORDCOMP_IN": {
"title": "ORDCOMP_IN",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_SCHED": {
"title": "BILL_SCHED",
"type": "string",
"description": "",
"maxLength": 2
},
"INVO_SCHED": {
"title": "INVO_SCHED",
"type": "string",
"description": "",
"maxLength": 2
},
"MN_INVOICE": {
"title": "MN_INVOICE",
"type": "string",
"description": "",
"maxLength": 1
},
"EX_RATE_FI": {
"title": "EX_RATE_FI",
"type": "number",
"description": ""
},
"ADD_VAL_DY": {
"title": "ADD_VAL_DY",
"type": "integer",
"description": ""
},
"FIX_VAL_DY": {
"title": "FIX_VAL_DY",
"type": "string",
"description": "",
"maxLength": 8
},
"PMNTTRMS": {
"title": "PMNTTRMS",
"type": "string",
"description": "",
"maxLength": 4
},
"PYMT_METH": {
"title": "PYMT_METH",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCNT_ASGN": {
"title": "ACCNT_ASGN",
"type": "string",
"description": "",
"maxLength": 2
},
"EXCHG_RATE": {
"title": "EXCHG_RATE",
"type": "number",
"description": ""
},
"PRICE_DATE": {
"title": "PRICE_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"SERV_DATE": {
"title": "SERV_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DUNN_KEY": {
"title": "DUNN_KEY",
"type": "string",
"description": "",
"maxLength": 1
},
"DUNN_BLOCK": {
"title": "DUNN_BLOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"PROMOTION": {
"title": "PROMOTION",
"type": "string",
"description": "",
"maxLength": 10
},
"PMTGAR_PRO": {
"title": "PMTGAR_PRO",
"type": "string",
"description": "",
"maxLength": 6
},
"DOC_NUM_FI": {
"title": "DOC_NUM_FI",
"type": "string",
"description": "",
"maxLength": 10
},
"DEPARTM_NO": {
"title": "DEPARTM_NO",
"type": "string",
"description": "",
"maxLength": 4
},
"REC_POINT": {
"title": "REC_POINT",
"type": "string",
"description": "",
"maxLength": 25
},
"CSTCNDGRP1": {
"title": "CSTCNDGRP1",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP2": {
"title": "CSTCNDGRP2",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP3": {
"title": "CSTCNDGRP3",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP4": {
"title": "CSTCNDGRP4",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP5": {
"title": "CSTCNDGRP5",
"type": "string",
"description": "",
"maxLength": 2
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 3
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"S_UNIT_ISO": {
"title": "S_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"TRG_QTY_NO": {
"title": "TRG_QTY_NO",
"type": "number",
"description": ""
},
"TRGQTY_DEN": {
"title": "TRGQTY_DEN",
"type": "number",
"description": ""
},
"RNDDLV_QTY": {
"title": "RNDDLV_QTY",
"type": "number",
"description": ""
},
"MAXDEVAMNT": {
"title": "MAXDEVAMNT",
"type": "number",
"description": ""
},
"MAXDEVPER": {
"title": "MAXDEVPER",
"type": "number",
"description": ""
},
"MAXDEV_DAY": {
"title": "MAXDEV_DAY",
"type": "number",
"description": ""
},
"USAGE_IND": {
"title": "USAGE_IND",
"type": "string",
"description": "",
"maxLength": 3
},
"FIXED_QUAN": {
"title": "FIXED_QUAN",
"type": "string",
"description": "",
"maxLength": 1
},
"UNLMT_DLV": {
"title": "UNLMT_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"OVERDLVTOL": {
"title": "OVERDLVTOL",
"type": "number",
"description": ""
},
"UNDDLV_TOL": {
"title": "UNDDLV_TOL",
"type": "number",
"description": ""
},
"DIVISION": {
"title": "DIVISION",
"type": "string",
"description": "",
"maxLength": 2
},
"SALQTYNUM": {
"title": "SALQTYNUM",
"type": "number",
"description": ""
},
"SALQTYDEN": {
"title": "SALQTYDEN",
"type": "number",
"description": ""
},
"GROSS_WGHT": {
"title": "GROSS_WGHT",
"type": "number",
"description": ""
},
"NET_WEIGHT": {
"title": "NET_WEIGHT",
"type": "number",
"description": ""
},
"UNTOF_WGHT": {
"title": "UNTOF_WGHT",
"type": "string",
"description": "",
"maxLength": 3
},
"UNOF_WTISO": {
"title": "UNOF_WTISO",
"type": "string",
"description": "",
"maxLength": 3
},
"VOLUME": {
"title": "VOLUME",
"type": "number",
"description": ""
},
"VOLUNIT": {
"title": "VOLUNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"VOLUNITISO": {
"title": "VOLUNITISO",
"type": "string",
"description": "",
"maxLength": 3
},
"DLV_PRIO": {
"title": "DLV_PRIO",
"type": "integer",
"description": ""
},
"SHIP_POINT": {
"title": "SHIP_POINT",
"type": "string",
"description": "",
"maxLength": 4
},
"ROUTE": {
"title": "ROUTE",
"type": "string",
"description": "",
"maxLength": 6
},
"CREATED_BY": {
"title": "CREATED_BY",
"type": "string",
"description": "",
"maxLength": 12
},
"TAX_CLASS1": {
"title": "TAX_CLASS1",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_PR_GRP": {
"title": "MAT_PR_GRP",
"type": "string",
"description": "",
"maxLength": 2
},
"VAL_TYPE": {
"title": "VAL_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"FIXDAT_QTY": {
"title": "FIXDAT_QTY",
"type": "string",
"description": "",
"maxLength": 1
},
"BOMEXPL_NO": {
"title": "BOMEXPL_NO",
"type": "string",
"description": "",
"maxLength": 8
},
"RESANALKEY": {
"title": "RESANALKEY",
"type": "string",
"description": "",
"maxLength": 6
},
"REQMTS_TYP": {
"title": "REQMTS_TYP",
"type": "string",
"description": "",
"maxLength": 4
},
"NO_GR_POST": {
"title": "NO_GR_POST",
"type": "string",
"description": "",
"maxLength": 1
},
"BUS_TRANST": {
"title": "BUS_TRANST",
"type": "string",
"description": "",
"maxLength": 2
},
"OVERHD_KEY": {
"title": "OVERHD_KEY",
"type": "string",
"description": "",
"maxLength": 6
},
"CSTG_SHEET": {
"title": "CSTG_SHEET",
"type": "string",
"description": "",
"maxLength": 6
},
"MATFRGTGRP": {
"title": "MATFRGTGRP",
"type": "string",
"description": "",
"maxLength": 8
},
"PLDLVSHDIN": {
"title": "PLDLVSHDIN",
"type": "string",
"description": "",
"maxLength": 4
},
"SEQ_NO": {
"title": "SEQ_NO",
"type": "string",
"description": "",
"maxLength": 35
},
"BIL_FORM": {
"title": "BIL_FORM",
"type": "string",
"description": "",
"maxLength": 2
},
"DLI_PROFIL": {
"title": "DLI_PROFIL",
"type": "string",
"description": "",
"maxLength": 8
},
"REV_TYPE": {
"title": "REV_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"BEGDEM_PER": {
"title": "BEGDEM_PER",
"type": "string",
"description": "",
"maxLength": 1
},
"PR_REF_MAT": {
"title": "PR_REF_MAT",
"type": "string",
"description": "",
"maxLength": 18
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
},
"ORDER_PROB": {
"title": "ORDER_PROB",
"type": "integer",
"description": ""
},
"MAX_PL_DLV": {
"title": "MAX_PL_DLV",
"type": "number",
"description": ""
},
"CFOP_CODE": {
"title": "CFOP_CODE",
"type": "string",
"description": "",
"maxLength": 5
},
"TAXLAWICMS": {
"title": "TAXLAWICMS",
"type": "string",
"description": "",
"maxLength": 3
},
"TAXLAWIPI": {
"title": "TAXLAWIPI",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_TAXCODE": {
"title": "SD_TAXCODE",
"type": "string",
"description": "",
"maxLength": 2
},
"ASSORT_MOD": {
"title": "ASSORT_MOD",
"type": "string",
"description": "",
"maxLength": 18
},
"COMP_QUANT": {
"title": "COMP_QUANT",
"type": "number",
"description": ""
},
"TARGET_VAL": {
"title": "TARGET_VAL",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"PROFIT_CTR": {
"title": "PROFIT_CTR",
"type": "string",
"description": "",
"maxLength": 10
},
"ORDERID": {
"title": "ORDERID",
"type": "string",
"description": "",
"maxLength": 12
},
"WBS_ELEM": {
"title": "WBS_ELEM",
"type": "string",
"description": "",
"maxLength": 24
},
"DEPREC_PER": {
"title": "DEPREC_PER",
"type": "number",
"description": ""
},
"REF_DOC": {
"title": "REF_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"REF_DOC_IT": {
"title": "REF_DOC_IT",
"type": "integer",
"description": ""
},
"REF_DOC_CA": {
"title": "REF_DOC_CA",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_MAT35": {
"title": "CUST_MAT35",
"type": "string",
"description": "",
"maxLength": 35
},
"EXCH_RATE_FI_V": {
"title": "EXCH_RATE_FI_V",
"type": "number",
"description": ""
},
"EXCHG_RATE_V": {
"title": "EXCHG_RATE_V",
"type": "number",
"description": ""
},
"ITEMGUID_ATP": {
"title": "ITEMGUID_ATP",
"type": "string",
"description": "",
"maxLength": 22
},
"VAL_CONTR": {
"title": "VAL_CONTR",
"type": "string",
"description": "",
"maxLength": 10
},
"VAL_CON_I": {
"title": "VAL_CON_I",
"type": "integer",
"description": ""
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"MAT_EXT": {
"title": "MAT_EXT",
"type": "string",
"description": "",
"maxLength": 40
},
"MAT_GUID": {
"title": "MAT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_VERS": {
"title": "MAT_VERS",
"type": "string",
"description": "",
"maxLength": 10
},
"P_MAT_EXT": {
"title": "P_MAT_EXT",
"type": "string",
"description": "",
"maxLength": 40
},
"P_MAT_GUID": {
"title": "P_MAT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"P_MAT_VERS": {
"title": "P_MAT_VERS",
"type": "string",
"description": "",
"maxLength": 10
},
"FUNC_AREA": {
"title": "FUNC_AREA",
"type": "string",
"description": "",
"maxLength": 4
},
"ALTERN_BOM": {
"title": "ALTERN_BOM",
"type": "string",
"description": "",
"maxLength": 2
},
"FKK_CONACCT": {
"title": "FKK_CONACCT",
"type": "string",
"description": "",
"maxLength": 12
},
"EAN_UPC": {
"title": "EAN_UPC",
"type": "string",
"description": "",
"maxLength": 18
},
"PRODCAT": {
"title": "PRODCAT",
"type": "string",
"description": "",
"maxLength": 10
},
"SHIP_TYPE": {
"title": "SHIP_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"S_PROC_IND": {
"title": "S_PROC_IND",
"type": "string",
"description": "",
"maxLength": 4
},
"FUNC_AREA_LONG": {
"title": "FUNC_AREA_LONG",
"type": "string",
"description": "",
"maxLength": 16
},
"BILL_REL": {
"title": "BILL_REL",
"type": "string",
"description": "",
"maxLength": 1
},
"VW_UEPOS": {
"title": "VW_UEPOS",
"type": "string",
"description": "",
"maxLength": 1
},
"CAMPAIGN": {
"title": "CAMPAIGN",
"type": "string",
"description": "",
"maxLength": 16
},
"DLVSCHDUSE": {
"title": "DLVSCHDUSE",
"type": "string",
"description": "",
"maxLength": 3
},
"CFOP_LONG": {
"title": "CFOP_LONG",
"type": "string",
"description": "",
"maxLength": 10
},
"SELECTION": {
"title": "SELECTION",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_ENTRD": {
"title": "MAT_ENTRD",
"type": "string",
"description": "",
"maxLength": 18
},
"LOG_SYSTEM_OWN": {
"title": "LOG_SYSTEM_OWN",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_TYPE_USAGE": {
"title": "ITM_TYPE_USAGE",
"type": "string",
"description": "",
"maxLength": 4
},
"TAXLAWISS": {
"title": "TAXLAWISS",
"type": "string",
"description": "",
"maxLength": 3
},
"MAT_ENTRD_EXTERNAL": {
"title": "MAT_ENTRD_EXTERNAL",
"type": "string",
"description": "",
"maxLength": 40
},
"MAT_ENTRD_GUID": {
"title": "MAT_ENTRD_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_ENTRD_VERSION": {
"title": "MAT_ENTRD_VERSION",
"type": "string",
"description": "",
"maxLength": 10
},
"LOC_TAXCAT": {
"title": "LOC_TAXCAT",
"type": "string",
"description": "",
"maxLength": 2
},
"LOC_ZEROVAT": {
"title": "LOC_ZEROVAT",
"type": "string",
"description": "",
"maxLength": 1
},
"LOC_ACTCODE": {
"title": "LOC_ACTCODE",
"type": "string",
"description": "",
"maxLength": 2
},
"LOC_DISTTYPE": {
"title": "LOC_DISTTYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"LOC_TXRELCLAS": {
"title": "LOC_TXRELCLAS",
"type": "string",
"description": "",
"maxLength": 10
},
"CALC_MOTIVE": {
"title": "CALC_MOTIVE",
"type": "string",
"description": "",
"maxLength": 2
},
"COMPREAS": {
"title": "COMPREAS",
"type": "string",
"description": "",
"maxLength": 4
},
"FUND": {
"title": "FUND",
"type": "string",
"description": "",
"maxLength": 10
},
"FUNDS_CTR": {
"title": "FUNDS_CTR",
"type": "string",
"description": "",
"maxLength": 16
},
"CMMT_ITEM": {
"title": "CMMT_ITEM",
"type": "string",
"description": "",
"maxLength": 24
},
"GRANT_NBR": {
"title": "GRANT_NBR",
"type": "string",
"description": "",
"maxLength": 20
},
"BUDGET_PERIOD": {
"title": "BUDGET_PERIOD",
"type": "string",
"description": "",
"maxLength": 10
},
"TAXLAWCOFINS": {
"title": "TAXLAWCOFINS",
"type": "string",
"description": "",
"maxLength": 3
},
"TAXLAWPIS": {
"title": "TAXLAWPIS",
"type": "string",
"description": "",
"maxLength": 3
},
"TREASURY_ACC_SYMBOL": {
"title": "TREASURY_ACC_SYMBOL",
"type": "string",
"description": "",
"maxLength": 30
},
"BUSINESS_EVENT_TCODE": {
"title": "BUSINESS_EVENT_TCODE",
"type": "string",
"description": "",
"maxLength": 10
},
"MODIFICATION_ALLOWED": {
"title": "MODIFICATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"CANCELLATION_ALLOWED": {
"title": "CANCELLATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"PAYMENT_METHODS": {
"title": "PAYMENT_METHODS",
"type": "string",
"description": "",
"maxLength": 10
},
"BUSINESS_PARTNER_NO": {
"title": "BUSINESS_PARTNER_NO",
"type": "string",
"description": "",
"maxLength": 6
},
"REPORTING_FREQ": {
"title": "REPORTING_FREQ",
"type": "string",
"description": "",
"maxLength": 3
},
"SEPA_MANDATE_ID": {
"title": "SEPA_MANDATE_ID",
"type": "string",
"description": "",
"maxLength": 35
},
"REQ_SEGMENT": {
"title": "REQ_SEGMENT",
"type": "string",
"description": "",
"maxLength": 16
},
"TP_SUBLEVL": {
"title": "TP_SUBLEVL",
"type": "string",
"description": "",
"maxLength": 2
},
"TP_AGENCID": {
"title": "TP_AGENCID",
"type": "string",
"description": "",
"maxLength": 3
},
"TP_ALTRAID": {
"title": "TP_ALTRAID",
"type": "string",
"description": "",
"maxLength": 3
},
"TP_BEGPER": {
"title": "TP_BEGPER",
"type": "integer",
"description": ""
},
"TP_ENDPER": {
"title": "TP_ENDPER",
"type": "integer",
"description": ""
},
"TP_AVTYPE": {
"title": "TP_AVTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_MAIN_ACCT": {
"title": "TP_MAIN_ACCT",
"type": "string",
"description": "",
"maxLength": 4
},
"TP_SUB_ACCT": {
"title": "TP_SUB_ACCT",
"type": "string",
"description": "",
"maxLength": 3
},
"TP_BETC": {
"title": "TP_BETC",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
},
"ORDER_ITEMS_INX": {
"title": "ORDER_ITEMS_INX",
"type": "array",
"description": "Item Data Checkbox",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDITMX",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"UPDATEFLAG": {
"title": "UPDATEFLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"HG_LV_ITEM": {
"title": "HG_LV_ITEM",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_ITM_NO": {
"title": "PO_ITM_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"MATERIAL": {
"title": "MATERIAL",
"type": "string",
"description": "",
"maxLength": 1
},
"ALT_TO_ITM": {
"title": "ALT_TO_ITM",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_MAT22": {
"title": "CUST_MAT22",
"type": "string",
"description": "",
"maxLength": 1
},
"BATCH": {
"title": "BATCH",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_GROUP": {
"title": "DLV_GROUP",
"type": "string",
"description": "",
"maxLength": 1
},
"PART_DLV": {
"title": "PART_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"REASON_REJ": {
"title": "REASON_REJ",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_DATE": {
"title": "BILL_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"PLANT": {
"title": "PLANT",
"type": "string",
"description": "",
"maxLength": 1
},
"STORE_LOC": {
"title": "STORE_LOC",
"type": "string",
"description": "",
"maxLength": 1
},
"TARGET_QTY": {
"title": "TARGET_QTY",
"type": "string",
"description": "",
"maxLength": 1
},
"TARGET_QU": {
"title": "TARGET_QU",
"type": "string",
"description": "",
"maxLength": 1
},
"T_UNIT_ISO": {
"title": "T_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 1
},
"ITEM_CATEG": {
"title": "ITEM_CATEG",
"type": "string",
"description": "",
"maxLength": 1
},
"SHORT_TEXT": {
"title": "SHORT_TEXT",
"type": "string",
"description": "",
"maxLength": 1
},
"PRC_GROUP1": {
"title": "PRC_GROUP1",
"type": "string",
"description": "",
"maxLength": 1
},
"PRC_GROUP2": {
"title": "PRC_GROUP2",
"type": "string",
"description": "",
"maxLength": 1
},
"PRC_GROUP3": {
"title": "PRC_GROUP3",
"type": "string",
"description": "",
"maxLength": 1
},
"PRC_GROUP4": {
"title": "PRC_GROUP4",
"type": "string",
"description": "",
"maxLength": 1
},
"PRC_GROUP5": {
"title": "PRC_GROUP5",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_HIERA": {
"title": "PROD_HIERA",
"type": "string",
"description": "",
"maxLength": 1
},
"MATL_GROUP": {
"title": "MATL_GROUP",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 1
},
"POITM_NO_S": {
"title": "POITM_NO_S",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICE_GRP": {
"title": "PRICE_GRP",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_GROUP": {
"title": "CUST_GROUP",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_DIST": {
"title": "SALES_DIST",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICE_LIST": {
"title": "PRICE_LIST",
"type": "string",
"description": "",
"maxLength": 1
},
"INCOTERMS1": {
"title": "INCOTERMS1",
"type": "string",
"description": "",
"maxLength": 1
},
"INCOTERMS2": {
"title": "INCOTERMS2",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDCOMP_IN": {
"title": "ORDCOMP_IN",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_SCHED": {
"title": "BILL_SCHED",
"type": "string",
"description": "",
"maxLength": 1
},
"INVO_SCHED": {
"title": "INVO_SCHED",
"type": "string",
"description": "",
"maxLength": 1
},
"MN_INVOICE": {
"title": "MN_INVOICE",
"type": "string",
"description": "",
"maxLength": 1
},
"EX_RATE_FI": {
"title": "EX_RATE_FI",
"type": "string",
"description": "",
"maxLength": 1
},
"ADD_VAL_DY": {
"title": "ADD_VAL_DY",
"type": "string",
"description": "",
"maxLength": 1
},
"FIX_VAL_DY": {
"title": "FIX_VAL_DY",
"type": "string",
"description": "",
"maxLength": 1
},
"PMNTTRMS": {
"title": "PMNTTRMS",
"type": "string",
"description": "",
"maxLength": 1
},
"PYMT_METH": {
"title": "PYMT_METH",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCNT_ASGN": {
"title": "ACCNT_ASGN",
"type": "string",
"description": "",
"maxLength": 1
},
"EXCHG_RATE": {
"title": "EXCHG_RATE",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICE_DATE": {
"title": "PRICE_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"SERV_DATE": {
"title": "SERV_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"DUNN_KEY": {
"title": "DUNN_KEY",
"type": "string",
"description": "",
"maxLength": 1
},
"DUNN_BLOCK": {
"title": "DUNN_BLOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"PROMOTION": {
"title": "PROMOTION",
"type": "string",
"description": "",
"maxLength": 1
},
"PMTGAR_PRO": {
"title": "PMTGAR_PRO",
"type": "string",
"description": "",
"maxLength": 1
},
"DOC_NUM_FI": {
"title": "DOC_NUM_FI",
"type": "string",
"description": "",
"maxLength": 1
},
"DEPARTM_NO": {
"title": "DEPARTM_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"REC_POINT": {
"title": "REC_POINT",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP1": {
"title": "CSTCNDGRP1",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP2": {
"title": "CSTCNDGRP2",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP3": {
"title": "CSTCNDGRP3",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP4": {
"title": "CSTCNDGRP4",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP5": {
"title": "CSTCNDGRP5",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 1
},
"TRG_QTY_NO": {
"title": "TRG_QTY_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"TRGQTY_DEN": {
"title": "TRGQTY_DEN",
"type": "string",
"description": "",
"maxLength": 1
},
"RNDDLV_QTY": {
"title": "RNDDLV_QTY",
"type": "string",
"description": "",
"maxLength": 1
},
"MAXDEVAMNT": {
"title": "MAXDEVAMNT",
"type": "string",
"description": "",
"maxLength": 1
},
"MAXDEVPER": {
"title": "MAXDEVPER",
"type": "string",
"description": "",
"maxLength": 1
},
"MAXDEV_DAY": {
"title": "MAXDEV_DAY",
"type": "string",
"description": "",
"maxLength": 1
},
"USAGE_IND": {
"title": "USAGE_IND",
"type": "string",
"description": "",
"maxLength": 1
},
"FIXED_QUAN": {
"title": "FIXED_QUAN",
"type": "string",
"description": "",
"maxLength": 1
},
"UNLMT_DLV": {
"title": "UNLMT_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"OVERDLVTOL": {
"title": "OVERDLVTOL",
"type": "string",
"description": "",
"maxLength": 1
},
"UNDDLV_TOL": {
"title": "UNDDLV_TOL",
"type": "string",
"description": "",
"maxLength": 1
},
"DIVISION": {
"title": "DIVISION",
"type": "string",
"description": "",
"maxLength": 1
},
"SALQTYNUM": {
"title": "SALQTYNUM",
"type": "string",
"description": "",
"maxLength": 1
},
"SALQTYDEN": {
"title": "SALQTYDEN",
"type": "string",
"description": "",
"maxLength": 1
},
"GROSS_WGHT": {
"title": "GROSS_WGHT",
"type": "string",
"description": "",
"maxLength": 1
},
"NET_WEIGHT": {
"title": "NET_WEIGHT",
"type": "string",
"description": "",
"maxLength": 1
},
"UNTOF_WGHT": {
"title": "UNTOF_WGHT",
"type": "string",
"description": "",
"maxLength": 1
},
"VOLUME": {
"title": "VOLUME",
"type": "string",
"description": "",
"maxLength": 1
},
"VOLUNIT": {
"title": "VOLUNIT",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_PRIO": {
"title": "DLV_PRIO",
"type": "string",
"description": "",
"maxLength": 1
},
"SHIP_POINT": {
"title": "SHIP_POINT",
"type": "string",
"description": "",
"maxLength": 1
},
"ROUTE": {
"title": "ROUTE",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS1": {
"title": "TAX_CLASS1",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_PR_GRP": {
"title": "MAT_PR_GRP",
"type": "string",
"description": "",
"maxLength": 1
},
"VAL_TYPE": {
"title": "VAL_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"FIXDAT_QTY": {
"title": "FIXDAT_QTY",
"type": "string",
"description": "",
"maxLength": 1
},
"BOMEXPL_NO": {
"title": "BOMEXPL_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"RESANALKEY": {
"title": "RESANALKEY",
"type": "string",
"description": "",
"maxLength": 1
},
"REQMTS_TYP": {
"title": "REQMTS_TYP",
"type": "string",
"description": "",
"maxLength": 1
},
"NO_GR_POST": {
"title": "NO_GR_POST",
"type": "string",
"description": "",
"maxLength": 1
},
"BUS_TRANST": {
"title": "BUS_TRANST",
"type": "string",
"description": "",
"maxLength": 1
},
"OVERHD_KEY": {
"title": "OVERHD_KEY",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTG_SHEET": {
"title": "CSTG_SHEET",
"type": "string",
"description": "",
"maxLength": 1
},
"MATFRGTGRP": {
"title": "MATFRGTGRP",
"type": "string",
"description": "",
"maxLength": 1
},
"PLDLVSHDIN": {
"title": "PLDLVSHDIN",
"type": "string",
"description": "",
"maxLength": 1
},
"SEQ_NO": {
"title": "SEQ_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"BIL_FORM": {
"title": "BIL_FORM",
"type": "string",
"description": "",
"maxLength": 1
},
"DLI_PROFIL": {
"title": "DLI_PROFIL",
"type": "string",
"description": "",
"maxLength": 1
},
"REV_TYPE": {
"title": "REV_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"BEGDEM_PER": {
"title": "BEGDEM_PER",
"type": "string",
"description": "",
"maxLength": 1
},
"PR_REF_MAT": {
"title": "PR_REF_MAT",
"type": "string",
"description": "",
"maxLength": 1
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 1
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDER_PROB": {
"title": "ORDER_PROB",
"type": "string",
"description": "",
"maxLength": 1
},
"MAX_PL_DLV": {
"title": "MAX_PL_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"CFOP_CODE": {
"title": "CFOP_CODE",
"type": "string",
"description": "",
"maxLength": 1
},
"TAXLAWICMS": {
"title": "TAXLAWICMS",
"type": "string",
"description": "",
"maxLength": 1
},
"TAXLAWIPI": {
"title": "TAXLAWIPI",
"type": "string",
"description": "",
"maxLength": 1
},
"SD_TAXCODE": {
"title": "SD_TAXCODE",
"type": "string",
"description": "",
"maxLength": 1
},
"ASSORT_MOD": {
"title": "ASSORT_MOD",
"type": "string",
"description": "",
"maxLength": 1
},
"COMP_QUANT": {
"title": "COMP_QUANT",
"type": "string",
"description": "",
"maxLength": 1
},
"TARGET_VAL": {
"title": "TARGET_VAL",
"type": "string",
"description": "",
"maxLength": 1
},
"PROFIT_CTR": {
"title": "PROFIT_CTR",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDERID": {
"title": "ORDERID",
"type": "string",
"description": "",
"maxLength": 1
},
"WBS_ELEM": {
"title": "WBS_ELEM",
"type": "string",
"description": "",
"maxLength": 1
},
"DEPREC_PER": {
"title": "DEPREC_PER",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC": {
"title": "REF_DOC",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC_IT": {
"title": "REF_DOC_IT",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC_CA": {
"title": "REF_DOC_CA",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_MAT35": {
"title": "CUST_MAT35",
"type": "string",
"description": "",
"maxLength": 1
},
"EXCH_RATE_FI_V": {
"title": "EXCH_RATE_FI_V",
"type": "string",
"description": "",
"maxLength": 1
},
"EXCHG_RATE_V": {
"title": "EXCHG_RATE_V",
"type": "string",
"description": "",
"maxLength": 1
},
"ITEMGUID_ATP": {
"title": "ITEMGUID_ATP",
"type": "string",
"description": "",
"maxLength": 1
},
"VAL_CONTR": {
"title": "VAL_CONTR",
"type": "string",
"description": "",
"maxLength": 1
},
"VAL_CON_I": {
"title": "VAL_CON_I",
"type": "string",
"description": "",
"maxLength": 1
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 1
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_EXT": {
"title": "MAT_EXT",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_GUID": {
"title": "MAT_GUID",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_VERS": {
"title": "MAT_VERS",
"type": "string",
"description": "",
"maxLength": 1
},
"P_MAT_EXT": {
"title": "P_MAT_EXT",
"type": "string",
"description": "",
"maxLength": 1
},
"P_MAT_GUID": {
"title": "P_MAT_GUID",
"type": "string",
"description": "",
"maxLength": 1
},
"P_MAT_VERS": {
"title": "P_MAT_VERS",
"type": "string",
"description": "",
"maxLength": 1
},
"FUNC_AREA": {
"title": "FUNC_AREA",
"type": "string",
"description": "",
"maxLength": 1
},
"ALTERN_BOM": {
"title": "ALTERN_BOM",
"type": "string",
"description": "",
"maxLength": 1
},
"FKK_CONACCT": {
"title": "FKK_CONACCT",
"type": "string",
"description": "",
"maxLength": 1
},
"EAN_UPC": {
"title": "EAN_UPC",
"type": "string",
"description": "",
"maxLength": 1
},
"PRODCAT": {
"title": "PRODCAT",
"type": "string",
"description": "",
"maxLength": 1
},
"SHIP_TYPE": {
"title": "SHIP_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"S_PROC_IND": {
"title": "S_PROC_IND",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_REL": {
"title": "BILL_REL",
"type": "string",
"description": "",
"maxLength": 1
},
"VW_UEPOS": {
"title": "VW_UEPOS",
"type": "string",
"description": "",
"maxLength": 1
},
"CAMPAIGN": {
"title": "CAMPAIGN",
"type": "string",
"description": "",
"maxLength": 1
},
"DLVSCHDUSE": {
"title": "DLVSCHDUSE",
"type": "string",
"description": "",
"maxLength": 1
},
"SELECTION": {
"title": "SELECTION",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_ENTRD": {
"title": "MAT_ENTRD",
"type": "string",
"description": "",
"maxLength": 1
},
"LOG_SYSTEM_OWN": {
"title": "LOG_SYSTEM_OWN",
"type": "string",
"description": "",
"maxLength": 1
},
"ITM_TYPE_USAGE": {
"title": "ITM_TYPE_USAGE",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_ENTRD_EXTERNAL": {
"title": "MAT_ENTRD_EXTERNAL",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_ENTRD_GUID": {
"title": "MAT_ENTRD_GUID",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_ENTRD_VERSION": {
"title": "MAT_ENTRD_VERSION",
"type": "string",
"description": "",
"maxLength": 1
},
"LOC_TAXCAT": {
"title": "LOC_TAXCAT",
"type": "string",
"description": "",
"maxLength": 1
},
"LOC_ZEROVAT": {
"title": "LOC_ZEROVAT",
"type": "string",
"description": "",
"maxLength": 1
},
"LOC_ACTCODE": {
"title": "LOC_ACTCODE",
"type": "string",
"description": "",
"maxLength": 1
},
"LOC_DISTTYPE": {
"title": "LOC_DISTTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"LOC_TXRELCLAS": {
"title": "LOC_TXRELCLAS",
"type": "string",
"description": "",
"maxLength": 1
},
"CALC_MOTIVE": {
"title": "CALC_MOTIVE",
"type": "string",
"description": "",
"maxLength": 1
},
"FUND": {
"title": "FUND",
"type": "string",
"description": "",
"maxLength": 1
},
"FUNDS_CTR": {
"title": "FUNDS_CTR",
"type": "string",
"description": "",
"maxLength": 1
},
"CMMT_ITEM": {
"title": "CMMT_ITEM",
"type": "string",
"description": "",
"maxLength": 1
},
"GRANT_NBR": {
"title": "GRANT_NBR",
"type": "string",
"description": "",
"maxLength": 1
},
"BUDGET_PERIOD": {
"title": "BUDGET_PERIOD",
"type": "string",
"description": "",
"maxLength": 1
},
"TAXLAWISS": {
"title": "TAXLAWISS",
"type": "string",
"description": "",
"maxLength": 1
},
"TAXLAWCOFINS": {
"title": "TAXLAWCOFINS",
"type": "string",
"description": "",
"maxLength": 1
},
"TAXLAWPIS": {
"title": "TAXLAWPIS",
"type": "string",
"description": "",
"maxLength": 1
},
"TREASURY_ACC_SYMBOL": {
"title": "TREASURY_ACC_SYMBOL",
"type": "string",
"description": "",
"maxLength": 1
},
"BUSINESS_EVENT_TCODE": {
"title": "BUSINESS_EVENT_TCODE",
"type": "string",
"description": "",
"maxLength": 1
},
"MODIFICATION_ALLOWED": {
"title": "MODIFICATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"CANCELLATION_ALLOWED": {
"title": "CANCELLATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"PAYMENT_METHODS": {
"title": "PAYMENT_METHODS",
"type": "string",
"description": "",
"maxLength": 1
},
"BUSINESS_PARTNER_NO": {
"title": "BUSINESS_PARTNER_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"REPORTING_FREQ": {
"title": "REPORTING_FREQ",
"type": "string",
"description": "",
"maxLength": 1
},
"CFOP_LONG": {
"title": "CFOP_LONG",
"type": "string",
"description": "",
"maxLength": 1
},
"SEPA_MANDATE_ID": {
"title": "SEPA_MANDATE_ID",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_SEGMENT": {
"title": "REQ_SEGMENT",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_SUBLEVL": {
"title": "TP_SUBLEVL",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_AGENCID": {
"title": "TP_AGENCID",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_ALTRAID": {
"title": "TP_ALTRAID",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_BEGPER": {
"title": "TP_BEGPER",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_ENDPER": {
"title": "TP_ENDPER",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_AVTYPE": {
"title": "TP_AVTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_MAIN_ACCT": {
"title": "TP_MAIN_ACCT",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_SUB_ACCT": {
"title": "TP_SUB_ACCT",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_BETC": {
"title": "TP_BETC",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_KEYS": {
"title": "ORDER_KEYS",
"type": "array",
"description": "Output Table of Reference Keys",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDKEY",
"type": "object",
"properties": {
"REFOBJTYP": {
"title": "REFOBJTYP",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJECT": {
"title": "REFOBJECT",
"type": "string",
"description": "",
"maxLength": 32
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
},
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"SCHED_LIN": {
"title": "SCHED_LIN",
"type": "integer",
"description": ""
},
"COND_NO": {
"title": "COND_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"CONDITEMNO": {
"title": "CONDITEMNO",
"type": "integer",
"description": ""
},
"COND_ST_NO": {
"title": "COND_ST_NO",
"type": "integer",
"description": ""
},
"COND_COUNT": {
"title": "COND_COUNT",
"type": "integer",
"description": ""
},
"COND_TYPE": {
"title": "COND_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"STATUS": {
"title": "STATUS",
"type": "string",
"description": "",
"maxLength": 1
},
"TINDEX": {
"title": "TINDEX",
"type": "integer",
"description": ""
},
"ADDRESS": {
"title": "ADDRESS",
"type": "string",
"description": "",
"maxLength": 10
},
"ABRLI": {
"title": "ABRLI",
"type": "integer",
"description": ""
},
"ABART": {
"title": "ABART",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_PARTNERS": {
"title": "ORDER_PARTNERS",
"type": "array",
"description": "Document Partner",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIPARNR",
"type": "object",
"properties": {
"PARTN_ROLE": {
"title": "PARTN_ROLE",
"type": "string",
"description": "",
"maxLength": 2
},
"PARTN_NUMB": {
"title": "PARTN_NUMB",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"TITLE": {
"title": "TITLE",
"type": "string",
"description": "",
"maxLength": 15
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_2": {
"title": "NAME_2",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_3": {
"title": "NAME_3",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_4": {
"title": "NAME_4",
"type": "string",
"description": "",
"maxLength": 35
},
"STREET": {
"title": "STREET",
"type": "string",
"description": "",
"maxLength": 35
},
"COUNTRY": {
"title": "COUNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"COUNTR_ISO": {
"title": "COUNTR_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"POSTL_CODE": {
"title": "POSTL_CODE",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_PCD": {
"title": "POBX_PCD",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_CTY": {
"title": "POBX_CTY",
"type": "string",
"description": "",
"maxLength": 35
},
"CITY": {
"title": "CITY",
"type": "string",
"description": "",
"maxLength": 35
},
"DISTRICT": {
"title": "DISTRICT",
"type": "string",
"description": "",
"maxLength": 35
},
"REGION": {
"title": "REGION",
"type": "string",
"description": "",
"maxLength": 3
},
"PO_BOX": {
"title": "PO_BOX",
"type": "string",
"description": "",
"maxLength": 10
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"TELEPHONE2": {
"title": "TELEPHONE2",
"type": "string",
"description": "",
"maxLength": 16
},
"TELEBOX": {
"title": "TELEBOX",
"type": "string",
"description": "",
"maxLength": 15
},
"FAX_NUMBER": {
"title": "FAX_NUMBER",
"type": "string",
"description": "",
"maxLength": 31
},
"TELETEX_NO": {
"title": "TELETEX_NO",
"type": "string",
"description": "",
"maxLength": 30
},
"TELEX_NO": {
"title": "TELEX_NO",
"type": "string",
"description": "",
"maxLength": 30
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"LANGU_ISO": {
"title": "LANGU_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"UNLOAD_PT": {
"title": "UNLOAD_PT",
"type": "string",
"description": "",
"maxLength": 25
},
"TRANSPZONE": {
"title": "TRANSPZONE",
"type": "string",
"description": "",
"maxLength": 10
},
"TAXJURCODE": {
"title": "TAXJURCODE",
"type": "string",
"description": "",
"maxLength": 15
},
"ADDRESS": {
"title": "ADDRESS",
"type": "string",
"description": "",
"maxLength": 10
},
"PRIV_ADDR": {
"title": "PRIV_ADDR",
"type": "string",
"description": "",
"maxLength": 10
},
"ADDR_TYPE": {
"title": "ADDR_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"ADDR_ORIG": {
"title": "ADDR_ORIG",
"type": "string",
"description": "",
"maxLength": 1
},
"ADDR_LINK": {
"title": "ADDR_LINK",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
},
"ORDER_SCHEDULES_IN": {
"title": "ORDER_SCHEDULES_IN",
"type": "array",
"description": "Schedule Line Data",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISCHDL",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"SCHED_LINE": {
"title": "SCHED_LINE",
"type": "integer",
"description": ""
},
"REQ_DATE": {
"title": "REQ_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_TIME": {
"title": "REQ_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "number",
"description": ""
},
"REQ_DLV_BL": {
"title": "REQ_DLV_BL",
"type": "string",
"description": "",
"maxLength": 2
},
"SCHED_TYPE": {
"title": "SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"TP_DATE": {
"title": "TP_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"MS_DATE": {
"title": "MS_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"LOAD_DATE": {
"title": "LOAD_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"GI_DATE": {
"title": "GI_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"TP_TIME": {
"title": "TP_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"MS_TIME": {
"title": "MS_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"LOAD_TIME": {
"title": "LOAD_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"GI_TIME": {
"title": "GI_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
},
"DLV_DATE": {
"title": "DLV_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REL_TYPE": {
"title": "REL_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"PLAN_SCHED_TYPE": {
"title": "PLAN_SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_SCHEDULES_INX": {
"title": "ORDER_SCHEDULES_INX",
"type": "array",
"description": "Checkbox Schedule Line Data",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISCHDLX",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"SCHED_LINE": {
"title": "SCHED_LINE",
"type": "integer",
"description": ""
},
"UPDATEFLAG": {
"title": "UPDATEFLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_DATE": {
"title": "REQ_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_TIME": {
"title": "REQ_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_DLV_BL": {
"title": "REQ_DLV_BL",
"type": "string",
"description": "",
"maxLength": 1
},
"SCHED_TYPE": {
"title": "SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_DATE": {
"title": "TP_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"MS_DATE": {
"title": "MS_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"LOAD_DATE": {
"title": "LOAD_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"GI_DATE": {
"title": "GI_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_TIME": {
"title": "TP_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"MS_TIME": {
"title": "MS_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"LOAD_TIME": {
"title": "LOAD_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"GI_TIME": {
"title": "GI_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"DLV_DATE": {
"title": "DLV_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"REL_TYPE": {
"title": "REL_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"PLAN_SCHED_TYPE": {
"title": "PLAN_SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_TEXT": {
"title": "ORDER_TEXT",
"type": "array",
"description": "Texts",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDTEXT",
"type": "object",
"properties": {
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"TEXT_ID": {
"title": "TEXT_ID",
"type": "string",
"description": "",
"maxLength": 4
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"LANGU_ISO": {
"title": "LANGU_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"FORMAT_COL": {
"title": "FORMAT_COL",
"type": "string",
"description": "",
"maxLength": 2
},
"TEXT_LINE": {
"title": "TEXT_LINE",
"type": "string",
"description": "",
"maxLength": 132
},
"FUNCTION": {
"title": "FUNCTION",
"type": "string",
"description": "",
"maxLength": 3
}
},
"required": []
}
},
"PARTNERADDRESSES": {
"title": "PARTNERADDRESSES",
"type": "array",
"description": "BAPI Reference Structure for Addresses (Org./Company)",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIADDR1",
"type": "object",
"properties": {
"ADDR_NO": {
"title": "ADDR_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"FORMOFADDR": {
"title": "FORMOFADDR",
"type": "string",
"description": "",
"maxLength": 20
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 40
},
"NAME_2": {
"title": "NAME_2",
"type": "string",
"description": "",
"maxLength": 40
},
"NAME_3": {
"title": "NAME_3",
"type": "string",
"description": "",
"maxLength": 40
},
"NAME_4": {
"title": "NAME_4",
"type": "string",
"description": "",
"maxLength": 40
},
"C_O_NAME": {
"title": "C_O_NAME",
"type": "string",
"description": "",
"maxLength": 40
},
"CITY": {
"title": "CITY",
"type": "string",
"description": "",
"maxLength": 40
},
"DISTRICT": {
"title": "DISTRICT",
"type": "string",
"description": "",
"maxLength": 40
},
"CITY_NO": {
"title": "CITY_NO",
"type": "string",
"description": "",
"maxLength": 12
},
"POSTL_COD1": {
"title": "POSTL_COD1",
"type": "string",
"description": "",
"maxLength": 10
},
"POSTL_COD2": {
"title": "POSTL_COD2",
"type": "string",
"description": "",
"maxLength": 10
},
"POSTL_COD3": {
"title": "POSTL_COD3",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_BOX": {
"title": "PO_BOX",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_BOX_CIT": {
"title": "PO_BOX_CIT",
"type": "string",
"description": "",
"maxLength": 40
},
"DELIV_DIS": {
"title": "DELIV_DIS",
"type": "string",
"description": "",
"maxLength": 15
},
"STREET": {
"title": "STREET",
"type": "string",
"description": "",
"maxLength": 40
},
"STREET_NO": {
"title": "STREET_NO",
"type": "string",
"description": "",
"maxLength": 12
},
"STR_ABBR": {
"title": "STR_ABBR",
"type": "string",
"description": "",
"maxLength": 2
},
"HOUSE_NO": {
"title": "HOUSE_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"STR_SUPPL1": {
"title": "STR_SUPPL1",
"type": "string",
"description": "",
"maxLength": 40
},
"STR_SUPPL2": {
"title": "STR_SUPPL2",
"type": "string",
"description": "",
"maxLength": 40
},
"LOCATION": {
"title": "LOCATION",
"type": "string",
"description": "",
"maxLength": 40
},
"BUILDING": {
"title": "BUILDING",
"type": "string",
"description": "",
"maxLength": 10
},
"FLOOR": {
"title": "FLOOR",
"type": "string",
"description": "",
"maxLength": 10
},
"ROOM_NO": {
"title": "ROOM_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"COUNTRY": {
"title": "COUNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"REGION": {
"title": "REGION",
"type": "string",
"description": "",
"maxLength": 3
},
"SORT1": {
"title": "SORT1",
"type": "string",
"description": "",
"maxLength": 20
},
"SORT2": {
"title": "SORT2",
"type": "string",
"description": "",
"maxLength": 20
},
"TIME_ZONE": {
"title": "TIME_ZONE",
"type": "string",
"description": "",
"maxLength": 6
},
"TAXJURCODE": {
"title": "TAXJURCODE",
"type": "string",
"description": "",
"maxLength": 15
},
"ADR_NOTES": {
"title": "ADR_NOTES",
"type": "string",
"description": "",
"maxLength": 50
},
"COMM_TYPE": {
"title": "COMM_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"TEL1_NUMBR": {
"title": "TEL1_NUMBR",
"type": "string",
"description": "",
"maxLength": 30
},
"TEL1_EXT": {
"title": "TEL1_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"FAX_NUMBER": {
"title": "FAX_NUMBER",
"type": "string",
"description": "",
"maxLength": 30
},
"FAX_EXTENS": {
"title": "FAX_EXTENS",
"type": "string",
"description": "",
"maxLength": 10
},
"STREET_LNG": {
"title": "STREET_LNG",
"type": "string",
"description": "",
"maxLength": 60
},
"DISTRCT_NO": {
"title": "DISTRCT_NO",
"type": "string",
"description": "",
"maxLength": 8
},
"CHCKSTATUS": {
"title": "CHCKSTATUS",
"type": "string",
"description": "",
"maxLength": 1
},
"PBOXCIT_NO": {
"title": "PBOXCIT_NO",
"type": "string",
"description": "",
"maxLength": 12
},
"TRANSPZONE": {
"title": "TRANSPZONE",
"type": "string",
"description": "",
"maxLength": 10
},
"HOUSE_NO2": {
"title": "HOUSE_NO2",
"type": "string",
"description": "",
"maxLength": 10
},
"E_MAIL": {
"title": "E_MAIL",
"type": "string",
"description": "",
"maxLength": 241
},
"STR_SUPPL3": {
"title": "STR_SUPPL3",
"type": "string",
"description": "",
"maxLength": 40
},
"TITLE": {
"title": "TITLE",
"type": "string",
"description": "",
"maxLength": 30
},
"COUNTRYISO": {
"title": "COUNTRYISO",
"type": "string",
"description": "",
"maxLength": 2
},
"LANGU_ISO": {
"title": "LANGU_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"BUILD_LONG": {
"title": "BUILD_LONG",
"type": "string",
"description": "",
"maxLength": 20
},
"REGIOGROUP": {
"title": "REGIOGROUP",
"type": "string",
"description": "",
"maxLength": 8
},
"HOME_CITY": {
"title": "HOME_CITY",
"type": "string",
"description": "",
"maxLength": 40
},
"HOMECITYNO": {
"title": "HOMECITYNO",
"type": "string",
"description": "",
"maxLength": 12
},
"PCODE1_EXT": {
"title": "PCODE1_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"PCODE2_EXT": {
"title": "PCODE2_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"PCODE3_EXT": {
"title": "PCODE3_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_W_O_NO": {
"title": "PO_W_O_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_BOX_REG": {
"title": "PO_BOX_REG",
"type": "string",
"description": "",
"maxLength": 3
},
"POBOX_CTRY": {
"title": "POBOX_CTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"PO_CTRYISO": {
"title": "PO_CTRYISO",
"type": "string",
"description": "",
"maxLength": 2
},
"HOMEPAGE": {
"title": "HOMEPAGE",
"type": "string",
"description": "",
"maxLength": 132
},
"DONT_USE_S": {
"title": "DONT_USE_S",
"type": "string",
"description": "",
"maxLength": 4
},
"DONT_USE_P": {
"title": "DONT_USE_P",
"type": "string",
"description": "",
"maxLength": 4
},
"HOUSE_NO3": {
"title": "HOUSE_NO3",
"type": "string",
"description": "",
"maxLength": 10
},
"LANGU_CR": {
"title": "LANGU_CR",
"type": "string",
"description": "",
"maxLength": 1
},
"LANGUCRISO": {
"title": "LANGUCRISO",
"type": "string",
"description": "",
"maxLength": 2
},
"PO_BOX_LOBBY": {
"title": "PO_BOX_LOBBY",
"type": "string",
"description": "",
"maxLength": 40
},
"DELI_SERV_TYPE": {
"title": "DELI_SERV_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"DELI_SERV_NUMBER": {
"title": "DELI_SERV_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"URI_TYPE": {
"title": "URI_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"COUNTY_CODE": {
"title": "COUNTY_CODE",
"type": "string",
"description": "",
"maxLength": 8
},
"COUNTY": {
"title": "COUNTY",
"type": "string",
"description": "",
"maxLength": 40
},
"TOWNSHIP_CODE": {
"title": "TOWNSHIP_CODE",
"type": "string",
"description": "",
"maxLength": 8
},
"TOWNSHIP": {
"title": "TOWNSHIP",
"type": "string",
"description": "",
"maxLength": 40
}
},
"required": []
}
},
"RETURN": {
"title": "RETURN",
"type": "array",
"description": "Return Messages",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIRET2",
"type": "object",
"properties": {
"TYPE": {
"title": "TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"ID": {
"title": "ID",
"type": "string",
"description": "",
"maxLength": 20
},
"NUMBER": {
"title": "NUMBER",
"type": "integer",
"description": ""
},
"MESSAGE": {
"title": "MESSAGE",
"type": "string",
"description": "",
"maxLength": 220
},
"LOG_NO": {
"title": "LOG_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"LOG_MSG_NO": {
"title": "LOG_MSG_NO",
"type": "integer",
"description": ""
},
"MESSAGE_V1": {
"title": "MESSAGE_V1",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V2": {
"title": "MESSAGE_V2",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V3": {
"title": "MESSAGE_V3",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V4": {
"title": "MESSAGE_V4",
"type": "string",
"description": "",
"maxLength": 50
},
"PARAMETER": {
"title": "PARAMETER",
"type": "string",
"description": "",
"maxLength": 32
},
"ROW": {
"title": "ROW",
"type": "string",
"description": ""
},
"FIELD": {
"title": "FIELD",
"type": "string",
"description": "",
"maxLength": 30
},
"SYSTEM": {
"title": "SYSTEM",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
}
},
"required": [
"ORDER_HEADER_IN",
"ORDER_PARTNERS"
]
}
Example:
{
"INT_NUMBER_ASSIGNMENT": "X",
"ORDER_HEADER_IN": {
"DOC_TYPE": "TA",
"SALES_ORG": "1000",
"DISTR_CHAN": "10",
"DIVISION": "10"
},
"ORDER_HEADER_INX": {
"UPDATEFLAG": "I",
"DOC_TYPE": "X",
"SALES_ORG": "X",
"DISTR_CHAN": "X",
"DIVISION": "X"
},
"ORDER_ITEMS_IN": [
{
"ITM_NUMBER": 10,
"HG_LV_ITEM": 0,
"MATERIAL": "H18",
"TARGET_QTY": 1,
"SALES_UNIT": "EA"
}
],
"ORDER_ITEMS_INX": [
{
"MATERIAL": "X",
"SALES_UNIT": "X"
}
],
"ORDER_PARTNERS": [
{
"PARTN_ROLE": "AG",
"PARTN_NUMB": "0000100018"
}
],
"ORDER_SCHEDULES_IN": [
{
"ITM_NUMBER": 10,
"REQ_QTY": 1
}
],
"ORDER_SCHEDULES_INX": [
{
"ITM_NUMBER": 10,
"SCHED_LINE": 1,
"REQ_QTY": "X"
}
]
}
HTTP status code 200
OK
Headers
- Link: required (string - repeat: true)
Link to the current page, the next page and the previous page. Marked accordingly with rel self, rel next and rel prev. The syntax must be conform to RFC-5988. The link to the current page (self) is required and must be provided always. The link to the next page (next) is optional. If not present, the next page is not available, as the current page is the last page of the result. The link to the previous page (prev) is optional. If not present, the previous page is not available, as the current page is the first page of the result.
Example:
<http://sample.com?pageNumber=2&pageSize=10>; rel="self", <http://sample.com?pageNumber=3&pageSize=10>; rel="next"
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "OutputOfBAPI_SALESORDER_CREATEFROMDAT2",
"type": "object",
"properties": {
"SALESDOCUMENT": {
"title": "SALESDOCUMENT",
"type": "string",
"description": "Number of Generated Document",
"maxLength": 10,
"default": ""
},
"EXTENSIONEX": {
"title": "EXTENSIONEX",
"type": "array",
"description": "Reference Structure for BAPI Parameters ExtensionIn/ExtensionOut",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIPAREX",
"type": "object",
"properties": {
"STRUCTURE": {
"title": "STRUCTURE",
"type": "string",
"description": "",
"maxLength": 30
},
"VALUEPART1": {
"title": "VALUEPART1",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART2": {
"title": "VALUEPART2",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART3": {
"title": "VALUEPART3",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART4": {
"title": "VALUEPART4",
"type": "string",
"description": "",
"maxLength": 240
}
},
"required": []
}
},
"EXTENSIONIN": {
"title": "EXTENSIONIN",
"type": "array",
"description": "Customer Enhancement for VBAK, VBAP, VBEP",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIPAREX",
"type": "object",
"properties": {
"STRUCTURE": {
"title": "STRUCTURE",
"type": "string",
"description": "",
"maxLength": 30
},
"VALUEPART1": {
"title": "VALUEPART1",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART2": {
"title": "VALUEPART2",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART3": {
"title": "VALUEPART3",
"type": "string",
"description": "",
"maxLength": 240
},
"VALUEPART4": {
"title": "VALUEPART4",
"type": "string",
"description": "",
"maxLength": 240
}
},
"required": []
}
},
"ORDER_CCARD": {
"title": "ORDER_CCARD",
"type": "array",
"description": "Credit Card Data",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICCARD",
"type": "object",
"properties": {
"CC_TYPE": {
"title": "CC_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"CC_NUMBER": {
"title": "CC_NUMBER",
"type": "string",
"description": "",
"maxLength": 25
},
"CC_VALID_T": {
"title": "CC_VALID_T",
"type": "string",
"description": "",
"maxLength": 10
},
"CC_NAME": {
"title": "CC_NAME",
"type": "string",
"description": "",
"maxLength": 40
},
"BILLAMOUNT": {
"title": "BILLAMOUNT",
"type": "number",
"description": ""
},
"AUTH_FLAG": {
"title": "AUTH_FLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"AUTHAMOUNT": {
"title": "AUTHAMOUNT",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"AUTH_DATE": {
"title": "AUTH_DATE",
"type": "string",
"description": "",
"maxLength": 10
},
"AUTH_TIME": {
"title": "AUTH_TIME",
"type": "string",
"description": "",
"maxLength": 8
},
"AUTH_CC_NO": {
"title": "AUTH_CC_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"AUTH_REFNO": {
"title": "AUTH_REFNO",
"type": "string",
"description": "",
"maxLength": 15
},
"CC_REACT": {
"title": "CC_REACT",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_RE_AMOUNT": {
"title": "CC_RE_AMOUNT",
"type": "number",
"description": ""
},
"GL_ACCOUNT": {
"title": "GL_ACCOUNT",
"type": "string",
"description": "",
"maxLength": 10
},
"CC_STAT_EX": {
"title": "CC_STAT_EX",
"type": "string",
"description": "",
"maxLength": 1
},
"CC_REACT_T": {
"title": "CC_REACT_T",
"type": "string",
"description": "",
"maxLength": 40
},
"VIRT_CARD": {
"title": "VIRT_CARD",
"type": "string",
"description": "",
"maxLength": 1
},
"MERCHIDCL": {
"title": "MERCHIDCL",
"type": "string",
"description": "",
"maxLength": 15
},
"PRE_AUTH": {
"title": "PRE_AUTH",
"type": "string",
"description": "CCPRE",
"maxLength": 1
},
"CC_SEQ_NO": {
"title": "CC_SEQ_NO",
"type": "string",
"description": "CCFOL",
"maxLength": 10
},
"AMOUNTCHAN": {
"title": "AMOUNTCHAN",
"type": "string",
"description": "CCVAL",
"maxLength": 1
},
"AUTHORTYPE": {
"title": "AUTHORTYPE",
"type": "string",
"description": "CCAUA",
"maxLength": 1
},
"DATAORIGIN": {
"title": "DATAORIGIN",
"type": "string",
"description": "CSOUR",
"maxLength": 1
},
"RADRCHECK1": {
"title": "RADRCHECK1",
"type": "string",
"description": "RCAVR_CC",
"maxLength": 4
},
"RADRCHECK2": {
"title": "RADRCHECK2",
"type": "string",
"description": "RCAVA_CC",
"maxLength": 4
},
"RADRCHECK3": {
"title": "RADRCHECK3",
"type": "string",
"description": "RCAVZ_CC",
"maxLength": 4
},
"RCARDCHECK": {
"title": "RCARDCHECK",
"type": "string",
"description": "RCRSP_CC",
"maxLength": 4
},
"CC_LIMITED": {
"title": "CC_LIMITED",
"type": "string",
"description": "CCBEG",
"maxLength": 1
},
"CC_VERIF_VALUE": {
"title": "CC_VERIF_VALUE",
"type": "string",
"description": "CVVAL",
"maxLength": 6
},
"CC_CTRL_FIELD": {
"title": "CC_CTRL_FIELD",
"type": "string",
"description": "CVVCT",
"maxLength": 1
},
"CC_IN_USE_ST": {
"title": "CC_IN_USE_ST",
"type": "string",
"description": "CVVST",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_BLOB": {
"title": "ORDER_CFGS_BLOB",
"type": "array",
"description": "Configuration: BLOB Internal Data (SCE)",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUBLB",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"CONTEXT": {
"title": "CONTEXT",
"type": "string",
"description": "",
"maxLength": 250
}
},
"required": []
}
},
"ORDER_CFGS_INST": {
"title": "ORDER_CFGS_INST",
"type": "array",
"description": "Configuration: Instances",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUINS",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"OBJ_TYPE": {
"title": "OBJ_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"CLASS_TYPE": {
"title": "CLASS_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"OBJ_KEY": {
"title": "OBJ_KEY",
"type": "string",
"description": "",
"maxLength": 50
},
"OBJ_TXT": {
"title": "OBJ_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"QUANTITY": {
"title": "QUANTITY",
"type": "string",
"description": "",
"maxLength": 15
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"QUANTITY_UNIT": {
"title": "QUANTITY_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"COMPLETE": {
"title": "COMPLETE",
"type": "string",
"description": "",
"maxLength": 1
},
"CONSISTENT": {
"title": "CONSISTENT",
"type": "string",
"description": "",
"maxLength": 1
},
"OBJECT_GUID": {
"title": "OBJECT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"PERSIST_ID": {
"title": "PERSIST_ID",
"type": "string",
"description": "",
"maxLength": 32
},
"PERSIST_ID_TYPE": {
"title": "PERSIST_ID_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_PART_OF": {
"title": "ORDER_CFGS_PART_OF",
"type": "array",
"description": "Configuration: Part-of Specifications",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUPRT",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"PARENT_ID": {
"title": "PARENT_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"PART_OF_NO": {
"title": "PART_OF_NO",
"type": "string",
"description": "",
"maxLength": 4
},
"OBJ_TYPE": {
"title": "OBJ_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"CLASS_TYPE": {
"title": "CLASS_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"OBJ_KEY": {
"title": "OBJ_KEY",
"type": "string",
"description": "",
"maxLength": 50
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_RELEVANT": {
"title": "SALES_RELEVANT",
"type": "string",
"description": "",
"maxLength": 1
},
"PART_OF_GUID": {
"title": "PART_OF_GUID",
"type": "string",
"description": "",
"maxLength": 32
}
},
"required": []
}
},
"ORDER_CFGS_REF": {
"title": "ORDER_CFGS_REF",
"type": "array",
"description": "Configuration: Reference Data",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUCFG",
"type": "object",
"properties": {
"POSEX": {
"title": "POSEX",
"type": "string",
"description": "",
"maxLength": 6
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"ROOT_ID": {
"title": "ROOT_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"SCE": {
"title": "SCE",
"type": "string",
"description": "",
"maxLength": 1
},
"KBNAME": {
"title": "KBNAME",
"type": "string",
"description": "",
"maxLength": 30
},
"KBVERSION": {
"title": "KBVERSION",
"type": "string",
"description": "",
"maxLength": 30
},
"COMPLETE": {
"title": "COMPLETE",
"type": "string",
"description": "",
"maxLength": 1
},
"CONSISTENT": {
"title": "CONSISTENT",
"type": "string",
"description": "",
"maxLength": 1
},
"CFGINFO": {
"title": "CFGINFO",
"type": "string",
"description": "",
"maxLength": 250
},
"KBPROFILE": {
"title": "KBPROFILE",
"type": "string",
"description": "",
"maxLength": 30
},
"KBLANGUAGE": {
"title": "KBLANGUAGE",
"type": "string",
"description": "",
"maxLength": 1
},
"CBASE_ID": {
"title": "CBASE_ID",
"type": "string",
"description": "",
"maxLength": 32
},
"CBASE_ID_TYPE": {
"title": "CBASE_ID_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_REFINST": {
"title": "ORDER_CFGS_REFINST",
"type": "array",
"description": "Configuration: Reference Item / Instance",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUREF",
"type": "object",
"properties": {
"POSEX": {
"title": "POSEX",
"type": "string",
"description": "",
"maxLength": 6
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
}
},
"required": []
}
},
"ORDER_CFGS_VALUE": {
"title": "ORDER_CFGS_VALUE",
"type": "array",
"description": "Configuration: Characteristic Values",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUVAL",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"CHARC": {
"title": "CHARC",
"type": "string",
"description": "",
"maxLength": 40
},
"CHARC_TXT": {
"title": "CHARC_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"VALUE": {
"title": "VALUE",
"type": "string",
"description": "",
"maxLength": 40
},
"VALUE_TXT": {
"title": "VALUE_TXT",
"type": "string",
"description": "",
"maxLength": 70
},
"AUTHOR": {
"title": "AUTHOR",
"type": "string",
"description": "",
"maxLength": 1
},
"VALUE_TO": {
"title": "VALUE_TO",
"type": "string",
"description": "",
"maxLength": 40
},
"VALCODE": {
"title": "VALCODE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_CFGS_VK": {
"title": "ORDER_CFGS_VK",
"type": "array",
"description": "Configuration: Variant Condition Key",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICUVK",
"type": "object",
"properties": {
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"VKEY": {
"title": "VKEY",
"type": "string",
"description": "",
"maxLength": 26
},
"FACTOR": {
"title": "FACTOR",
"type": "string",
"description": "",
"maxLength": 15
}
},
"required": []
}
},
"ORDER_CONDITIONS_IN": {
"title": "ORDER_CONDITIONS_IN",
"type": "array",
"description": "Conditions",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICOND",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"COND_ST_NO": {
"title": "COND_ST_NO",
"type": "integer",
"description": ""
},
"SD000COND_COUNT": {
"title": "COND_COUNT",
"type": "integer",
"description": ""
},
"SD000COND_TYPE": {
"title": "COND_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"SD000COND_VALUE": {
"title": "COND_VALUE",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"COND_UNIT": {
"title": "COND_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"COND_P_UNT": {
"title": "COND_P_UNT",
"type": "number",
"description": ""
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CD_UNT_ISO": {
"title": "CD_UNT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
},
"APPLICATIO": {
"title": "APPLICATIO",
"type": "string",
"description": "",
"maxLength": 2
},
"CONPRICDAT": {
"title": "CONPRICDAT",
"type": "string",
"description": "",
"maxLength": 8
},
"CALCTYPCON": {
"title": "CALCTYPCON",
"type": "string",
"description": "",
"maxLength": 1
},
"CONBASEVAL": {
"title": "CONBASEVAL",
"type": "number",
"description": ""
},
"CONEXCHRAT": {
"title": "CONEXCHRAT",
"type": "number",
"description": ""
},
"NUMCONVERT": {
"title": "NUMCONVERT",
"type": "number",
"description": ""
},
"DENOMINATO": {
"title": "DENOMINATO",
"type": "number",
"description": ""
},
"CONDTYPE": {
"title": "CONDTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"STAT_CON": {
"title": "STAT_CON",
"type": "string",
"description": "",
"maxLength": 1
},
"SCALETYPE": {
"title": "SCALETYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCRUALS": {
"title": "ACCRUALS",
"type": "string",
"description": "",
"maxLength": 1
},
"CONINVOLST": {
"title": "CONINVOLST",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDORIGIN": {
"title": "CONDORIGIN",
"type": "string",
"description": "",
"maxLength": 1
},
"GROUPCOND": {
"title": "GROUPCOND",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_UPDAT": {
"title": "COND_UPDAT",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCESS_SEQ": {
"title": "ACCESS_SEQ",
"type": "integer",
"description": ""
},
"CONDCOUNT": {
"title": "CONDCOUNT",
"type": "integer",
"description": ""
},
"ROUNDOFFDI": {
"title": "ROUNDOFFDI",
"type": "number",
"description": ""
},
"CONDVALUE": {
"title": "CONDVALUE",
"type": "number",
"description": ""
},
"CURRENCY_2": {
"title": "CURRENCY_2",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO_2": {
"title": "CURR_ISO_2",
"type": "string",
"description": "",
"maxLength": 3
},
"CONDCNTRL": {
"title": "CONDCNTRL",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDISACTI": {
"title": "CONDISACTI",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDCLASS": {
"title": "CONDCLASS",
"type": "string",
"description": "",
"maxLength": 1
},
"FACTBASVAL": {
"title": "FACTBASVAL",
"type": "number",
"description": ""
},
"SCALEBASIN": {
"title": "SCALEBASIN",
"type": "string",
"description": "",
"maxLength": 1
},
"SCALBASVAL": {
"title": "SCALBASVAL",
"type": "number",
"description": ""
},
"UNITMEASUR": {
"title": "UNITMEASUR",
"type": "string",
"description": "",
"maxLength": 3
},
"ISO_UNIT": {
"title": "ISO_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"CURRENCKEY": {
"title": "CURRENCKEY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURRENISO": {
"title": "CURRENISO",
"type": "string",
"description": "",
"maxLength": 3
},
"CONDINCOMP": {
"title": "CONDINCOMP",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDCONFIG": {
"title": "CONDCONFIG",
"type": "string",
"description": "",
"maxLength": 1
},
"CONDCHAMAN": {
"title": "CONDCHAMAN",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_NO": {
"title": "COND_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"TAX_CODE": {
"title": "TAX_CODE",
"type": "string",
"description": "",
"maxLength": 2
},
"VARCOND": {
"title": "VARCOND",
"type": "string",
"description": "",
"maxLength": 26
},
"ACCOUNTKEY": {
"title": "ACCOUNTKEY",
"type": "string",
"description": "",
"maxLength": 3
},
"ACCOUNT_KE": {
"title": "ACCOUNT_KE",
"type": "string",
"description": "",
"maxLength": 3
},
"WT_WITHCD": {
"title": "WT_WITHCD",
"type": "string",
"description": "",
"maxLength": 2
},
"STRUCTCOND": {
"title": "STRUCTCOND",
"type": "string",
"description": "",
"maxLength": 1
},
"FACTCONBAS": {
"title": "FACTCONBAS",
"type": "number",
"description": ""
},
"CONDCOINHD": {
"title": "CONDCOINHD",
"type": "integer",
"description": ""
}
},
"required": []
}
},
"ORDER_CONDITIONS_INX": {
"title": "ORDER_CONDITIONS_INX",
"type": "array",
"description": "Conditions Checkbox",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPICONDX",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"COND_ST_NO": {
"title": "COND_ST_NO",
"type": "integer",
"description": ""
},
"COND_COUNT": {
"title": "COND_COUNT",
"type": "integer",
"description": ""
},
"COND_TYPE": {
"title": "COND_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"UPDATEFLAG": {
"title": "UPDATEFLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_VALUE": {
"title": "COND_VALUE",
"type": "string",
"description": "",
"maxLength": 1
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_UNIT": {
"title": "COND_UNIT",
"type": "string",
"description": "",
"maxLength": 1
},
"COND_P_UNT": {
"title": "COND_P_UNT",
"type": "string",
"description": "",
"maxLength": 1
},
"VARCOND": {
"title": "VARCOND",
"type": "string",
"description": "",
"maxLength": 26
}
},
"required": []
}
},
"ORDER_ITEMS_IN": {
"title": "ORDER_ITEMS_IN",
"type": "array",
"description": "Item Data",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDITM",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"HG_LV_ITEM": {
"title": "HG_LV_ITEM",
"type": "integer",
"description": ""
},
"PO_ITM_NO": {
"title": "PO_ITM_NO",
"type": "string",
"description": "",
"maxLength": 6
},
"MATERIAL": {
"title": "MATERIAL",
"type": "string",
"description": "",
"maxLength": 18
},
"ALT_TO_ITM": {
"title": "ALT_TO_ITM",
"type": "integer",
"description": ""
},
"CUST_MAT22": {
"title": "CUST_MAT22",
"type": "string",
"description": "",
"maxLength": 22
},
"BATCH": {
"title": "BATCH",
"type": "string",
"description": "",
"maxLength": 10
},
"DLV_GROUP": {
"title": "DLV_GROUP",
"type": "integer",
"description": ""
},
"PART_DLV": {
"title": "PART_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"REASON_REJ": {
"title": "REASON_REJ",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 2
},
"BILL_DATE": {
"title": "BILL_DATE",
"type": "string",
"description": "",
"maxLength": 10
},
"PLANT": {
"title": "PLANT",
"type": "string",
"description": "",
"maxLength": 4
},
"STORE_LOC": {
"title": "STORE_LOC",
"type": "string",
"description": "",
"maxLength": 4
},
"TARGET_QTY": {
"title": "TARGET_QTY",
"type": "number",
"description": ""
},
"TARGET_QU": {
"title": "TARGET_QU",
"type": "string",
"description": "",
"maxLength": 3
},
"T_UNIT_ISO": {
"title": "T_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"ITEM_CATEG": {
"title": "ITEM_CATEG",
"type": "string",
"description": "",
"maxLength": 4
},
"SHORT_TEXT": {
"title": "SHORT_TEXT",
"type": "string",
"description": "",
"maxLength": 40
},
"PRC_GROUP1": {
"title": "PRC_GROUP1",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP2": {
"title": "PRC_GROUP2",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP3": {
"title": "PRC_GROUP3",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP4": {
"title": "PRC_GROUP4",
"type": "string",
"description": "",
"maxLength": 3
},
"PRC_GROUP5": {
"title": "PRC_GROUP5",
"type": "string",
"description": "",
"maxLength": 3
},
"PROD_HIERA": {
"title": "PROD_HIERA",
"type": "string",
"description": "",
"maxLength": 18
},
"MATL_GROUP": {
"title": "MATL_GROUP",
"type": "string",
"description": "",
"maxLength": 9
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 35
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 12
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 35
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 8
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 4
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 12
},
"POITM_NO_S": {
"title": "POITM_NO_S",
"type": "string",
"description": "",
"maxLength": 6
},
"PRICE_GRP": {
"title": "PRICE_GRP",
"type": "string",
"description": "",
"maxLength": 2
},
"CUST_GROUP": {
"title": "CUST_GROUP",
"type": "string",
"description": "",
"maxLength": 2
},
"SALES_DIST": {
"title": "SALES_DIST",
"type": "string",
"description": "",
"maxLength": 6
},
"PRICE_LIST": {
"title": "PRICE_LIST",
"type": "string",
"description": "",
"maxLength": 2
},
"INCOTERMS1": {
"title": "INCOTERMS1",
"type": "string",
"description": "",
"maxLength": 3
},
"INCOTERMS2": {
"title": "INCOTERMS2",
"type": "string",
"description": "",
"maxLength": 28
},
"ORDCOMP_IN": {
"title": "ORDCOMP_IN",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_SCHED": {
"title": "BILL_SCHED",
"type": "string",
"description": "",
"maxLength": 2
},
"INVO_SCHED": {
"title": "INVO_SCHED",
"type": "string",
"description": "",
"maxLength": 2
},
"MN_INVOICE": {
"title": "MN_INVOICE",
"type": "string",
"description": "",
"maxLength": 1
},
"EX_RATE_FI": {
"title": "EX_RATE_FI",
"type": "number",
"description": ""
},
"ADD_VAL_DY": {
"title": "ADD_VAL_DY",
"type": "integer",
"description": ""
},
"FIX_VAL_DY": {
"title": "FIX_VAL_DY",
"type": "string",
"description": "",
"maxLength": 8
},
"PMNTTRMS": {
"title": "PMNTTRMS",
"type": "string",
"description": "",
"maxLength": 4
},
"PYMT_METH": {
"title": "PYMT_METH",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCNT_ASGN": {
"title": "ACCNT_ASGN",
"type": "string",
"description": "",
"maxLength": 2
},
"EXCHG_RATE": {
"title": "EXCHG_RATE",
"type": "number",
"description": ""
},
"PRICE_DATE": {
"title": "PRICE_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"SERV_DATE": {
"title": "SERV_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DUNN_KEY": {
"title": "DUNN_KEY",
"type": "string",
"description": "",
"maxLength": 1
},
"DUNN_BLOCK": {
"title": "DUNN_BLOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"PROMOTION": {
"title": "PROMOTION",
"type": "string",
"description": "",
"maxLength": 10
},
"PMTGAR_PRO": {
"title": "PMTGAR_PRO",
"type": "string",
"description": "",
"maxLength": 6
},
"DOC_NUM_FI": {
"title": "DOC_NUM_FI",
"type": "string",
"description": "",
"maxLength": 10
},
"DEPARTM_NO": {
"title": "DEPARTM_NO",
"type": "string",
"description": "",
"maxLength": 4
},
"REC_POINT": {
"title": "REC_POINT",
"type": "string",
"description": "",
"maxLength": 25
},
"CSTCNDGRP1": {
"title": "CSTCNDGRP1",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP2": {
"title": "CSTCNDGRP2",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP3": {
"title": "CSTCNDGRP3",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP4": {
"title": "CSTCNDGRP4",
"type": "string",
"description": "",
"maxLength": 2
},
"CSTCNDGRP5": {
"title": "CSTCNDGRP5",
"type": "string",
"description": "",
"maxLength": 2
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 3
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"S_UNIT_ISO": {
"title": "S_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"TRG_QTY_NO": {
"title": "TRG_QTY_NO",
"type": "number",
"description": ""
},
"TRGQTY_DEN": {
"title": "TRGQTY_DEN",
"type": "number",
"description": ""
},
"RNDDLV_QTY": {
"title": "RNDDLV_QTY",
"type": "number",
"description": ""
},
"MAXDEVAMNT": {
"title": "MAXDEVAMNT",
"type": "number",
"description": ""
},
"MAXDEVPER": {
"title": "MAXDEVPER",
"type": "number",
"description": ""
},
"MAXDEV_DAY": {
"title": "MAXDEV_DAY",
"type": "number",
"description": ""
},
"USAGE_IND": {
"title": "USAGE_IND",
"type": "string",
"description": "",
"maxLength": 3
},
"FIXED_QUAN": {
"title": "FIXED_QUAN",
"type": "string",
"description": "",
"maxLength": 1
},
"UNLMT_DLV": {
"title": "UNLMT_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"OVERDLVTOL": {
"title": "OVERDLVTOL",
"type": "number",
"description": ""
},
"UNDDLV_TOL": {
"title": "UNDDLV_TOL",
"type": "number",
"description": ""
},
"DIVISION": {
"title": "DIVISION",
"type": "string",
"description": "",
"maxLength": 2
},
"SALQTYNUM": {
"title": "SALQTYNUM",
"type": "number",
"description": ""
},
"SALQTYDEN": {
"title": "SALQTYDEN",
"type": "number",
"description": ""
},
"GROSS_WGHT": {
"title": "GROSS_WGHT",
"type": "number",
"description": ""
},
"NET_WEIGHT": {
"title": "NET_WEIGHT",
"type": "number",
"description": ""
},
"UNTOF_WGHT": {
"title": "UNTOF_WGHT",
"type": "string",
"description": "",
"maxLength": 3
},
"UNOF_WTISO": {
"title": "UNOF_WTISO",
"type": "string",
"description": "",
"maxLength": 3
},
"VOLUME": {
"title": "VOLUME",
"type": "number",
"description": ""
},
"VOLUNIT": {
"title": "VOLUNIT",
"type": "string",
"description": "",
"maxLength": 3
},
"VOLUNITISO": {
"title": "VOLUNITISO",
"type": "string",
"description": "",
"maxLength": 3
},
"DLV_PRIO": {
"title": "DLV_PRIO",
"type": "integer",
"description": ""
},
"SHIP_POINT": {
"title": "SHIP_POINT",
"type": "string",
"description": "",
"maxLength": 4
},
"ROUTE": {
"title": "ROUTE",
"type": "string",
"description": "",
"maxLength": 6
},
"CREATED_BY": {
"title": "CREATED_BY",
"type": "string",
"description": "",
"maxLength": 12
},
"TAX_CLASS1": {
"title": "TAX_CLASS1",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_PR_GRP": {
"title": "MAT_PR_GRP",
"type": "string",
"description": "",
"maxLength": 2
},
"VAL_TYPE": {
"title": "VAL_TYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"FIXDAT_QTY": {
"title": "FIXDAT_QTY",
"type": "string",
"description": "",
"maxLength": 1
},
"BOMEXPL_NO": {
"title": "BOMEXPL_NO",
"type": "string",
"description": "",
"maxLength": 8
},
"RESANALKEY": {
"title": "RESANALKEY",
"type": "string",
"description": "",
"maxLength": 6
},
"REQMTS_TYP": {
"title": "REQMTS_TYP",
"type": "string",
"description": "",
"maxLength": 4
},
"NO_GR_POST": {
"title": "NO_GR_POST",
"type": "string",
"description": "",
"maxLength": 1
},
"BUS_TRANST": {
"title": "BUS_TRANST",
"type": "string",
"description": "",
"maxLength": 2
},
"OVERHD_KEY": {
"title": "OVERHD_KEY",
"type": "string",
"description": "",
"maxLength": 6
},
"CSTG_SHEET": {
"title": "CSTG_SHEET",
"type": "string",
"description": "",
"maxLength": 6
},
"MATFRGTGRP": {
"title": "MATFRGTGRP",
"type": "string",
"description": "",
"maxLength": 8
},
"PLDLVSHDIN": {
"title": "PLDLVSHDIN",
"type": "string",
"description": "",
"maxLength": 4
},
"SEQ_NO": {
"title": "SEQ_NO",
"type": "string",
"description": "",
"maxLength": 35
},
"BIL_FORM": {
"title": "BIL_FORM",
"type": "string",
"description": "",
"maxLength": 2
},
"DLI_PROFIL": {
"title": "DLI_PROFIL",
"type": "string",
"description": "",
"maxLength": 8
},
"REV_TYPE": {
"title": "REV_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"BEGDEM_PER": {
"title": "BEGDEM_PER",
"type": "string",
"description": "",
"maxLength": 1
},
"PR_REF_MAT": {
"title": "PR_REF_MAT",
"type": "string",
"description": "",
"maxLength": 18
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
},
"ORDER_PROB": {
"title": "ORDER_PROB",
"type": "integer",
"description": ""
},
"MAX_PL_DLV": {
"title": "MAX_PL_DLV",
"type": "number",
"description": ""
},
"CFOP_CODE": {
"title": "CFOP_CODE",
"type": "string",
"description": "",
"maxLength": 5
},
"TAXLAWICMS": {
"title": "TAXLAWICMS",
"type": "string",
"description": "",
"maxLength": 3
},
"TAXLAWIPI": {
"title": "TAXLAWIPI",
"type": "string",
"description": "",
"maxLength": 3
},
"SD_TAXCODE": {
"title": "SD_TAXCODE",
"type": "string",
"description": "",
"maxLength": 2
},
"ASSORT_MOD": {
"title": "ASSORT_MOD",
"type": "string",
"description": "",
"maxLength": 18
},
"COMP_QUANT": {
"title": "COMP_QUANT",
"type": "number",
"description": ""
},
"TARGET_VAL": {
"title": "TARGET_VAL",
"type": "number",
"description": ""
},
"CURRENCY": {
"title": "CURRENCY",
"type": "string",
"description": "",
"maxLength": 5
},
"CURR_ISO": {
"title": "CURR_ISO",
"type": "string",
"description": "",
"maxLength": 3
},
"PROFIT_CTR": {
"title": "PROFIT_CTR",
"type": "string",
"description": "",
"maxLength": 10
},
"ORDERID": {
"title": "ORDERID",
"type": "string",
"description": "",
"maxLength": 12
},
"WBS_ELEM": {
"title": "WBS_ELEM",
"type": "string",
"description": "",
"maxLength": 24
},
"DEPREC_PER": {
"title": "DEPREC_PER",
"type": "number",
"description": ""
},
"REF_DOC": {
"title": "REF_DOC",
"type": "string",
"description": "",
"maxLength": 10
},
"REF_DOC_IT": {
"title": "REF_DOC_IT",
"type": "integer",
"description": ""
},
"REF_DOC_CA": {
"title": "REF_DOC_CA",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_MAT35": {
"title": "CUST_MAT35",
"type": "string",
"description": "",
"maxLength": 35
},
"EXCH_RATE_FI_V": {
"title": "EXCH_RATE_FI_V",
"type": "number",
"description": ""
},
"EXCHG_RATE_V": {
"title": "EXCHG_RATE_V",
"type": "number",
"description": ""
},
"ITEMGUID_ATP": {
"title": "ITEMGUID_ATP",
"type": "string",
"description": "",
"maxLength": 22
},
"VAL_CONTR": {
"title": "VAL_CONTR",
"type": "string",
"description": "",
"maxLength": 10
},
"VAL_CON_I": {
"title": "VAL_CON_I",
"type": "integer",
"description": ""
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 6
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 8
},
"MAT_EXT": {
"title": "MAT_EXT",
"type": "string",
"description": "",
"maxLength": 40
},
"MAT_GUID": {
"title": "MAT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_VERS": {
"title": "MAT_VERS",
"type": "string",
"description": "",
"maxLength": 10
},
"P_MAT_EXT": {
"title": "P_MAT_EXT",
"type": "string",
"description": "",
"maxLength": 40
},
"P_MAT_GUID": {
"title": "P_MAT_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"P_MAT_VERS": {
"title": "P_MAT_VERS",
"type": "string",
"description": "",
"maxLength": 10
},
"FUNC_AREA": {
"title": "FUNC_AREA",
"type": "string",
"description": "",
"maxLength": 4
},
"ALTERN_BOM": {
"title": "ALTERN_BOM",
"type": "string",
"description": "",
"maxLength": 2
},
"FKK_CONACCT": {
"title": "FKK_CONACCT",
"type": "string",
"description": "",
"maxLength": 12
},
"EAN_UPC": {
"title": "EAN_UPC",
"type": "string",
"description": "",
"maxLength": 18
},
"PRODCAT": {
"title": "PRODCAT",
"type": "string",
"description": "",
"maxLength": 10
},
"SHIP_TYPE": {
"title": "SHIP_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"S_PROC_IND": {
"title": "S_PROC_IND",
"type": "string",
"description": "",
"maxLength": 4
},
"FUNC_AREA_LONG": {
"title": "FUNC_AREA_LONG",
"type": "string",
"description": "",
"maxLength": 16
},
"BILL_REL": {
"title": "BILL_REL",
"type": "string",
"description": "",
"maxLength": 1
},
"VW_UEPOS": {
"title": "VW_UEPOS",
"type": "string",
"description": "",
"maxLength": 1
},
"CAMPAIGN": {
"title": "CAMPAIGN",
"type": "string",
"description": "",
"maxLength": 16
},
"DLVSCHDUSE": {
"title": "DLVSCHDUSE",
"type": "string",
"description": "",
"maxLength": 3
},
"CFOP_LONG": {
"title": "CFOP_LONG",
"type": "string",
"description": "",
"maxLength": 10
},
"SELECTION": {
"title": "SELECTION",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_ENTRD": {
"title": "MAT_ENTRD",
"type": "string",
"description": "",
"maxLength": 18
},
"LOG_SYSTEM_OWN": {
"title": "LOG_SYSTEM_OWN",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_TYPE_USAGE": {
"title": "ITM_TYPE_USAGE",
"type": "string",
"description": "",
"maxLength": 4
},
"TAXLAWISS": {
"title": "TAXLAWISS",
"type": "string",
"description": "",
"maxLength": 3
},
"MAT_ENTRD_EXTERNAL": {
"title": "MAT_ENTRD_EXTERNAL",
"type": "string",
"description": "",
"maxLength": 40
},
"MAT_ENTRD_GUID": {
"title": "MAT_ENTRD_GUID",
"type": "string",
"description": "",
"maxLength": 32
},
"MAT_ENTRD_VERSION": {
"title": "MAT_ENTRD_VERSION",
"type": "string",
"description": "",
"maxLength": 10
},
"LOC_TAXCAT": {
"title": "LOC_TAXCAT",
"type": "string",
"description": "",
"maxLength": 2
},
"LOC_ZEROVAT": {
"title": "LOC_ZEROVAT",
"type": "string",
"description": "",
"maxLength": 1
},
"LOC_ACTCODE": {
"title": "LOC_ACTCODE",
"type": "string",
"description": "",
"maxLength": 2
},
"LOC_DISTTYPE": {
"title": "LOC_DISTTYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"LOC_TXRELCLAS": {
"title": "LOC_TXRELCLAS",
"type": "string",
"description": "",
"maxLength": 10
},
"CALC_MOTIVE": {
"title": "CALC_MOTIVE",
"type": "string",
"description": "",
"maxLength": 2
},
"COMPREAS": {
"title": "COMPREAS",
"type": "string",
"description": "",
"maxLength": 4
},
"FUND": {
"title": "FUND",
"type": "string",
"description": "",
"maxLength": 10
},
"FUNDS_CTR": {
"title": "FUNDS_CTR",
"type": "string",
"description": "",
"maxLength": 16
},
"CMMT_ITEM": {
"title": "CMMT_ITEM",
"type": "string",
"description": "",
"maxLength": 24
},
"GRANT_NBR": {
"title": "GRANT_NBR",
"type": "string",
"description": "",
"maxLength": 20
},
"BUDGET_PERIOD": {
"title": "BUDGET_PERIOD",
"type": "string",
"description": "",
"maxLength": 10
},
"TAXLAWCOFINS": {
"title": "TAXLAWCOFINS",
"type": "string",
"description": "",
"maxLength": 3
},
"TAXLAWPIS": {
"title": "TAXLAWPIS",
"type": "string",
"description": "",
"maxLength": 3
},
"TREASURY_ACC_SYMBOL": {
"title": "TREASURY_ACC_SYMBOL",
"type": "string",
"description": "",
"maxLength": 30
},
"BUSINESS_EVENT_TCODE": {
"title": "BUSINESS_EVENT_TCODE",
"type": "string",
"description": "",
"maxLength": 10
},
"MODIFICATION_ALLOWED": {
"title": "MODIFICATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"CANCELLATION_ALLOWED": {
"title": "CANCELLATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"PAYMENT_METHODS": {
"title": "PAYMENT_METHODS",
"type": "string",
"description": "",
"maxLength": 10
},
"BUSINESS_PARTNER_NO": {
"title": "BUSINESS_PARTNER_NO",
"type": "string",
"description": "",
"maxLength": 6
},
"REPORTING_FREQ": {
"title": "REPORTING_FREQ",
"type": "string",
"description": "",
"maxLength": 3
},
"SEPA_MANDATE_ID": {
"title": "SEPA_MANDATE_ID",
"type": "string",
"description": "",
"maxLength": 35
},
"REQ_SEGMENT": {
"title": "REQ_SEGMENT",
"type": "string",
"description": "",
"maxLength": 16
},
"TP_SUBLEVL": {
"title": "TP_SUBLEVL",
"type": "string",
"description": "",
"maxLength": 2
},
"TP_AGENCID": {
"title": "TP_AGENCID",
"type": "string",
"description": "",
"maxLength": 3
},
"TP_ALTRAID": {
"title": "TP_ALTRAID",
"type": "string",
"description": "",
"maxLength": 3
},
"TP_BEGPER": {
"title": "TP_BEGPER",
"type": "integer",
"description": ""
},
"TP_ENDPER": {
"title": "TP_ENDPER",
"type": "integer",
"description": ""
},
"TP_AVTYPE": {
"title": "TP_AVTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_MAIN_ACCT": {
"title": "TP_MAIN_ACCT",
"type": "string",
"description": "",
"maxLength": 4
},
"TP_SUB_ACCT": {
"title": "TP_SUB_ACCT",
"type": "string",
"description": "",
"maxLength": 3
},
"TP_BETC": {
"title": "TP_BETC",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
},
"ORDER_ITEMS_INX": {
"title": "ORDER_ITEMS_INX",
"type": "array",
"description": "Item Data Checkbox",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDITMX",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"UPDATEFLAG": {
"title": "UPDATEFLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"HG_LV_ITEM": {
"title": "HG_LV_ITEM",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_ITM_NO": {
"title": "PO_ITM_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"MATERIAL": {
"title": "MATERIAL",
"type": "string",
"description": "",
"maxLength": 1
},
"ALT_TO_ITM": {
"title": "ALT_TO_ITM",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_MAT22": {
"title": "CUST_MAT22",
"type": "string",
"description": "",
"maxLength": 1
},
"BATCH": {
"title": "BATCH",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_GROUP": {
"title": "DLV_GROUP",
"type": "string",
"description": "",
"maxLength": 1
},
"PART_DLV": {
"title": "PART_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"REASON_REJ": {
"title": "REASON_REJ",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_BLOCK": {
"title": "BILL_BLOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_DATE": {
"title": "BILL_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"PLANT": {
"title": "PLANT",
"type": "string",
"description": "",
"maxLength": 1
},
"STORE_LOC": {
"title": "STORE_LOC",
"type": "string",
"description": "",
"maxLength": 1
},
"TARGET_QTY": {
"title": "TARGET_QTY",
"type": "string",
"description": "",
"maxLength": 1
},
"TARGET_QU": {
"title": "TARGET_QU",
"type": "string",
"description": "",
"maxLength": 1
},
"T_UNIT_ISO": {
"title": "T_UNIT_ISO",
"type": "string",
"description": "",
"maxLength": 1
},
"ITEM_CATEG": {
"title": "ITEM_CATEG",
"type": "string",
"description": "",
"maxLength": 1
},
"SHORT_TEXT": {
"title": "SHORT_TEXT",
"type": "string",
"description": "",
"maxLength": 1
},
"PRC_GROUP1": {
"title": "PRC_GROUP1",
"type": "string",
"description": "",
"maxLength": 1
},
"PRC_GROUP2": {
"title": "PRC_GROUP2",
"type": "string",
"description": "",
"maxLength": 1
},
"PRC_GROUP3": {
"title": "PRC_GROUP3",
"type": "string",
"description": "",
"maxLength": 1
},
"PRC_GROUP4": {
"title": "PRC_GROUP4",
"type": "string",
"description": "",
"maxLength": 1
},
"PRC_GROUP5": {
"title": "PRC_GROUP5",
"type": "string",
"description": "",
"maxLength": 1
},
"PROD_HIERA": {
"title": "PROD_HIERA",
"type": "string",
"description": "",
"maxLength": 1
},
"MATL_GROUP": {
"title": "MATL_GROUP",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_NO_C": {
"title": "PURCH_NO_C",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_DATE": {
"title": "PURCH_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_METHOD": {
"title": "PO_METHOD",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_1": {
"title": "REF_1",
"type": "string",
"description": "",
"maxLength": 1
},
"PURCH_NO_S": {
"title": "PURCH_NO_S",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_DAT_S": {
"title": "PO_DAT_S",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_METH_S": {
"title": "PO_METH_S",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_1_S": {
"title": "REF_1_S",
"type": "string",
"description": "",
"maxLength": 1
},
"POITM_NO_S": {
"title": "POITM_NO_S",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICE_GRP": {
"title": "PRICE_GRP",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_GROUP": {
"title": "CUST_GROUP",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_DIST": {
"title": "SALES_DIST",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICE_LIST": {
"title": "PRICE_LIST",
"type": "string",
"description": "",
"maxLength": 1
},
"INCOTERMS1": {
"title": "INCOTERMS1",
"type": "string",
"description": "",
"maxLength": 1
},
"INCOTERMS2": {
"title": "INCOTERMS2",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDCOMP_IN": {
"title": "ORDCOMP_IN",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_SCHED": {
"title": "BILL_SCHED",
"type": "string",
"description": "",
"maxLength": 1
},
"INVO_SCHED": {
"title": "INVO_SCHED",
"type": "string",
"description": "",
"maxLength": 1
},
"MN_INVOICE": {
"title": "MN_INVOICE",
"type": "string",
"description": "",
"maxLength": 1
},
"EX_RATE_FI": {
"title": "EX_RATE_FI",
"type": "string",
"description": "",
"maxLength": 1
},
"ADD_VAL_DY": {
"title": "ADD_VAL_DY",
"type": "string",
"description": "",
"maxLength": 1
},
"FIX_VAL_DY": {
"title": "FIX_VAL_DY",
"type": "string",
"description": "",
"maxLength": 1
},
"PMNTTRMS": {
"title": "PMNTTRMS",
"type": "string",
"description": "",
"maxLength": 1
},
"PYMT_METH": {
"title": "PYMT_METH",
"type": "string",
"description": "",
"maxLength": 1
},
"ACCNT_ASGN": {
"title": "ACCNT_ASGN",
"type": "string",
"description": "",
"maxLength": 1
},
"EXCHG_RATE": {
"title": "EXCHG_RATE",
"type": "string",
"description": "",
"maxLength": 1
},
"PRICE_DATE": {
"title": "PRICE_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"SERV_DATE": {
"title": "SERV_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"DUNN_KEY": {
"title": "DUNN_KEY",
"type": "string",
"description": "",
"maxLength": 1
},
"DUNN_BLOCK": {
"title": "DUNN_BLOCK",
"type": "string",
"description": "",
"maxLength": 1
},
"PROMOTION": {
"title": "PROMOTION",
"type": "string",
"description": "",
"maxLength": 1
},
"PMTGAR_PRO": {
"title": "PMTGAR_PRO",
"type": "string",
"description": "",
"maxLength": 1
},
"DOC_NUM_FI": {
"title": "DOC_NUM_FI",
"type": "string",
"description": "",
"maxLength": 1
},
"DEPARTM_NO": {
"title": "DEPARTM_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"REC_POINT": {
"title": "REC_POINT",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP1": {
"title": "CSTCNDGRP1",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP2": {
"title": "CSTCNDGRP2",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP3": {
"title": "CSTCNDGRP3",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP4": {
"title": "CSTCNDGRP4",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTCNDGRP5": {
"title": "CSTCNDGRP5",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"SALES_UNIT": {
"title": "SALES_UNIT",
"type": "string",
"description": "",
"maxLength": 1
},
"TRG_QTY_NO": {
"title": "TRG_QTY_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"TRGQTY_DEN": {
"title": "TRGQTY_DEN",
"type": "string",
"description": "",
"maxLength": 1
},
"RNDDLV_QTY": {
"title": "RNDDLV_QTY",
"type": "string",
"description": "",
"maxLength": 1
},
"MAXDEVAMNT": {
"title": "MAXDEVAMNT",
"type": "string",
"description": "",
"maxLength": 1
},
"MAXDEVPER": {
"title": "MAXDEVPER",
"type": "string",
"description": "",
"maxLength": 1
},
"MAXDEV_DAY": {
"title": "MAXDEV_DAY",
"type": "string",
"description": "",
"maxLength": 1
},
"USAGE_IND": {
"title": "USAGE_IND",
"type": "string",
"description": "",
"maxLength": 1
},
"FIXED_QUAN": {
"title": "FIXED_QUAN",
"type": "string",
"description": "",
"maxLength": 1
},
"UNLMT_DLV": {
"title": "UNLMT_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"OVERDLVTOL": {
"title": "OVERDLVTOL",
"type": "string",
"description": "",
"maxLength": 1
},
"UNDDLV_TOL": {
"title": "UNDDLV_TOL",
"type": "string",
"description": "",
"maxLength": 1
},
"DIVISION": {
"title": "DIVISION",
"type": "string",
"description": "",
"maxLength": 1
},
"SALQTYNUM": {
"title": "SALQTYNUM",
"type": "string",
"description": "",
"maxLength": 1
},
"SALQTYDEN": {
"title": "SALQTYDEN",
"type": "string",
"description": "",
"maxLength": 1
},
"GROSS_WGHT": {
"title": "GROSS_WGHT",
"type": "string",
"description": "",
"maxLength": 1
},
"NET_WEIGHT": {
"title": "NET_WEIGHT",
"type": "string",
"description": "",
"maxLength": 1
},
"UNTOF_WGHT": {
"title": "UNTOF_WGHT",
"type": "string",
"description": "",
"maxLength": 1
},
"VOLUME": {
"title": "VOLUME",
"type": "string",
"description": "",
"maxLength": 1
},
"VOLUNIT": {
"title": "VOLUNIT",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_PRIO": {
"title": "DLV_PRIO",
"type": "string",
"description": "",
"maxLength": 1
},
"SHIP_POINT": {
"title": "SHIP_POINT",
"type": "string",
"description": "",
"maxLength": 1
},
"ROUTE": {
"title": "ROUTE",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS1": {
"title": "TAX_CLASS1",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS2": {
"title": "TAX_CLASS2",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS3": {
"title": "TAX_CLASS3",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS4": {
"title": "TAX_CLASS4",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS5": {
"title": "TAX_CLASS5",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS6": {
"title": "TAX_CLASS6",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS7": {
"title": "TAX_CLASS7",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS8": {
"title": "TAX_CLASS8",
"type": "string",
"description": "",
"maxLength": 1
},
"TAX_CLASS9": {
"title": "TAX_CLASS9",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_PR_GRP": {
"title": "MAT_PR_GRP",
"type": "string",
"description": "",
"maxLength": 1
},
"VAL_TYPE": {
"title": "VAL_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"FIXDAT_QTY": {
"title": "FIXDAT_QTY",
"type": "string",
"description": "",
"maxLength": 1
},
"BOMEXPL_NO": {
"title": "BOMEXPL_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"RESANALKEY": {
"title": "RESANALKEY",
"type": "string",
"description": "",
"maxLength": 1
},
"REQMTS_TYP": {
"title": "REQMTS_TYP",
"type": "string",
"description": "",
"maxLength": 1
},
"NO_GR_POST": {
"title": "NO_GR_POST",
"type": "string",
"description": "",
"maxLength": 1
},
"BUS_TRANST": {
"title": "BUS_TRANST",
"type": "string",
"description": "",
"maxLength": 1
},
"OVERHD_KEY": {
"title": "OVERHD_KEY",
"type": "string",
"description": "",
"maxLength": 1
},
"CSTG_SHEET": {
"title": "CSTG_SHEET",
"type": "string",
"description": "",
"maxLength": 1
},
"MATFRGTGRP": {
"title": "MATFRGTGRP",
"type": "string",
"description": "",
"maxLength": 1
},
"PLDLVSHDIN": {
"title": "PLDLVSHDIN",
"type": "string",
"description": "",
"maxLength": 1
},
"SEQ_NO": {
"title": "SEQ_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"BIL_FORM": {
"title": "BIL_FORM",
"type": "string",
"description": "",
"maxLength": 1
},
"DLI_PROFIL": {
"title": "DLI_PROFIL",
"type": "string",
"description": "",
"maxLength": 1
},
"REV_TYPE": {
"title": "REV_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"BEGDEM_PER": {
"title": "BEGDEM_PER",
"type": "string",
"description": "",
"maxLength": 1
},
"PR_REF_MAT": {
"title": "PR_REF_MAT",
"type": "string",
"description": "",
"maxLength": 1
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 1
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDER_PROB": {
"title": "ORDER_PROB",
"type": "string",
"description": "",
"maxLength": 1
},
"MAX_PL_DLV": {
"title": "MAX_PL_DLV",
"type": "string",
"description": "",
"maxLength": 1
},
"CFOP_CODE": {
"title": "CFOP_CODE",
"type": "string",
"description": "",
"maxLength": 1
},
"TAXLAWICMS": {
"title": "TAXLAWICMS",
"type": "string",
"description": "",
"maxLength": 1
},
"TAXLAWIPI": {
"title": "TAXLAWIPI",
"type": "string",
"description": "",
"maxLength": 1
},
"SD_TAXCODE": {
"title": "SD_TAXCODE",
"type": "string",
"description": "",
"maxLength": 1
},
"ASSORT_MOD": {
"title": "ASSORT_MOD",
"type": "string",
"description": "",
"maxLength": 1
},
"COMP_QUANT": {
"title": "COMP_QUANT",
"type": "string",
"description": "",
"maxLength": 1
},
"TARGET_VAL": {
"title": "TARGET_VAL",
"type": "string",
"description": "",
"maxLength": 1
},
"PROFIT_CTR": {
"title": "PROFIT_CTR",
"type": "string",
"description": "",
"maxLength": 1
},
"ORDERID": {
"title": "ORDERID",
"type": "string",
"description": "",
"maxLength": 1
},
"WBS_ELEM": {
"title": "WBS_ELEM",
"type": "string",
"description": "",
"maxLength": 1
},
"DEPREC_PER": {
"title": "DEPREC_PER",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC": {
"title": "REF_DOC",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC_IT": {
"title": "REF_DOC_IT",
"type": "string",
"description": "",
"maxLength": 1
},
"REF_DOC_CA": {
"title": "REF_DOC_CA",
"type": "string",
"description": "",
"maxLength": 1
},
"CUST_MAT35": {
"title": "CUST_MAT35",
"type": "string",
"description": "",
"maxLength": 1
},
"EXCH_RATE_FI_V": {
"title": "EXCH_RATE_FI_V",
"type": "string",
"description": "",
"maxLength": 1
},
"EXCHG_RATE_V": {
"title": "EXCHG_RATE_V",
"type": "string",
"description": "",
"maxLength": 1
},
"ITEMGUID_ATP": {
"title": "ITEMGUID_ATP",
"type": "string",
"description": "",
"maxLength": 1
},
"VAL_CONTR": {
"title": "VAL_CONTR",
"type": "string",
"description": "",
"maxLength": 1
},
"VAL_CON_I": {
"title": "VAL_CON_I",
"type": "string",
"description": "",
"maxLength": 1
},
"CONFIG_ID": {
"title": "CONFIG_ID",
"type": "string",
"description": "",
"maxLength": 1
},
"INST_ID": {
"title": "INST_ID",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_EXT": {
"title": "MAT_EXT",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_GUID": {
"title": "MAT_GUID",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_VERS": {
"title": "MAT_VERS",
"type": "string",
"description": "",
"maxLength": 1
},
"P_MAT_EXT": {
"title": "P_MAT_EXT",
"type": "string",
"description": "",
"maxLength": 1
},
"P_MAT_GUID": {
"title": "P_MAT_GUID",
"type": "string",
"description": "",
"maxLength": 1
},
"P_MAT_VERS": {
"title": "P_MAT_VERS",
"type": "string",
"description": "",
"maxLength": 1
},
"FUNC_AREA": {
"title": "FUNC_AREA",
"type": "string",
"description": "",
"maxLength": 1
},
"ALTERN_BOM": {
"title": "ALTERN_BOM",
"type": "string",
"description": "",
"maxLength": 1
},
"FKK_CONACCT": {
"title": "FKK_CONACCT",
"type": "string",
"description": "",
"maxLength": 1
},
"EAN_UPC": {
"title": "EAN_UPC",
"type": "string",
"description": "",
"maxLength": 1
},
"PRODCAT": {
"title": "PRODCAT",
"type": "string",
"description": "",
"maxLength": 1
},
"SHIP_TYPE": {
"title": "SHIP_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"S_PROC_IND": {
"title": "S_PROC_IND",
"type": "string",
"description": "",
"maxLength": 1
},
"BILL_REL": {
"title": "BILL_REL",
"type": "string",
"description": "",
"maxLength": 1
},
"VW_UEPOS": {
"title": "VW_UEPOS",
"type": "string",
"description": "",
"maxLength": 1
},
"CAMPAIGN": {
"title": "CAMPAIGN",
"type": "string",
"description": "",
"maxLength": 1
},
"DLVSCHDUSE": {
"title": "DLVSCHDUSE",
"type": "string",
"description": "",
"maxLength": 1
},
"SELECTION": {
"title": "SELECTION",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_ENTRD": {
"title": "MAT_ENTRD",
"type": "string",
"description": "",
"maxLength": 1
},
"LOG_SYSTEM_OWN": {
"title": "LOG_SYSTEM_OWN",
"type": "string",
"description": "",
"maxLength": 1
},
"ITM_TYPE_USAGE": {
"title": "ITM_TYPE_USAGE",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_ENTRD_EXTERNAL": {
"title": "MAT_ENTRD_EXTERNAL",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_ENTRD_GUID": {
"title": "MAT_ENTRD_GUID",
"type": "string",
"description": "",
"maxLength": 1
},
"MAT_ENTRD_VERSION": {
"title": "MAT_ENTRD_VERSION",
"type": "string",
"description": "",
"maxLength": 1
},
"LOC_TAXCAT": {
"title": "LOC_TAXCAT",
"type": "string",
"description": "",
"maxLength": 1
},
"LOC_ZEROVAT": {
"title": "LOC_ZEROVAT",
"type": "string",
"description": "",
"maxLength": 1
},
"LOC_ACTCODE": {
"title": "LOC_ACTCODE",
"type": "string",
"description": "",
"maxLength": 1
},
"LOC_DISTTYPE": {
"title": "LOC_DISTTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"LOC_TXRELCLAS": {
"title": "LOC_TXRELCLAS",
"type": "string",
"description": "",
"maxLength": 1
},
"CALC_MOTIVE": {
"title": "CALC_MOTIVE",
"type": "string",
"description": "",
"maxLength": 1
},
"FUND": {
"title": "FUND",
"type": "string",
"description": "",
"maxLength": 1
},
"FUNDS_CTR": {
"title": "FUNDS_CTR",
"type": "string",
"description": "",
"maxLength": 1
},
"CMMT_ITEM": {
"title": "CMMT_ITEM",
"type": "string",
"description": "",
"maxLength": 1
},
"GRANT_NBR": {
"title": "GRANT_NBR",
"type": "string",
"description": "",
"maxLength": 1
},
"BUDGET_PERIOD": {
"title": "BUDGET_PERIOD",
"type": "string",
"description": "",
"maxLength": 1
},
"TAXLAWISS": {
"title": "TAXLAWISS",
"type": "string",
"description": "",
"maxLength": 1
},
"TAXLAWCOFINS": {
"title": "TAXLAWCOFINS",
"type": "string",
"description": "",
"maxLength": 1
},
"TAXLAWPIS": {
"title": "TAXLAWPIS",
"type": "string",
"description": "",
"maxLength": 1
},
"TREASURY_ACC_SYMBOL": {
"title": "TREASURY_ACC_SYMBOL",
"type": "string",
"description": "",
"maxLength": 1
},
"BUSINESS_EVENT_TCODE": {
"title": "BUSINESS_EVENT_TCODE",
"type": "string",
"description": "",
"maxLength": 1
},
"MODIFICATION_ALLOWED": {
"title": "MODIFICATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"CANCELLATION_ALLOWED": {
"title": "CANCELLATION_ALLOWED",
"type": "string",
"description": "",
"maxLength": 1
},
"PAYMENT_METHODS": {
"title": "PAYMENT_METHODS",
"type": "string",
"description": "",
"maxLength": 1
},
"BUSINESS_PARTNER_NO": {
"title": "BUSINESS_PARTNER_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"REPORTING_FREQ": {
"title": "REPORTING_FREQ",
"type": "string",
"description": "",
"maxLength": 1
},
"CFOP_LONG": {
"title": "CFOP_LONG",
"type": "string",
"description": "",
"maxLength": 1
},
"SEPA_MANDATE_ID": {
"title": "SEPA_MANDATE_ID",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_SEGMENT": {
"title": "REQ_SEGMENT",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_SUBLEVL": {
"title": "TP_SUBLEVL",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_AGENCID": {
"title": "TP_AGENCID",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_ALTRAID": {
"title": "TP_ALTRAID",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_BEGPER": {
"title": "TP_BEGPER",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_ENDPER": {
"title": "TP_ENDPER",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_AVTYPE": {
"title": "TP_AVTYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_MAIN_ACCT": {
"title": "TP_MAIN_ACCT",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_SUB_ACCT": {
"title": "TP_SUB_ACCT",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_BETC": {
"title": "TP_BETC",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_KEYS": {
"title": "ORDER_KEYS",
"type": "array",
"description": "Output Table of Reference Keys",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDKEY",
"type": "object",
"properties": {
"REFOBJTYP": {
"title": "REFOBJTYP",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJECT": {
"title": "REFOBJECT",
"type": "string",
"description": "",
"maxLength": 32
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
},
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"SCHED_LIN": {
"title": "SCHED_LIN",
"type": "integer",
"description": ""
},
"COND_NO": {
"title": "COND_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"CONDITEMNO": {
"title": "CONDITEMNO",
"type": "integer",
"description": ""
},
"COND_ST_NO": {
"title": "COND_ST_NO",
"type": "integer",
"description": ""
},
"COND_COUNT": {
"title": "COND_COUNT",
"type": "integer",
"description": ""
},
"COND_TYPE": {
"title": "COND_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"STATUS": {
"title": "STATUS",
"type": "string",
"description": "",
"maxLength": 1
},
"TINDEX": {
"title": "TINDEX",
"type": "integer",
"description": ""
},
"ADDRESS": {
"title": "ADDRESS",
"type": "string",
"description": "",
"maxLength": 10
},
"ABRLI": {
"title": "ABRLI",
"type": "integer",
"description": ""
},
"ABART": {
"title": "ABART",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_PARTNERS": {
"title": "ORDER_PARTNERS",
"type": "array",
"description": "Document Partner",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIPARNR",
"type": "object",
"properties": {
"PARTN_ROLE": {
"title": "PARTN_ROLE",
"type": "string",
"description": "",
"maxLength": 2
},
"PARTN_NUMB": {
"title": "PARTN_NUMB",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"TITLE": {
"title": "TITLE",
"type": "string",
"description": "",
"maxLength": 15
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_2": {
"title": "NAME_2",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_3": {
"title": "NAME_3",
"type": "string",
"description": "",
"maxLength": 35
},
"NAME_4": {
"title": "NAME_4",
"type": "string",
"description": "",
"maxLength": 35
},
"STREET": {
"title": "STREET",
"type": "string",
"description": "",
"maxLength": 35
},
"COUNTRY": {
"title": "COUNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"COUNTR_ISO": {
"title": "COUNTR_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"POSTL_CODE": {
"title": "POSTL_CODE",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_PCD": {
"title": "POBX_PCD",
"type": "string",
"description": "",
"maxLength": 10
},
"POBX_CTY": {
"title": "POBX_CTY",
"type": "string",
"description": "",
"maxLength": 35
},
"CITY": {
"title": "CITY",
"type": "string",
"description": "",
"maxLength": 35
},
"DISTRICT": {
"title": "DISTRICT",
"type": "string",
"description": "",
"maxLength": 35
},
"REGION": {
"title": "REGION",
"type": "string",
"description": "",
"maxLength": 3
},
"PO_BOX": {
"title": "PO_BOX",
"type": "string",
"description": "",
"maxLength": 10
},
"TELEPHONE": {
"title": "TELEPHONE",
"type": "string",
"description": "",
"maxLength": 16
},
"TELEPHONE2": {
"title": "TELEPHONE2",
"type": "string",
"description": "",
"maxLength": 16
},
"TELEBOX": {
"title": "TELEBOX",
"type": "string",
"description": "",
"maxLength": 15
},
"FAX_NUMBER": {
"title": "FAX_NUMBER",
"type": "string",
"description": "",
"maxLength": 31
},
"TELETEX_NO": {
"title": "TELETEX_NO",
"type": "string",
"description": "",
"maxLength": 30
},
"TELEX_NO": {
"title": "TELEX_NO",
"type": "string",
"description": "",
"maxLength": 30
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"LANGU_ISO": {
"title": "LANGU_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"UNLOAD_PT": {
"title": "UNLOAD_PT",
"type": "string",
"description": "",
"maxLength": 25
},
"TRANSPZONE": {
"title": "TRANSPZONE",
"type": "string",
"description": "",
"maxLength": 10
},
"TAXJURCODE": {
"title": "TAXJURCODE",
"type": "string",
"description": "",
"maxLength": 15
},
"ADDRESS": {
"title": "ADDRESS",
"type": "string",
"description": "",
"maxLength": 10
},
"PRIV_ADDR": {
"title": "PRIV_ADDR",
"type": "string",
"description": "",
"maxLength": 10
},
"ADDR_TYPE": {
"title": "ADDR_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"ADDR_ORIG": {
"title": "ADDR_ORIG",
"type": "string",
"description": "",
"maxLength": 1
},
"ADDR_LINK": {
"title": "ADDR_LINK",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
},
"ORDER_SCHEDULES_IN": {
"title": "ORDER_SCHEDULES_IN",
"type": "array",
"description": "Schedule Line Data",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISCHDL",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"SCHED_LINE": {
"title": "SCHED_LINE",
"type": "integer",
"description": ""
},
"REQ_DATE": {
"title": "REQ_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_TIME": {
"title": "REQ_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "number",
"description": ""
},
"REQ_DLV_BL": {
"title": "REQ_DLV_BL",
"type": "string",
"description": "",
"maxLength": 2
},
"SCHED_TYPE": {
"title": "SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 2
},
"TP_DATE": {
"title": "TP_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"MS_DATE": {
"title": "MS_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"LOAD_DATE": {
"title": "LOAD_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"GI_DATE": {
"title": "GI_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"TP_TIME": {
"title": "TP_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"MS_TIME": {
"title": "MS_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"LOAD_TIME": {
"title": "LOAD_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"GI_TIME": {
"title": "GI_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"REFLOGSYS": {
"title": "REFLOGSYS",
"type": "string",
"description": "",
"maxLength": 10
},
"DLV_DATE": {
"title": "DLV_DATE",
"type": "string",
"description": "",
"maxLength": 8
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 6
},
"REL_TYPE": {
"title": "REL_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"PLAN_SCHED_TYPE": {
"title": "PLAN_SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_SCHEDULES_INX": {
"title": "ORDER_SCHEDULES_INX",
"type": "array",
"description": "Checkbox Schedule Line Data",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISCHDLX",
"type": "object",
"properties": {
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"SCHED_LINE": {
"title": "SCHED_LINE",
"type": "integer",
"description": ""
},
"UPDATEFLAG": {
"title": "UPDATEFLAG",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_DATE": {
"title": "REQ_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"DATE_TYPE": {
"title": "DATE_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_TIME": {
"title": "REQ_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_QTY": {
"title": "REQ_QTY",
"type": "string",
"description": "",
"maxLength": 1
},
"REQ_DLV_BL": {
"title": "REQ_DLV_BL",
"type": "string",
"description": "",
"maxLength": 1
},
"SCHED_TYPE": {
"title": "SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_DATE": {
"title": "TP_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"MS_DATE": {
"title": "MS_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"LOAD_DATE": {
"title": "LOAD_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"GI_DATE": {
"title": "GI_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"TP_TIME": {
"title": "TP_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"MS_TIME": {
"title": "MS_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"LOAD_TIME": {
"title": "LOAD_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"GI_TIME": {
"title": "GI_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"REFOBJTYPE": {
"title": "REFOBJTYPE",
"type": "string",
"description": "",
"maxLength": 10
},
"REFOBJKEY": {
"title": "REFOBJKEY",
"type": "string",
"description": "",
"maxLength": 70
},
"DLV_DATE": {
"title": "DLV_DATE",
"type": "string",
"description": "",
"maxLength": 1
},
"DLV_TIME": {
"title": "DLV_TIME",
"type": "string",
"description": "",
"maxLength": 1
},
"REL_TYPE": {
"title": "REL_TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"PLAN_SCHED_TYPE": {
"title": "PLAN_SCHED_TYPE",
"type": "string",
"description": "",
"maxLength": 1
}
},
"required": []
}
},
"ORDER_TEXT": {
"title": "ORDER_TEXT",
"type": "array",
"description": "Texts",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPISDTEXT",
"type": "object",
"properties": {
"DOC_NUMBER": {
"title": "DOC_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"ITM_NUMBER": {
"title": "ITM_NUMBER",
"type": "integer",
"description": ""
},
"TEXT_ID": {
"title": "TEXT_ID",
"type": "string",
"description": "",
"maxLength": 4
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"LANGU_ISO": {
"title": "LANGU_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"FORMAT_COL": {
"title": "FORMAT_COL",
"type": "string",
"description": "",
"maxLength": 2
},
"TEXT_LINE": {
"title": "TEXT_LINE",
"type": "string",
"description": "",
"maxLength": 132
},
"FUNCTION": {
"title": "FUNCTION",
"type": "string",
"description": "",
"maxLength": 3
}
},
"required": []
}
},
"PARTNERADDRESSES": {
"title": "PARTNERADDRESSES",
"type": "array",
"description": "BAPI Reference Structure for Addresses (Org./Company)",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIADDR1",
"type": "object",
"properties": {
"ADDR_NO": {
"title": "ADDR_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"FORMOFADDR": {
"title": "FORMOFADDR",
"type": "string",
"description": "",
"maxLength": 20
},
"NAME": {
"title": "NAME",
"type": "string",
"description": "",
"maxLength": 40
},
"NAME_2": {
"title": "NAME_2",
"type": "string",
"description": "",
"maxLength": 40
},
"NAME_3": {
"title": "NAME_3",
"type": "string",
"description": "",
"maxLength": 40
},
"NAME_4": {
"title": "NAME_4",
"type": "string",
"description": "",
"maxLength": 40
},
"C_O_NAME": {
"title": "C_O_NAME",
"type": "string",
"description": "",
"maxLength": 40
},
"CITY": {
"title": "CITY",
"type": "string",
"description": "",
"maxLength": 40
},
"DISTRICT": {
"title": "DISTRICT",
"type": "string",
"description": "",
"maxLength": 40
},
"CITY_NO": {
"title": "CITY_NO",
"type": "string",
"description": "",
"maxLength": 12
},
"POSTL_COD1": {
"title": "POSTL_COD1",
"type": "string",
"description": "",
"maxLength": 10
},
"POSTL_COD2": {
"title": "POSTL_COD2",
"type": "string",
"description": "",
"maxLength": 10
},
"POSTL_COD3": {
"title": "POSTL_COD3",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_BOX": {
"title": "PO_BOX",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_BOX_CIT": {
"title": "PO_BOX_CIT",
"type": "string",
"description": "",
"maxLength": 40
},
"DELIV_DIS": {
"title": "DELIV_DIS",
"type": "string",
"description": "",
"maxLength": 15
},
"STREET": {
"title": "STREET",
"type": "string",
"description": "",
"maxLength": 40
},
"STREET_NO": {
"title": "STREET_NO",
"type": "string",
"description": "",
"maxLength": 12
},
"STR_ABBR": {
"title": "STR_ABBR",
"type": "string",
"description": "",
"maxLength": 2
},
"HOUSE_NO": {
"title": "HOUSE_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"STR_SUPPL1": {
"title": "STR_SUPPL1",
"type": "string",
"description": "",
"maxLength": 40
},
"STR_SUPPL2": {
"title": "STR_SUPPL2",
"type": "string",
"description": "",
"maxLength": 40
},
"LOCATION": {
"title": "LOCATION",
"type": "string",
"description": "",
"maxLength": 40
},
"BUILDING": {
"title": "BUILDING",
"type": "string",
"description": "",
"maxLength": 10
},
"FLOOR": {
"title": "FLOOR",
"type": "string",
"description": "",
"maxLength": 10
},
"ROOM_NO": {
"title": "ROOM_NO",
"type": "string",
"description": "",
"maxLength": 10
},
"COUNTRY": {
"title": "COUNTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"LANGU": {
"title": "LANGU",
"type": "string",
"description": "",
"maxLength": 1
},
"REGION": {
"title": "REGION",
"type": "string",
"description": "",
"maxLength": 3
},
"SORT1": {
"title": "SORT1",
"type": "string",
"description": "",
"maxLength": 20
},
"SORT2": {
"title": "SORT2",
"type": "string",
"description": "",
"maxLength": 20
},
"TIME_ZONE": {
"title": "TIME_ZONE",
"type": "string",
"description": "",
"maxLength": 6
},
"TAXJURCODE": {
"title": "TAXJURCODE",
"type": "string",
"description": "",
"maxLength": 15
},
"ADR_NOTES": {
"title": "ADR_NOTES",
"type": "string",
"description": "",
"maxLength": 50
},
"COMM_TYPE": {
"title": "COMM_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"TEL1_NUMBR": {
"title": "TEL1_NUMBR",
"type": "string",
"description": "",
"maxLength": 30
},
"TEL1_EXT": {
"title": "TEL1_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"FAX_NUMBER": {
"title": "FAX_NUMBER",
"type": "string",
"description": "",
"maxLength": 30
},
"FAX_EXTENS": {
"title": "FAX_EXTENS",
"type": "string",
"description": "",
"maxLength": 10
},
"STREET_LNG": {
"title": "STREET_LNG",
"type": "string",
"description": "",
"maxLength": 60
},
"DISTRCT_NO": {
"title": "DISTRCT_NO",
"type": "string",
"description": "",
"maxLength": 8
},
"CHCKSTATUS": {
"title": "CHCKSTATUS",
"type": "string",
"description": "",
"maxLength": 1
},
"PBOXCIT_NO": {
"title": "PBOXCIT_NO",
"type": "string",
"description": "",
"maxLength": 12
},
"TRANSPZONE": {
"title": "TRANSPZONE",
"type": "string",
"description": "",
"maxLength": 10
},
"HOUSE_NO2": {
"title": "HOUSE_NO2",
"type": "string",
"description": "",
"maxLength": 10
},
"E_MAIL": {
"title": "E_MAIL",
"type": "string",
"description": "",
"maxLength": 241
},
"STR_SUPPL3": {
"title": "STR_SUPPL3",
"type": "string",
"description": "",
"maxLength": 40
},
"TITLE": {
"title": "TITLE",
"type": "string",
"description": "",
"maxLength": 30
},
"COUNTRYISO": {
"title": "COUNTRYISO",
"type": "string",
"description": "",
"maxLength": 2
},
"LANGU_ISO": {
"title": "LANGU_ISO",
"type": "string",
"description": "",
"maxLength": 2
},
"BUILD_LONG": {
"title": "BUILD_LONG",
"type": "string",
"description": "",
"maxLength": 20
},
"REGIOGROUP": {
"title": "REGIOGROUP",
"type": "string",
"description": "",
"maxLength": 8
},
"HOME_CITY": {
"title": "HOME_CITY",
"type": "string",
"description": "",
"maxLength": 40
},
"HOMECITYNO": {
"title": "HOMECITYNO",
"type": "string",
"description": "",
"maxLength": 12
},
"PCODE1_EXT": {
"title": "PCODE1_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"PCODE2_EXT": {
"title": "PCODE2_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"PCODE3_EXT": {
"title": "PCODE3_EXT",
"type": "string",
"description": "",
"maxLength": 10
},
"PO_W_O_NO": {
"title": "PO_W_O_NO",
"type": "string",
"description": "",
"maxLength": 1
},
"PO_BOX_REG": {
"title": "PO_BOX_REG",
"type": "string",
"description": "",
"maxLength": 3
},
"POBOX_CTRY": {
"title": "POBOX_CTRY",
"type": "string",
"description": "",
"maxLength": 3
},
"PO_CTRYISO": {
"title": "PO_CTRYISO",
"type": "string",
"description": "",
"maxLength": 2
},
"HOMEPAGE": {
"title": "HOMEPAGE",
"type": "string",
"description": "",
"maxLength": 132
},
"DONT_USE_S": {
"title": "DONT_USE_S",
"type": "string",
"description": "",
"maxLength": 4
},
"DONT_USE_P": {
"title": "DONT_USE_P",
"type": "string",
"description": "",
"maxLength": 4
},
"HOUSE_NO3": {
"title": "HOUSE_NO3",
"type": "string",
"description": "",
"maxLength": 10
},
"LANGU_CR": {
"title": "LANGU_CR",
"type": "string",
"description": "",
"maxLength": 1
},
"LANGUCRISO": {
"title": "LANGUCRISO",
"type": "string",
"description": "",
"maxLength": 2
},
"PO_BOX_LOBBY": {
"title": "PO_BOX_LOBBY",
"type": "string",
"description": "",
"maxLength": 40
},
"DELI_SERV_TYPE": {
"title": "DELI_SERV_TYPE",
"type": "string",
"description": "",
"maxLength": 4
},
"DELI_SERV_NUMBER": {
"title": "DELI_SERV_NUMBER",
"type": "string",
"description": "",
"maxLength": 10
},
"URI_TYPE": {
"title": "URI_TYPE",
"type": "string",
"description": "",
"maxLength": 3
},
"COUNTY_CODE": {
"title": "COUNTY_CODE",
"type": "string",
"description": "",
"maxLength": 8
},
"COUNTY": {
"title": "COUNTY",
"type": "string",
"description": "",
"maxLength": 40
},
"TOWNSHIP_CODE": {
"title": "TOWNSHIP_CODE",
"type": "string",
"description": "",
"maxLength": 8
},
"TOWNSHIP": {
"title": "TOWNSHIP",
"type": "string",
"description": "",
"maxLength": 40
}
},
"required": []
}
},
"RETURN": {
"title": "RETURN",
"type": "array",
"description": "Return Messages",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BAPIRET2",
"type": "object",
"properties": {
"TYPE": {
"title": "TYPE",
"type": "string",
"description": "",
"maxLength": 1
},
"ID": {
"title": "ID",
"type": "string",
"description": "",
"maxLength": 20
},
"NUMBER": {
"title": "NUMBER",
"type": "integer",
"description": ""
},
"MESSAGE": {
"title": "MESSAGE",
"type": "string",
"description": "",
"maxLength": 220
},
"LOG_NO": {
"title": "LOG_NO",
"type": "string",
"description": "",
"maxLength": 20
},
"LOG_MSG_NO": {
"title": "LOG_MSG_NO",
"type": "integer",
"description": ""
},
"MESSAGE_V1": {
"title": "MESSAGE_V1",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V2": {
"title": "MESSAGE_V2",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V3": {
"title": "MESSAGE_V3",
"type": "string",
"description": "",
"maxLength": 50
},
"MESSAGE_V4": {
"title": "MESSAGE_V4",
"type": "string",
"description": "",
"maxLength": 50
},
"PARAMETER": {
"title": "PARAMETER",
"type": "string",
"description": "",
"maxLength": 32
},
"ROW": {
"title": "ROW",
"type": "string",
"description": ""
},
"FIELD": {
"title": "FIELD",
"type": "string",
"description": "",
"maxLength": 30
},
"SYSTEM": {
"title": "SYSTEM",
"type": "string",
"description": "",
"maxLength": 10
}
},
"required": []
}
}
},
"required": [
"SALESDOCUMENT",
"ORDER_PARTNERS"
]
}
Example:
{
"SALESDOCUMENT": "0000073736",
"EXTENSIONEX": [],
"EXTENSIONIN": [],
"ORDER_CCARD": [],
"ORDER_CFGS_BLOB": [],
"ORDER_CFGS_INST": [],
"ORDER_CFGS_PART_OF": [],
"ORDER_CFGS_REF": [],
"ORDER_CFGS_REFINST": [],
"ORDER_CFGS_VALUE": [],
"ORDER_CFGS_VK": [],
"ORDER_CONDITIONS_IN": [],
"ORDER_CONDITIONS_INX": [],
"ORDER_ITEMS_IN": [
{
"ITM_NUMBER": 10,
"HG_LV_ITEM": 0,
"MATERIAL": "H18",
"ALT_TO_ITM": 0,
"DLV_GROUP": 0,
"TARGET_QTY": 1,
"EX_RATE_FI": 0,
"ADD_VAL_DY": 0,
"EXCHG_RATE": 0,
"SALES_UNIT": "EA",
"TRG_QTY_NO": 0,
"TRGQTY_DEN": 0,
"RNDDLV_QTY": 0,
"MAXDEVAMNT": 0,
"MAXDEVPER": 0,
"MAXDEV_DAY": 0,
"OVERDLVTOL": 0,
"UNDDLV_TOL": 0,
"SALQTYNUM": 0,
"SALQTYDEN": 0,
"GROSS_WGHT": 0,
"NET_WEIGHT": 0,
"VOLUME": 0,
"DLV_PRIO": 0,
"ORDER_PROB": 0,
"MAX_PL_DLV": 0,
"COMP_QUANT": 0,
"TARGET_VAL": 0,
"DEPREC_PER": 0,
"REF_DOC_IT": 0,
"EXCH_RATE_FI_V": 0,
"EXCHG_RATE_V": 0,
"VAL_CON_I": 0,
"TP_BEGPER": 0,
"TP_ENDPER": 0
}
],
"ORDER_ITEMS_INX": [
{
"ITM_NUMBER": 0,
"MATERIAL": "X",
"SALES_UNIT": "X"
}
],
"ORDER_KEYS": [
{
"REFOBJECT": "HEADER",
"DOC_NUMBER": "0000073736",
"ITM_NUMBER": 0,
"SCHED_LIN": 0,
"CONDITEMNO": 0,
"COND_ST_NO": 0,
"COND_COUNT": 0,
"TINDEX": 0,
"ABRLI": 0
},
{
"REFOBJECT": "ADDRESS",
"ITM_NUMBER": 0,
"SCHED_LIN": 0,
"CONDITEMNO": 0,
"COND_ST_NO": 0,
"COND_COUNT": 0,
"TINDEX": 1,
"ADDRESS": "0000023206",
"ABRLI": 0
},
{
"REFOBJECT": "ITEM",
"ITM_NUMBER": 10,
"SCHED_LIN": 0,
"CONDITEMNO": 0,
"COND_ST_NO": 0,
"COND_COUNT": 0,
"STATUS": "S",
"TINDEX": 1,
"ABRLI": 0
},
{
"REFOBJECT": "SCHEDULE",
"ITM_NUMBER": 10,
"SCHED_LIN": 0,
"CONDITEMNO": 0,
"COND_ST_NO": 0,
"COND_COUNT": 0,
"STATUS": "S",
"TINDEX": 1,
"ABRLI": 0
},
{
"REFOBJECT": "SCHEDULE",
"ITM_NUMBER": 10,
"SCHED_LIN": 1,
"CONDITEMNO": 0,
"COND_ST_NO": 0,
"COND_COUNT": 0,
"TINDEX": 0,
"ABRLI": 0
}
],
"ORDER_PARTNERS": [
{
"PARTN_ROLE": "AG",
"PARTN_NUMB": "0000100018",
"ITM_NUMBER": 0
}
],
"ORDER_SCHEDULES_IN": [
{
"ITM_NUMBER": 10,
"SCHED_LINE": 0,
"REQ_QTY": 1
}
],
"ORDER_SCHEDULES_INX": [
{
"ITM_NUMBER": 10,
"SCHED_LINE": 1,
"REQ_QTY": "X"
}
],
"ORDER_TEXT": [],
"PARTNERADDRESSES": [],
"RETURN": [
{
"TYPE": "S",
"ID": "V4",
"NUMBER": 233,
"MESSAGE": "SALES_HEADER_IN has been processed successfully",
"LOG_MSG_NO": 0,
"MESSAGE_V1": "VBAKKOM",
"MESSAGE_V2": "10.03.2016",
"MESSAGE_V3": "02:23:29",
"PARAMETER": "SALES_HEADER_IN",
"ROW": "0",
"SYSTEM": "ERPCLNT167"
},
{
"TYPE": "S",
"ID": "V4",
"NUMBER": 233,
"MESSAGE": "SALES_ITEM_IN has been processed successfully",
"LOG_MSG_NO": 0,
"MESSAGE_V1": "VBAPKOM",
"MESSAGE_V2": "000010",
"PARAMETER": "SALES_ITEM_IN",
"ROW": "1",
"SYSTEM": "ERPCLNT167"
},
{
"TYPE": "W",
"ID": "V1",
"NUMBER": 555,
"MESSAGE": "The sales document is not yet complete: Edit data",
"LOG_MSG_NO": 0,
"MESSAGE_V1": "VBAPKOM",
"MESSAGE_V2": "000010",
"PARAMETER": "VBUVKOM",
"ROW": "0",
"SYSTEM": "ERPCLNT167"
},
{
"TYPE": "S",
"ID": "V1",
"NUMBER": 311,
"MESSAGE": "Standard Order 73736 has been saved",
"LOG_MSG_NO": 0,
"MESSAGE_V1": "Standard Order",
"MESSAGE_V2": "73736",
"PARAMETER": "SALES_HEADER_IN",
"ROW": "0",
"SYSTEM": "ERPCLNT167"
}
]
}
HTTP status code 400
Request syntactically incorrect. Any details will be provided within the response payload.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 400,
"message": "There are validation problems, see details section for more information",
"moreInfo": "https://api.yaas.io/patterns/errortypes.html",
"type": "validation_violation",
"details": [
{
"field": "Accept-Language",
"message": "not a language",
"type": "invalid_header"
}
]
}
HTTP status code 401
Given request is unauthorized. Bad or expired token. Reauthenticate the user. Any details will be provided within the response payload.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 401,
"message": "Authorization: Unauthorized. Bearer TOKEN is invalid",
"type": "insufficient_credentials",
"moreInfo": "https://api.yaas.io/patterns/errortypes.html"
}
HTTP status code 403
Evaluated request scopes in access token are not sufficient and do not match required scopes.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 403,
"message": "Given request does not have required scopes in access token. It is not authorized to perform this operation.",
"type": "insufficient_permissions"
}
HTTP status code 408
Request timed out.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 408,
"type": "request_timeout",
"message": "The request timed out."
}
HTTP status code 500
An internal server error occurred.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 500,
"type": "internal_service_error",
"message": "An internal server error occurred."
}
/{tenant}/helpvalues
Help values for a single field.
/{tenant}/helpvalues
Get help values for a single field.
get /{tenant}/helpvalues
Get help values for a single field.
URI Parameters
- Tenant: required (string - minLength: 3 - maxLength: 16 - pattern: [a-z][a-z0-9]+)
Stands for the "project" that requests this resource. Must match the "project" that is associated with the access token in the Authorization header.
Example:
myexampleshop
Headers
- Accept-Language: (string - repeat: true)
The value of the locale identifier of the language in which the attribute should be returned. Provide several values separated by comma, in order to specify fallback languages.
Example:
pl
- hybris-languages: (string - repeat: true)
Comma separated list of language identifiers for which the localization for an attribute should be provided.
Example:
en,pl,it
- Authorization: required (string)
Used to send a valid OAuth2 access token.
Example:
Bearer access_token
Query Parameters
- FieldName: required (one of CCINS, VSBED, MSEHI, WERKS, ZTERM, ZLSCH, FAKSP, LIFSP, PSTYV, ABGRU, ETTYP, INCO1, LPRIO)
It supports search fields, including Payment Card Type(CCINS), Shipping Conditions(VSBED), Sales Unit(MSEHI), Plant(WERKS), Payment Terms(ZTERM), Payment Method(ZLSCH), Billing Block(FAKSP), Delivery Block(LIFSP), Item Category(PSTYV), Reject Reason(ABGRU), Schedule line category(ETTYP), Incoterms(INCO1), Delivery Priority(LPRIO).
Example:
ZTERM
HTTP status code 200
OK
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "OutputOfSingleHelpValues",
"type": "array",
"description": "F4 help value output array",
"items": {
"type": "object",
"properties": {
"language": {
"title": "language",
"type": "string",
"description": "language key"
},
"key": {
"title": "keyValue",
"type": "string",
"description": "key Value"
},
"value": {
"title": "description",
"type": "string",
"description": "description"
}
}
}
}
Example:
[
{
"language": "en",
"key": "NT00",
"value": "Payable upon receipt"
},
{
"language": "en",
"key": "NT30",
"value": "Net due in 30 days"
}
]
HTTP status code 400
Request syntactically incorrect. Any details will be provided within the response payload.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 400,
"type": "validation_violation",
"message": "The tenants passed in the request header hybris-tenant and in the resource path do not match.",
"details": [
{
"type": "tenant_mismatch",
"message": "The tenants passed in the request header hybris-tenant and in the resource path do not match."
}
]
}
HTTP status code 401
Given request is unauthorized. Bad or expired token. Reauthenticate the user. Any details will be provided within the response payload.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 401,
"message": "Authorization: Unauthorized. Bearer TOKEN is invalid",
"type": "insufficient_credentials",
"moreInfo": "https://api.yaas.io/patterns/errortypes.html"
}
HTTP status code 403
Evaluated request scopes in access token are not sufficient and do not match required scopes.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 403,
"message": "Given request does not have required scopes in access token. It is not authorized to perform this operation.",
"type": "insufficient_permissions"
}
HTTP status code 408
Request timed out.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 408,
"type": "request_timeout",
"message": "The request timed out."
}
HTTP status code 500
An internal server error occurred.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 500,
"type": "internal_service_error",
"message": "An internal server error occurred."
}
/{tenant}/multipleHelpValues
Help values for multiple fields.
/{tenant}/multipleHelpValues
Get help values for multiple fields.
get /{tenant}/multipleHelpValues
Get help values for multiple fields.
URI Parameters
- Tenant: required (string - minLength: 3 - maxLength: 16 - pattern: [a-z][a-z0-9]+)
Stands for the "project" that requests this resource. Must match the "project" that is associated with the access token in the Authorization header.
Example:
myexampleshop
Headers
- Accept-Language: (string - repeat: true)
The value of the locale identifier of the language in which the attribute should be returned. Provide several values separated by comma, in order to specify fallback languages.
Example:
pl
- hybris-languages: (string - repeat: true)
Comma separated list of language identifiers for which the localization for an attribute should be provided.
Example:
en,pl,it
- Authorization: required (string)
Used to send a valid OAuth2 access token.
Example:
Bearer access_token
Query Parameters
- FieldName: required (string - pattern: ^[A-Z0-9_,]*$)
It supports search fields, including Payment Card Type(CCINS), Shipping Conditions(VSBED), Sales Unit(MSEHI), Plant(WERKS), Payment Terms(ZTERM), Payment Method(ZLSCH), Billing Block(FAKSP), Delivery Block(LIFSP), Item Category(PSTYV), Reject Reason(ABGRU), Schedule line category(ETTYP), Incoterms(INCO1), Delivery Priority(LPRIO).
Example:
ZTERM,ZLSCH
HTTP status code 200
OK
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "OutputOfMultipleF4HelpValues",
"type": "array",
"description": "F4 help values output array",
"items": {
"title": "OutputOfSingleF4HelpValues",
"type": "object",
"properties": {
"fieldname": {
"title": "fieldname",
"type": "string",
"description": "name of the field"
},
"OutputOfHelpValue": {
"title": "OutputofKeyValues",
"type": "array",
"description": "F4 help value output array",
"items": {
"type": "object",
"properties": {
"language": {
"title": "language",
"type": "string",
"description": "language key"
},
"key": {
"title": "keyValue",
"type": "string",
"description": "key Value"
},
"value": {
"title": "description",
"type": "string",
"description": "description"
}
}
}
}
}
}
}
Example:
[
{
"OutputOfHelpValue": [
{
"key": "0001",
"language": "E",
"value": "Pay immediately w/o deduction"
},
{
"key": "0002",
"language": "E",
"value": "14 days 2%, 30 net"
},
{
"key": "0003",
"language": "E",
"value": "14 days 3%, 20/2%, 30 net"
}
],
"fieldname": "ZTERM"
},
{
"OutputOfHelpValue": [
{
"key": "F",
"language": "E",
"value": "Foreign bank transfer (DTAZV)"
},
{
"key": "I",
"language": "E",
"value": "ISO PAIN001: Credit Transfer"
},
{
"key": "C",
"language": "E",
"value": "Check"
},
{
"key": "D",
"language": "E",
"value": "Bank transfer (ACH CCD)"
}
],
"fieldname": "ZLSCH"
}
]
HTTP status code 400
Request syntactically incorrect. Any details will be provided within the response payload.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 400,
"type": "validation_violation",
"message": "The tenants passed in the request header hybris-tenant and in the resource path do not match.",
"details": [
{
"type": "tenant_mismatch",
"message": "The tenants passed in the request header hybris-tenant and in the resource path do not match."
}
]
}
HTTP status code 401
Given request is unauthorized. Bad or expired token. Reauthenticate the user. Any details will be provided within the response payload.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 401,
"message": "Authorization: Unauthorized. Bearer TOKEN is invalid",
"type": "insufficient_credentials",
"moreInfo": "https://api.yaas.io/patterns/errortypes.html"
}
HTTP status code 403
Evaluated request scopes in access token are not sufficient and do not match required scopes.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 403,
"message": "Given request does not have required scopes in access token. It is not authorized to perform this operation.",
"type": "insufficient_permissions"
}
HTTP status code 408
Request timed out.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 408,
"type": "request_timeout",
"message": "The request timed out."
}
HTTP status code 500
An internal server error occurred.
Body
Type: application/json
Schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "error",
"description": "Schema for API specified errors.",
"type": "object",
"properties": {
"status": {
"type": "integer",
"description": "original HTTP error code, should be consistent with the response HTTP code",
"minimum": 100,
"maximum": 599
},
"type": {
"type": "string",
"description": "classification of the error type, lower case with underscore eg validation_failure",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support"
},
"details": {
"type": "array",
"description": "list of problems causing this error",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "errorDetail",
"description": "schema for specific error cause",
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "a bean notation expression specifying the element in request data causing the error, eg product.variants[3].name, this can be empty if violation was not field specific"
},
"type": {
"type": "string",
"description": "classification of the error detail type, lower case with underscore eg missing_value, this value must be always interpreted in context of the general error type.",
"pattern": "[a-z]+[a-z_]*[a-z]+"
},
"message": {
"type": "string",
"description": "descriptive error detail message for debugging"
},
"moreInfo": {
"type": "string",
"format": "uri",
"description": "link to documentation to investigate further and finding support for error detail"
}
},
"required": [
"type"
]
}
}
},
"required": [
"status",
"type"
]
}
Example:
{
"status": 500,
"type": "internal_service_error",
"message": "An internal server error occurred."
}
- /{tenant}/erpsalesorder/customer/{customerId}/recentItems
- /{tenant}/erpsalesorder/customer/{customerId}/allItems
- /{tenant}/erpsalesorder/{salesorderId}
- /{tenant}/erpsalesorder/simulate
- /{tenant}/erpsalesorder/createsdorder1
- /{tenant}/erpsalesorder/createsdorder2
- /{tenant}/helpvalues
- /{tenant}/multipleHelpValues
Scopes
The table shows the scopes that the ERP SD Sales Order Proxy service supports.
SCOPE | DESCRIPTION |
---|---|
hybris.sdorderproxy_view | Read ERP SD sales orders or related help values |
hybris.sdorderproxy_manage | Create ERP SD sales orders |
For more information about scopes, authorization, and authentication procedures for YaaS services, see Scopes and Authorization.
Order Creation Details
Use these endpoints to create ERP SD sales orders in the SAP ERP system:
/{tenant}/erpsalesorder/createsdorder1
: Create an ERP SD sales order by running BAPI_SALESORDER_CREATEFROMDAT1./{tenant}/erpsalesorder/createsdorder2
: Create an ERP SD sales order by running BAPI_SALESORDER_CREATEFROMDAT2.
The endpoint /{tenant}/erpsalesorder/createsdorder2
allows these advantages:
- Upload of header and item texts
- Upload of
n
conditions - Upload of
n
schedule lines - Connection to the Central Address Management (CAM) address (see SAP Note 195768)
Enter the ERP Sales Order data in the request body. The BAPIs handle data persistence, storage, and processing logic in the ERP Sales and Distribution system.
Enter, at minimum, the data for the sales order header (the ORDER_HEADER_IN structure) and the partner data (the ORDER_PARTNERS table) as input parameters.
Enter the item data into the ORDER_ITEMS_IN table. To allocate the item numbers manually, fill in the relevant fields. Otherwise, the system enters the data based on the custom settings, leaving the relevant fields blank.
Mandatory entries:
TABLE | FIELD | DESCRIPTION |
---|---|---|
ORDER_HEADER_IN | DOC_TYPE | Sales document type |
SALES_ORG | Sales organization | |
DISTR_CHAN | Distribution channel | |
DIVISION | Division | |
ORDER_PARTNERS | PARTN_ROLE | Partner functions, SP (Sold-to Party) |
PARTN_NUMB | Customer number | |
ORDER_ITEMS_IN | MATERIAL | Material number |
REQ_QTY | Order quantity in sales unit |
Use the BAPICCARD structure to transfer any payment card information, including the card identification data and the transaction data, which is performed in an external system.
If you want to work with payment card information, you must refer to the The Payment Card Industry Data Security Standard (PCI-DSS) that was jointly developed by major credit card companies in order to create a set of common industry security requirements for the protection of cardholder data. Compliance with this standard is relevant for companies processing credit card data. For more information, see http://www.pcisecuritystandards.org.
Complying with the PCI-DSS lies completely within the customer's responsibility, and we cannot guarantee the customer's compliance with the PCI-DSS.
Any measures to comply with the PCI-DSS must constantly be monitored and checked. For example, do not take credit card information using channels that record interaction data, such as the chat transcript, if you have not set up measures to delete this information in a subsequent step.
The following SAP Notes can support you regarding the implementation of payment card security aspects:
Note Number | Description |
---|---|
766703 | FAQ: Credit card encryption in R/3 system |
633462 | Encrypting credit card data |
791178 | Credit card encryption in AR back end |
These SAP Notes are application-specific. For general information, see the Payment Card Security Guide on SAP Service Marketplace at service.sap.com/securityguide > SAP Business Suite Applications > Payment Card Security. For updated general payment card security information, see SAP Note 1609917.
Please note that the PCI-DSS covers more than the steps and considerations provided in this document. It is your responsibility to ensure compliance with the PCI-DSS.
If there is no sales area in the sales order header, the system creates a sales area from the sold-to party or ship-to party entered in the partner table. If the system cannot create a clear sales area, you receive a system message, and the sales order is not created.
For more information about BAPIs, see SAP Note 93091 and the documentation for the BAPIs in the SAP ERP system.
Simulate the Creation of an ERP SD Sales Order
To determine availability and pricing, you might need to simulate the ERP sales order creation. The service uses the BAPI BAPI_SALESORDER_SIMULATE to simulate the creation of an ERP SD sales order. This BAPI has the same interface definition as the BAPI_SALESORDER_CREATEFROMDAT1 function, but in this case, the ERP system does not update the sales order. The endpoint {tenant}/erpsalesorder/simulate
simulates the ERP SD order creation.
For more information, see the documentation for the BAPI in the SAP ERP system.
Create an ERP Sales Order
For the details about order creation, refer to the Order Creation Details.
Retrieve an ERP Sales Order
The service uses the BAPI BAPI_SALESORDER_GETLIST to retrieve ERP SD sales orders. Use these endpoints to retrieve ERP SD sales orders for a customer:
/{tenant}/erpsalesorder/customer/{customerId}/recentItems
: Retrieve recent ERP SD sales order items for a specified ERP customer/{tenant}/erpsalesorder/customer/{customerId}/allItems
: Retrieve brief information about all ERP SD sales orders for a specified ERP customer
To use these endpoints, enter a valid ERP customer number in the URI parameter, and a sales organization as a query parameter. You can also filter sales orders by entering certain criteria. For example, when retrieving all ERP SD sales orders for a customer, you can filter the orders by material number (the qMaterialId parameter) and/or creation date (the qCreationDate parameter).
For more information, see the documentation for the BAPI BAPI_SALESORDER_GETLIST in the SAP ERP system.
To review the details of a specific ERP SD sales order with a sales order identifier, you can use the endpoint /{tenant}/erpsalesorder/{salesorderId}
.
For more information, see the documentation for the BAPI BAPISDORDER_GETDETAILEDLIST in the SAP ERP system.
Update an ERP Sales Order
To update an ERP SD sales order, send a PUT request to the endpoint /{tenant}/erpsalesorder/{salesorderId}
.
Before using this endpoint, create a new BAPI that combines the functions of the BAPIs BAPI_SALESORDER_CHANGE and BAPI_TRANSACTION_COMMIT in the SAP ERP system. When a user updates a sales order, the system calls the new BAPI. For more information, see SAP Note 2339873.
You can change a header, an item, a schedule line, and configuration data. Your request must follow these requirements:
- Specify only the fields that you want to change.
- Enter an X in the checkboxes to specify the fields to change.
- Enter a U in the UPDATEFLAG field.
- Always specify key fields when changing the data, including in the checkboxes.
- The configuration is an exception here. To change the configuration, provide complete configuration information.
- Maintain the quantities and dates in the schedule line data.
- Use UPDATEFLAGS in your request to specify the type of an update you perform:
- U = change
- D = delete
- I = add
The minimum requirements for an entry are:
- Enter an order number in the SALESDOCUMENT structure
- Enter key fields for changes
- Specify the update indicator in the ORDER_HEADER_INX
For more information, see the documentation for the BAPI BAPI_SALESORDER_CHANGE in the SAP ERP system.
Example of the request body for updating a purchasing order number for a sales order:
{
"ORDER_HEADER_IN" : {
"PURCH_NO_C" : "testPO" },
"ORDER_HEADER_INX" : {
"UPDATEFLAG" : "U",
"PURCH_NO_C" : "X" },
"SALESDOCUMENT" : "0000075924",
"SIMULATION" : "X"
}
Retrieve Help Values
In ERP sales orders, some fields have a set of predefined values and corresponding descriptions. Using this service, you can retrieve the help values, including the values and their descriptions, for the fields from the connected SAP ERP system.
The service supports these fields:
- Payment Card Type (CCINS)
- Shipping Conditions (VSBED)
- Sales Unit (MSEHI)
- Plant (WERKS)
- Payment Terms (ZTERM)
- Payment Method (ZLSCH)
- Billing Block (FAKSP)
- Delivery Block (LIFSP)
- Item Category (PSTYV)
- Reject Reason (ABGRU)
- Schedule Line Category (ETTYP)
- Incoterms (INCO1)
- Delivery Priority (LPRIO)
You can use the endpoints below to operate with the help values:
/{tenant}/helpvalues
: Retrieve help values for a single field/{tenant}/multipleHelpValues
: Retrieve help values for multiple fields
Example of the help values for Payment Terms (ZTERM) field, returned by the endpoint /{tenant}/helpvalues
:
[
{
"language": "en",
"key":"NT00",
"value":"Payable upon receipt"},
{
"language": "en",
"key":"NT30",
"value":"Net due in 30 days"}
]
Retrieve ERP SD Sales Orders for a Customer
To retrieve the recent ERP SD Sales Orders for a specified customer, you need:
Request
- Method: GET
- Request URL:
https://api.beta.yaas.io/hybris/sdorderproxy/v1/{tenant}/erpsalesorder/customer/{customerId}/recentItems
- Headers
- Authorization: This includes a valid OAuth2 access token. To access this method, the access token must be issued for the requested tenant and have the scope hybris.sdorderproxy_view.
- URI Parameters
- {tenant}: The name of the current tenant
- {customerId}: The ERP ID of the current customer
- Query parameters:
- qSalesOrganization: The Sales Organization parameter is required.
- pageSize: The number of result entries allocated to one page. If there are more results than a single page can hold, additional pages become available.
- pageNumber: The page number to be retrieved. Page numbering starts with one.
Response
The successful response returns a 200
status code. The query parameters provide convenient tools to structure the search results if the number of results is large. An example JSON content looks similar to the following:
{
"numberOfClosedItems": 33,
"numberOfOpenItems": 50,
"recentClosedItems": [
{
"id": "0000000642",
"name": "0000000642",
"description": "Notebook X15",
"statusDescription": "Completed",
"modifiedAt": "2015-03-19 11:13:08"
},
{
"id": "0000000622",
"name": "0000000622",
"description": "Notebook X15",
"statusDescription": "Completed",
"modifiedAt": "2015-03-19 10:09:05"
},
{
"id": "0000000602",
"name": "0000000602",
"description": "Notebook X15",
"statusDescription": "Completed",
"modifiedAt": "2015-03-19 09:38:24"
}
],
"recentOpenItems": [
{
"id": "0000000779",
"name": "0000000779",
"description": "Notebook X15",
"statusDescription": "Not delivered",
"modifiedAt": "2015-09-02 09:24:38"
},
{
"id": "0000000774",
"name": "0000000774",
"description": "Notebook X15",
"statusDescription": "Not delivered",
"modifiedAt": "2015-09-02 09:04:58"
},
{
"id": "0000000760",
"name": "0000000760",
"description": "Notebook X15",
"statusDescription": "Not delivered",
"modifiedAt": "2015-09-01 10:43:58"
}
]
}
To retrieve a list of ERP SD sales orders for a specified customer, you need:
Request
- Method: GET
- Request URL:
https://api.beta.yaas.io/hybris/erpsdconfig/v1/{tenant}/erpsalesorder/customer/{customerId}/allItems
- Headers
- Authorization: This includes a valid OAuth2 access token. To access this method, the access token must be issued for the requested tenant and have the scope hybris.sdorderproxy_view.
- URI Parameters
- {tenant}: The name of the current tenant
- {customerId}: The ERP ID of the current customer
- Query parameters:
- qSalesOrganization: The sales organization parameter is required.
- qCreationDate: Sales order creation date
- qMaterialId: Material ID
- pageSize: The number of result entries allocated to one page. If there are more results than a single page can hold, additional pages become available.
- pageNumber: The page number to be retrieved. Page numbering starts with one.
Response
The successful response returns a 200
status code. The query parameters provide convenient tools to structure the search results if the number of results is large. An example JSON content looks similar to the following:
{
"numberOfClosedItems": 33,
"numberOfOpenItems": 50,
"recentClosedItems": [
{
"id": "0000000642",
"name": "0000000642",
"description": "Notebook X15",
"statusDescription": "Completed",
"modifiedAt": "2015-03-19 11:13:08"
},
{
"id": "0000000622",
"name": "0000000622",
"description": "Notebook X15",
"statusDescription": "Completed",
"modifiedAt": "2015-03-19 10:09:05"
},
{
"id": "0000000602",
"name": "0000000602",
"description": "Notebook X15",
"statusDescription": "Completed",
"modifiedAt": "2015-03-19 09:38:24"
}
],
"recentOpenItems": [
{
"id": "0000000779",
"name": "0000000779",
"description": "Notebook X15",
"statusDescription": "Not delivered",
"modifiedAt": "2015-09-02 09:24:38"
},
{
"id": "0000000774",
"name": "0000000774",
"description": "Notebook X15",
"statusDescription": "Not delivered",
"modifiedAt": "2015-09-02 09:04:58"
},
{
"id": "0000000760",
"name": "0000000760",
"description": "Notebook X15",
"statusDescription": "Not delivered",
"modifiedAt": "2015-09-01 10:43:58"
}
]
}
Simulate the Creation of an ERP SD Sales Order
You can simulate the creation of an ERP SD sales order to determine the availability and pricing.
To simulate the creation of an ERP SD sales order, you need:
Request
- Method: POST
- Request URL:
https://api.beta.yaas.io/hybris/sdorderproxy/v1/{tenant}/erpsalesorder/simulate
- Headers
- Authorization: This includes a valid OAuth2 access token. To access this method, the access token must be issued for the requested tenant and have the scope hybris.sdorderproxy_manage.
- URI Parameters
- {tenant}: The name of the current tenant
- Body: an ERP SD sales order with minimum information
{
"ORDER_HEADER_IN" : {
"DOC_TYPE" : "TA",
"SALES_ORG" : "1000",
"DISTR_CHAN" : "10",
"DIVISION" : "10"
},
"ORDER_ITEMS_IN" : [ {
"ITM_NUMBER" : 0,
"HG_LV_ITEM" : 0,
"MATERIAL" : "H15",
"DLV_GROUP" : 0,
"TARGET_QTY" : 1,
"REQ_QTY" : 1,
"REQ_TIME" : "02:14:00",
"COND_VALUE" : 0.0,
"COND_P_UNT" : 0
} ],
"ORDER_PARTNERS" : [ {
"PARTN_ROLE" : "AG",
"PARTN_NUMB" : "0000100012",
"ITM_NUMBER" : 0
}, {
"PARTN_ROLE" : "RE",
"PARTN_NUMB" : "0000100012",
"ITM_NUMBER" : 0
} ]
}
Response
The successful response returns a 200
status code. An example JSON content looks similar to the following:
{
"BILLING_PARTY" : {
"PAYER" : "0000100012",
"NAME" : "Booktree Inc.",
"STREET" : "15 Harbor Road",
"POSTL_CODE" : "92121",
"CITY" : "San Diego",
"LANGU" : "E",
"COUNTRY" : "US",
"CRED_LIMIT" : 0.0,
"ORDER_VALS" : 0.0,
"RCVBL_VALS" : 0.0,
"CRED_LIAB" : 0.0,
"VAL_LIMIT" : 0.0,
"ACCNT_ASGN" : "01",
"PMNTTRMS" : "0001",
"ADD_VAL_DY" : 0
},
"RETURN" : {
"LOG_MSG_NO" : 0
},
"ORDER_HEADERS_OUT" : [ {
"NET_VAL_HD" : 48.0,
"CURRENCY" : "USD"
} ],
"SHIP_TO_PARTY" : {
"SHIP_TO" : "0000100012",
"NAME" : "Booktree Inc.",
"STREET" : "15 Harbor Road",
"POSTL_CODE" : "92121",
"CITY" : "San Diego",
"LANGU" : "E",
"DEST_CNTRY" : "US",
"TRNSP_ZONE" : "0000000001",
"REGION" : "CA",
"TAXJURCODE" : "CA0000000",
"DLV_PLANT" : "1000",
"SHIP_COND" : "01",
"ACCNT_GRP" : "YB01"
},
"SOLD_TO_PARTY" : {
"SOLD_TO" : "0000100012",
"NAME" : "Booktree Inc.",
"STREET" : "15 Harbor Road",
"POSTL_CODE" : "92121",
"CITY" : "San Diego",
"LANGU" : "E",
"COUNTRY" : "US",
"STAT_GROUP" : "1",
"PRC_PROCED" : "1",
"CUST_GROUP" : "02",
"INCOTERMS1" : "EXW",
"INCOTERMS2" : "Manufacturing",
"MAX_PL_DLV" : 0.0,
"DLV_PRIO" : 2,
"CURRENCY" : "USD",
"SHIP_COND" : "01",
"ORDER_PROB" : 100
},
"EXTENSIONIN" : [ ],
"MESSAGETABLE" : [ ],
"ORDER_CCARD" : [ ],
"ORDER_CCARD_EX" : [ ],
"ORDER_CFGS_BLOB" : [ ],
"ORDER_CFGS_INST" : [ ],
"ORDER_CFGS_PART_OF" : [ ],
"ORDER_CFGS_REF" : [ ],
"ORDER_CFGS_VALUE" : [ ],
"ORDER_CONDITION_EX" : [ {
"ITM_NUMBER" : 10,
"COND_ST_NO" : 11,
"SD000COND_COUNT" : 1,
"SD000COND_TYPE" : "PR00",
"SD000COND_VALUE" : 485.0,
"CURRENCY" : "USD",
"COND_UNIT" : "EA",
"COND_P_UNT" : 1.0,
"CURR_ISO" : "USD",
"CD_UNT_ISO" : "EA",
"APPLICATIO" : "V",
"CONPRICDAT" : "2016-03-10",
"CALCTYPCON" : "C",
"CONBASEVAL" : 0.001,
"CONEXCHRAT" : 1.0,
"NUMCONVERT" : 1.0,
"DENOMINATO" : 1.0,
"CONDORIGIN" : "A",
"ACCESS_SEQ" : 40,
"CONDCOUNT" : 1,
"ROUNDOFFDI" : 0.0,
"CONDVALUE" : 0.49,
"CURRENCY_2" : "USD",
"CURR_ISO_2" : "USD",
"CONDCNTRL" : "A",
"CONDCLASS" : "B",
"FACTBASVAL" : 0.0,
"SCALBASVAL" : 0.0,
"COND_NO" : "0000007610",
"FACTCONBAS" : 0.0,
"CONDCOINHD" : 0
}, {
"ITM_NUMBER" : 10,
"COND_ST_NO" : 104,
"SD000COND_COUNT" : 1,
"SD000COND_TYPE" : "K007",
"SD000COND_VALUE" : -2.0,
"COND_P_UNT" : 0.0,
"APPLICATIO" : "V",
"CONPRICDAT" : "2016-03-10",
"CALCTYPCON" : "A",
"CONBASEVAL" : 0.49,
"CONEXCHRAT" : 0.0,
"NUMCONVERT" : 0.0,
"DENOMINATO" : 0.0,
"CONDORIGIN" : "A",
"ACCESS_SEQ" : 10,
"CONDCOUNT" : 1,
"ROUNDOFFDI" : 0.0,
"CONDVALUE" : -0.01,
"CURRENCY_2" : "USD",
"CURR_ISO_2" : "USD",
"CONDCNTRL" : "A",
"CONDCLASS" : "A",
"FACTBASVAL" : 0.0,
"SCALBASVAL" : 0.0,
"COND_NO" : "0000007620",
"FACTCONBAS" : 0.0,
"CONDCOINHD" : 0
}, {
"ITM_NUMBER" : 10,
"COND_ST_NO" : 911,
"SD000COND_COUNT" : 1,
"SD000COND_TYPE" : "AZWR",
"SD000COND_VALUE" : 0.0,
"CURRENCY" : "USD",
"COND_P_UNT" : 0.0,
"CURR_ISO" : "USD",
"APPLICATIO" : "V",
"CONPRICDAT" : "2016-03-10",
"CALCTYPCON" : "B",
"CONBASEVAL" : 0.048,
"CONEXCHRAT" : 1.0,
"NUMCONVERT" : 0.0,
"DENOMINATO" : 0.0,
"CONDTYPE" : "e",
"CONDORIGIN" : "A",
"ACCESS_SEQ" : 0,
"CONDCOUNT" : 0,
"ROUNDOFFDI" : 0.0,
"CONDVALUE" : 0.0,
"CURRENCY_2" : "USD",
"CURR_ISO_2" : "USD",
"CONDCNTRL" : "A",
"CONDCLASS" : "A",
"FACTBASVAL" : 0.0,
"SCALBASVAL" : 0.0,
"FACTCONBAS" : 0.0,
"CONDCOINHD" : 0
}, {
"ITM_NUMBER" : 10,
"COND_ST_NO" : 915,
"SD000COND_COUNT" : 1,
"SD000COND_TYPE" : "UTXJ",
"SD000COND_VALUE" : 0.0,
"COND_P_UNT" : 0.0,
"APPLICATIO" : "V",
"CONPRICDAT" : "2016-03-10",
"CALCTYPCON" : "A",
"CONBASEVAL" : 0.48,
"CONEXCHRAT" : 0.0,
"NUMCONVERT" : 0.0,
"DENOMINATO" : 0.0,
"CONDTYPE" : "1",
"STAT_CON" : "X",
"CONDORIGIN" : "A",
"ACCESS_SEQ" : 10,
"CONDCOUNT" : 1,
"ROUNDOFFDI" : 0.0,
"CONDVALUE" : 0.0,
"CURRENCY_2" : "USD",
"CURR_ISO_2" : "USD",
"CONDCNTRL" : "A",
"CONDCLASS" : "D",
"FACTBASVAL" : 0.0,
"SCALBASVAL" : 0.0,
"COND_NO" : "0000007291",
"TAX_CODE" : "O1",
"FACTCONBAS" : 0.0,
"CONDCOINHD" : 0
}, {
"ITM_NUMBER" : 10,
"COND_ST_NO" : 916,
"SD000COND_COUNT" : 1,
"SD000COND_TYPE" : "JR1",
"SD000COND_VALUE" : 6.0,
"COND_P_UNT" : 0.0,
"APPLICATIO" : "TX",
"CONPRICDAT" : "2016-03-10",
"CALCTYPCON" : "A",
"CONBASEVAL" : 0.48,
"CONEXCHRAT" : 0.0,
"NUMCONVERT" : 0.0,
"DENOMINATO" : 0.0,
"CONDTYPE" : "1",
"CONDORIGIN" : "A",
"ACCESS_SEQ" : 10,
"CONDCOUNT" : 1,
"ROUNDOFFDI" : 0.0,
"CONDVALUE" : 0.03,
"CURRENCY_2" : "USD",
"CURR_ISO_2" : "USD",
"CONDCNTRL" : "A",
"CONDCLASS" : "D",
"FACTBASVAL" : 0.0,
"SCALBASVAL" : 0.0,
"COND_NO" : "0000007613",
"TAX_CODE" : "O1",
"FACTCONBAS" : 0.0,
"CONDCOINHD" : 0
}, {
"ITM_NUMBER" : 10,
"COND_ST_NO" : 930,
"SD000COND_COUNT" : 1,
"SD000COND_TYPE" : "SKTO",
"SD000COND_VALUE" : 0.0,
"COND_P_UNT" : 0.0,
"APPLICATIO" : "V",
"CONPRICDAT" : "2016-03-10",
"CALCTYPCON" : "A",
"CONBASEVAL" : 0.51,
"CONEXCHRAT" : 0.0,
"NUMCONVERT" : 0.0,
"DENOMINATO" : 0.0,
"CONDTYPE" : "E",
"STAT_CON" : "X",
"CONDORIGIN" : "A",
"ACCESS_SEQ" : 0,
"CONDCOUNT" : 0,
"ROUNDOFFDI" : 0.0,
"CONDVALUE" : 0.0,
"CURRENCY_2" : "USD",
"CURR_ISO_2" : "USD",
"CONDCNTRL" : "A",
"CONDCLASS" : "A",
"FACTBASVAL" : 0.0,
"SCALBASVAL" : 0.0,
"FACTCONBAS" : 0.0,
"CONDCOINHD" : 0
}, {
"ITM_NUMBER" : 10,
"COND_ST_NO" : 940,
"SD000COND_COUNT" : 1,
"SD000COND_TYPE" : "VPRS",
"SD000COND_VALUE" : 250.0,
"CURRENCY" : "USD",
"COND_UNIT" : "EA",
"COND_P_UNT" : 1.0,
"CURR_ISO" : "USD",
"CD_UNT_ISO" : "EA",
"APPLICATIO" : "V",
"CONPRICDAT" : "2016-03-10",
"CALCTYPCON" : "C",
"CONBASEVAL" : 0.001,
"CONEXCHRAT" : 1.0,
"NUMCONVERT" : 1.0,
"DENOMINATO" : 1.0,
"CONDTYPE" : "G",
"STAT_CON" : "X",
"CONDORIGIN" : "A",
"ACCESS_SEQ" : 0,
"CONDCOUNT" : 0,
"ROUNDOFFDI" : 0.0,
"CONDVALUE" : 0.25,
"CURRENCY_2" : "USD",
"CURR_ISO_2" : "USD",
"CONDCNTRL" : "A",
"CONDCLASS" : "B",
"FACTBASVAL" : 0.0,
"SCALBASVAL" : 0.0,
"FACTCONBAS" : 0.0,
"CONDCOINHD" : 0
} ],
"ORDER_INCOMPLETE" : [ {
"ITM_NUMBER" : 0,
"SCHED_LINE" : 0,
"TABLE_NAME" : "VBKD",
"FIELD_NAME" : "BSTKD",
"FIELD_TEXT" : "PO number"
} ],
"ORDER_ITEMS_IN" : [ {
"ITM_NUMBER" : 0,
"HG_LV_ITEM" : 0,
"MATERIAL" : "H15",
"DLV_GROUP" : 0,
"TARGET_QTY" : 1,
"REQ_QTY" : 1,
"REQ_TIME" : "02:14:00",
"COND_VALUE" : 0.0,
"COND_P_UNT" : 0,
"COND_VAL1" : 0.0,
"VAL_CON_I" : 0,
"REF_DOC_IT" : 0,
"CD_VALUE2" : 0.0,
"CD_P_UNT2" : 0,
"CD_VALUE3" : 0.0,
"CD_P_UNT3" : 0,
"CD_VALUE4" : 0.0,
"CD_P_UNT4" : 0
} ],
"ORDER_ITEMS_OUT" : [ {
"ITM_NUMBER" : 10,
"MATERIAL" : "H15",
"MAT_ENTRD" : "H15",
"SHORT_TEXT" : "Notebook X15",
"NET_VALUE" : 48.0,
"CURRENCY" : "USD",
"SD000SUBTOTAL_1" : 49.0,
"SD000SUBTOTAL_2" : 48.0,
"SD000SUBTOTAL_3" : 48.0,
"SD000SUBTOTAL_4" : 0.0,
"SD000SUBTOTAL_5" : 0.0,
"SD000SUBTOTAL_6" : 0.0,
"SALES_UNIT" : "EA",
"QTY_REQ_DT" : 1,
"DLV_DATE" : "2016-03-10",
"REPL_TIME" : 0,
"NET_VALUE1" : 0.48,
"CURR_ISO" : "USD",
"S_UNIT_ISO" : "EA",
"REQ_QTY" : 0.001,
"PLANT" : "1000",
"TX_DOC_CUR" : 0.03,
"TARGET_QTY" : 0.0,
"TARGET_QU" : "EA",
"T_UNIT_ISO" : "EA",
"ITEM_CATEG" : "TAN",
"SHIP_POINT" : "1000",
"HG_LV_ITEM" : 0,
"PROD_HIER" : "00001B000100000003",
"MATL_GROUP" : "YBT01",
"SUBTOTAL1" : 0.49,
"SUBTOTAL2" : 0.48,
"SUBTOTAL3" : 0.48,
"SUBTOTAL4" : 0.0,
"SUBTOTAL5" : 0.0,
"SUBTOTAL6" : 0.0
} ],
"ORDER_PARTNERS" : [ {
"PARTN_ROLE" : "AG",
"PARTN_NUMB" : "0000100012",
"ITM_NUMBER" : 0
}, {
"PARTN_ROLE" : "RE",
"PARTN_NUMB" : "0000100012",
"ITM_NUMBER" : 0
} ],
"ORDER_SCHEDULE_EX" : [ {
"ITM_NUMBER" : 10,
"SCHED_LINE" : 1,
"SCHED_TYPE" : "CP",
"RELFORDEL" : "X",
"REQ_DATE" : "2016-03-10",
"REQ_TIME" : "02:14:00",
"REQ_QTY" : 0.001,
"CONFIR_QTY" : 0.001,
"SALES_UNIT" : "EA",
"REQ_QTY1" : 0.001,
"BASE_UOM" : "EA",
"REQ_TYPE" : "01",
"PLTYPE" : "1",
"BUSIITNR" : 0,
"SCHED_LIN1" : 0,
"MAINT_REQ" : 0,
"DATE_TYPE" : "1",
"TP_DATE" : "2016-03-09",
"MS_DATE" : "2016-03-09",
"LOAD_DATE" : "2016-03-09",
"GI_DATE" : "2016-03-09",
"CORR_QTY" : 0.001,
"GRP_DEFIN" : 0,
"FORCAST_NR" : 0,
"COMMIT_QTY" : 0.0,
"SIZE2" : 0.0,
"SIZE3" : 0.0,
"SALESQTYNR" : 1.0,
"SALESQTYDE" : 1.0,
"AVAIL_CON" : "X",
"MOVE_TYPE" : "601",
"PREQ_ITEM" : 0,
"GURANTEED" : 0.0,
"MS_TIME" : "22:00:00",
"TP_TIME" : "22:00:00",
"LOAD_TIME" : "22:00:00",
"GI_TIME" : "22:00:00"
} ],
"ORDER_SCHEDULE_IN" : [ ],
"PARTNERADDRESSES" : [ ]
}
Create an ERP SD Sales Order
You can create an ERP SD sales order using two different approaches. For more details about order creation, see Order Creation Details.
Create an ERP SD sales order using BAPI BAPI_SALESORDER_CREATEFROMDAT1
This is the first approach to the order creation. As a minimum, you must enter the data for the sales order header (the ORDER_HEADER_IN structure) and the partner data (the ORDER_PARTNERS table) as input parameters.
To create an ERP SD sales order using BAPI BAPI_SALESORDER_CREATEFROMDAT1, you need:
Request
- Method: POST
- Request URL:
https://api.beta.yaas.io/hybris/sdorderproxy/v1/{tenant}/erpsalesorder/createsdorder1
- Headers
- Authorization: This includes a valid OAuth2 access token. To access this method, the access token must be issued for the requested tenant and have the scope hybris.sdorderproxy_manage.
- URI Parameters
- {tenant}: The name of the current tenant
- Body
{ "ORDER_HEADER_IN" : { "DOC_TYPE" : "TA", "SALES_ORG" : "1000", "DISTR_CHAN" : "10", "DIVISION" : "10" }, "ORDER_ITEMS_IN" : [ { "ITM_NUMBER" : 0, "HG_LV_ITEM" : 0, "MATERIAL" : "H15", "DLV_GROUP" : 0, "TARGET_QTY" : 1, "REQ_QTY" : 1, "REQ_TIME" : "02:14:00", "COND_VALUE" : 0.0, "COND_P_UNT" : 0 } ], "ORDER_PARTNERS" : [ { "PARTN_ROLE" : "AG", "PARTN_NUMB" : "0000100012", "ITM_NUMBER" : 0 }, { "PARTN_ROLE" : "RE", "PARTN_NUMB" : "0000100012", "ITM_NUMBER" : 0 } ] }
Response
The successful response returns a 200
status code. An example JSON content looks similar to the following:
{
"SALESDOCUMENT" : "0000073736",
"EXTENSIONEX" : [ ],
"EXTENSIONIN" : [ ],
"ORDER_CCARD" : [ ],
"ORDER_CFGS_BLOB" : [ ],
"ORDER_CFGS_INST" : [ ],
"ORDER_CFGS_PART_OF" : [ ],
"ORDER_CFGS_REF" : [ ],
"ORDER_CFGS_REFINST" : [ ],
"ORDER_CFGS_VALUE" : [ ],
"ORDER_CFGS_VK" : [ ],
"ORDER_CONDITIONS_IN" : [ ],
"ORDER_CONDITIONS_INX" : [ ],
"ORDER_ITEMS_IN" : [ {
"ITM_NUMBER" : 10,
"HG_LV_ITEM" : 0,
"MATERIAL" : "H18",
"ALT_TO_ITM" : 0,
"DLV_GROUP" : 0,
"TARGET_QTY" : 1.0,
"EX_RATE_FI" : 0.0,
"ADD_VAL_DY" : 0,
"EXCHG_RATE" : 0.0,
"SALES_UNIT" : "EA",
"TRG_QTY_NO" : 0.0,
"TRGQTY_DEN" : 0.0,
"RNDDLV_QTY" : 0.0,
"MAXDEVAMNT" : 0.0,
"MAXDEVPER" : 0.0,
"MAXDEV_DAY" : 0.0,
"OVERDLVTOL" : 0.0,
"UNDDLV_TOL" : 0.0,
"SALQTYNUM" : 0.0,
"SALQTYDEN" : 0.0,
"GROSS_WGHT" : 0.0,
"NET_WEIGHT" : 0.0,
"VOLUME" : 0.0,
"DLV_PRIO" : 0,
"ORDER_PROB" : 0,
"MAX_PL_DLV" : 0.0,
"COMP_QUANT" : 0.0,
"TARGET_VAL" : 0.0,
"DEPREC_PER" : 0.0,
"REF_DOC_IT" : 0,
"EXCH_RATE_FI_V" : 0.0,
"EXCHG_RATE_V" : 0.0,
"VAL_CON_I" : 0,
"TP_BEGPER" : 0,
"TP_ENDPER" : 0
} ],
"ORDER_ITEMS_INX" : [ {
"ITM_NUMBER" : 0,
"MATERIAL" : "X",
"SALES_UNIT" : "X"
} ],
"ORDER_KEYS" : [ {
"REFOBJECT" : "HEADER",
"DOC_NUMBER" : "0000073736",
"ITM_NUMBER" : 0,
"SCHED_LIN" : 0,
"CONDITEMNO" : 0,
"COND_ST_NO" : 0,
"COND_COUNT" : 0,
"TINDEX" : 0,
"ABRLI" : 0
}, {
"REFOBJECT" : "ADDRESS",
"ITM_NUMBER" : 0,
"SCHED_LIN" : 0,
"CONDITEMNO" : 0,
"COND_ST_NO" : 0,
"COND_COUNT" : 0,
"TINDEX" : 1,
"ADDRESS" : "0000023206",
"ABRLI" : 0
}, {
"REFOBJECT" : "ITEM",
"ITM_NUMBER" : 10,
"SCHED_LIN" : 0,
"CONDITEMNO" : 0,
"COND_ST_NO" : 0,
"COND_COUNT" : 0,
"STATUS" : "S",
"TINDEX" : 1,
"ABRLI" : 0
}, {
"REFOBJECT" : "SCHEDULE",
"ITM_NUMBER" : 10,
"SCHED_LIN" : 0,
"CONDITEMNO" : 0,
"COND_ST_NO" : 0,
"COND_COUNT" : 0,
"STATUS" : "S",
"TINDEX" : 1,
"ABRLI" : 0
}, {
"REFOBJECT" : "SCHEDULE",
"ITM_NUMBER" : 10,
"SCHED_LIN" : 1,
"CONDITEMNO" : 0,
"COND_ST_NO" : 0,
"COND_COUNT" : 0,
"TINDEX" : 0,
"ABRLI" : 0
} ],
"ORDER_PARTNERS" : [ {
"PARTN_ROLE" : "AG",
"PARTN_NUMB" : "0000100018",
"ITM_NUMBER" : 0
} ],
"ORDER_SCHEDULES_IN" : [ {
"ITM_NUMBER" : 10,
"SCHED_LINE" : 0,
"REQ_QTY" : 1.0
} ],
"ORDER_SCHEDULES_INX" : [ {
"ITM_NUMBER" : 10,
"SCHED_LINE" : 1,
"REQ_QTY" : "X"
} ],
"ORDER_TEXT" : [ ],
"PARTNERADDRESSES" : [ ],
"RETURN" : [ {
"TYPE" : "S",
"ID" : "V4",
"NUMBER" : 233,
"MESSAGE" : "SALES_HEADER_IN has been processed successfully",
"LOG_MSG_NO" : 0,
"MESSAGE_V1" : "VBAKKOM",
"MESSAGE_V2" : "10.03.2016",
"MESSAGE_V3" : "02:23:29",
"PARAMETER" : "SALES_HEADER_IN",
"ROW" : "0",
"SYSTEM" : "ERPCLNT167"
}, {
"TYPE" : "S",
"ID" : "V4",
"NUMBER" : 233,
"MESSAGE" : "SALES_ITEM_IN has been processed successfully",
"LOG_MSG_NO" : 0,
"MESSAGE_V1" : "VBAPKOM",
"MESSAGE_V2" : "000010",
"PARAMETER" : "SALES_ITEM_IN",
"ROW" : "1",
"SYSTEM" : "ERPCLNT167"
}, {
"TYPE" : "W",
"ID" : "V1",
"NUMBER" : 555,
"MESSAGE" : "The sales document is not yet complete: Edit data",
"LOG_MSG_NO" : 0,
"MESSAGE_V1" : "VBAPKOM",
"MESSAGE_V2" : "000010",
"PARAMETER" : "VBUVKOM",
"ROW" : "0",
"SYSTEM" : "ERPCLNT167"
}, {
"TYPE" : "S",
"ID" : "V1",
"NUMBER" : 311,
"MESSAGE" : "Standard Order 73736 has been saved",
"LOG_MSG_NO" : 0,
"MESSAGE_V1" : "Standard Order",
"MESSAGE_V2" : "73736",
"PARAMETER" : "SALES_HEADER_IN",
"ROW" : "0",
"SYSTEM" : "ERPCLNT167"
} ]
}
Create an ERP SD sales order using BAPI BAPI_SALESORDER_CREATEFROMDAT2
This is the second approach to the order creation. For the advantages of this approach, see Order Creation Details.
To create an ERP SD sales order using BAPI BAPI_SALESORDER_CREATEFROMDAT2, you need:
Request
- Method: POST
- Request URL:
https://api.beta.yaas.io/hybris/sdorderproxy/v1/{tenant}/erpsalesorder/createsdorder1
- Headers
- Authorization: This includes a valid OAuth2 access token. To access this method, the access token must be issued for the requested tenant and have the scope hybris.sdorderproxy_manage.
- URI Parameters
- {tenant}: The name of the current tenant
- Body:
{ "INT_NUMBER_ASSIGNMENT" : "X", "ORDER_HEADER_IN" : { "DOC_TYPE" : "TA", "SALES_ORG" : "1000", "DISTR_CHAN" : "10", "DIVISION" : "10" }, "ORDER_HEADER_INX" : { "UPDATEFLAG" : "I", "DOC_TYPE" : "X", "SALES_ORG" : "X", "DISTR_CHAN" : "X", "DIVISION" : "X" }, "ORDER_ITEMS_IN" : [ { "ITM_NUMBER" : 10, "HG_LV_ITEM" : 0, "MATERIAL" : "H18", "TARGET_QTY" : 1.0, "SALES_UNIT" : "EA" } ], "ORDER_ITEMS_INX" : [ { "MATERIAL" : "X", "SALES_UNIT" : "X" } ], "ORDER_PARTNERS" : [ { "PARTN_ROLE" : "AG", "PARTN_NUMB" : "0000100018" } ], "ORDER_SCHEDULES_IN" : [ { "ITM_NUMBER" : 10, "REQ_QTY" : 1.0 } ], "ORDER_SCHEDULES_INX" : [ { "ITM_NUMBER" : 10, "SCHED_LINE" : 1, "REQ_QTY" : "X" } ] }
Response
The successful response returns a 200
status code. An example JSON content looks similar to the following:
{
"SALESDOCUMENT" : "0000073736",
"EXTENSIONEX" : [ ],
"EXTENSIONIN" : [ ],
"ORDER_CCARD" : [ ],
"ORDER_CFGS_BLOB" : [ ],
"ORDER_CFGS_INST" : [ ],
"ORDER_CFGS_PART_OF" : [ ],
"ORDER_CFGS_REF" : [ ],
"ORDER_CFGS_REFINST" : [ ],
"ORDER_CFGS_VALUE" : [ ],
"ORDER_CFGS_VK" : [ ],
"ORDER_CONDITIONS_IN" : [ ],
"ORDER_CONDITIONS_INX" : [ ],
"ORDER_ITEMS_IN" : [ {
"ITM_NUMBER" : 10,
"HG_LV_ITEM" : 0,
"MATERIAL" : "H18",
"ALT_TO_ITM" : 0,
"DLV_GROUP" : 0,
"TARGET_QTY" : 1.0,
"EX_RATE_FI" : 0.0,
"ADD_VAL_DY" : 0,
"EXCHG_RATE" : 0.0,
"SALES_UNIT" : "EA",
"TRG_QTY_NO" : 0.0,
"TRGQTY_DEN" : 0.0,
"RNDDLV_QTY" : 0.0,
"MAXDEVAMNT" : 0.0,
"MAXDEVPER" : 0.0,
"MAXDEV_DAY" : 0.0,
"OVERDLVTOL" : 0.0,
"UNDDLV_TOL" : 0.0,
"SALQTYNUM" : 0.0,
"SALQTYDEN" : 0.0,
"GROSS_WGHT" : 0.0,
"NET_WEIGHT" : 0.0,
"VOLUME" : 0.0,
"DLV_PRIO" : 0,
"ORDER_PROB" : 0,
"MAX_PL_DLV" : 0.0,
"COMP_QUANT" : 0.0,
"TARGET_VAL" : 0.0,
"DEPREC_PER" : 0.0,
"REF_DOC_IT" : 0,
"EXCH_RATE_FI_V" : 0.0,
"EXCHG_RATE_V" : 0.0,
"VAL_CON_I" : 0,
"TP_BEGPER" : 0,
"TP_ENDPER" : 0
} ],
"ORDER_ITEMS_INX" : [ {
"ITM_NUMBER" : 0,
"MATERIAL" : "X",
"SALES_UNIT" : "X"
} ],
"ORDER_KEYS" : [ {
"REFOBJECT" : "HEADER",
"DOC_NUMBER" : "0000073736",
"ITM_NUMBER" : 0,
"SCHED_LIN" : 0,
"CONDITEMNO" : 0,
"COND_ST_NO" : 0,
"COND_COUNT" : 0,
"TINDEX" : 0,
"ABRLI" : 0
}, {
"REFOBJECT" : "ADDRESS",
"ITM_NUMBER" : 0,
"SCHED_LIN" : 0,
"CONDITEMNO" : 0,
"COND_ST_NO" : 0,
"COND_COUNT" : 0,
"TINDEX" : 1,
"ADDRESS" : "0000023206",
"ABRLI" : 0
}, {
"REFOBJECT" : "ITEM",
"ITM_NUMBER" : 10,
"SCHED_LIN" : 0,
"CONDITEMNO" : 0,
"COND_ST_NO" : 0,
"COND_COUNT" : 0,
"STATUS" : "S",
"TINDEX" : 1,
"ABRLI" : 0
}, {
"REFOBJECT" : "SCHEDULE",
"ITM_NUMBER" : 10,
"SCHED_LIN" : 0,
"CONDITEMNO" : 0,
"COND_ST_NO" : 0,
"COND_COUNT" : 0,
"STATUS" : "S",
"TINDEX" : 1,
"ABRLI" : 0
}, {
"REFOBJECT" : "SCHEDULE",
"ITM_NUMBER" : 10,
"SCHED_LIN" : 1,
"CONDITEMNO" : 0,
"COND_ST_NO" : 0,
"COND_COUNT" : 0,
"TINDEX" : 0,
"ABRLI" : 0
} ],
"ORDER_PARTNERS" : [ {
"PARTN_ROLE" : "AG",
"PARTN_NUMB" : "0000100018",
"ITM_NUMBER" : 0
} ],
"ORDER_SCHEDULES_IN" : [ {
"ITM_NUMBER" : 10,
"SCHED_LINE" : 0,
"REQ_QTY" : 1.0
} ],
"ORDER_SCHEDULES_INX" : [ {
"ITM_NUMBER" : 10,
"SCHED_LINE" : 1,
"REQ_QTY" : "X"
} ],
"ORDER_TEXT" : [ ],
"PARTNERADDRESSES" : [ ],
"RETURN" : [ {
"TYPE" : "S",
"ID" : "V4",
"NUMBER" : 233,
"MESSAGE" : "SALES_HEADER_IN has been processed successfully",
"LOG_MSG_NO" : 0,
"MESSAGE_V1" : "VBAKKOM",
"MESSAGE_V2" : "10.03.2016",
"MESSAGE_V3" : "02:23:29",
"PARAMETER" : "SALES_HEADER_IN",
"ROW" : "0",
"SYSTEM" : "ERPCLNT167"
}, {
"TYPE" : "S",
"ID" : "V4",
"NUMBER" : 233,
"MESSAGE" : "SALES_ITEM_IN has been processed successfully",
"LOG_MSG_NO" : 0,
"MESSAGE_V1" : "VBAPKOM",
"MESSAGE_V2" : "000010",
"PARAMETER" : "SALES_ITEM_IN",
"ROW" : "1",
"SYSTEM" : "ERPCLNT167"
}, {
"TYPE" : "W",
"ID" : "V1",
"NUMBER" : 555,
"MESSAGE" : "The sales document is not yet complete: Edit data",
"LOG_MSG_NO" : 0,
"MESSAGE_V1" : "VBAPKOM",
"MESSAGE_V2" : "000010",
"PARAMETER" : "VBUVKOM",
"ROW" : "0",
"SYSTEM" : "ERPCLNT167"
}, {
"TYPE" : "S",
"ID" : "V1",
"NUMBER" : 311,
"MESSAGE" : "Standard Order 73736 has been saved",
"LOG_MSG_NO" : 0,
"MESSAGE_V1" : "Standard Order",
"MESSAGE_V2" : "73736",
"PARAMETER" : "SALES_HEADER_IN",
"ROW" : "0",
"SYSTEM" : "ERPCLNT167"
} ]
}
Retrieve an ERP SD Sales Order
You can retrieve a specific ERP SD sales order to get the detailed information, such as customer's address, billing plan, business data, and so on.
Request
- Method: GET
- Request URL:
https://api.beta.yaas.io/hybris/sdorderproxy/v1/{tenant}/erpsalesorder/{salesorderId}
- Headers
- Authorization: This includes a valid OAuth2 access token. To access this method, the access token must be issued for the requested tenant and have the scope hybris.sdorderproxy_view.
- URI Parameters
- {tenant}: The name of the current tenant
- {salesorderId}: The ERP Sales Order ID
You can use the following query parameters to influence the way the system returns your results:
- qADDRESS: indicates whether to return a customer’s address
- qBILLPLAN: indicates whether to return a billing plan
- qBUSINESS: indicates whether to return business data
- qCONFIGURE: indicates whether to return sales order configuration
- qCONTRACT: indicates whether to return a contract
- qCREDCARD: indicates whether to return credit card information
- qFLOW: indicates whether to return a document flow
- qHEADER: indicates whether to return header level data
- qINCOMP_LOG: indicates whether to return the incompletion log
- qITEM: indicates whether to return item level data
- qPARTNER: indicates whether to return partner function information
- qSDCOND: indicates whether to return sales order pricing condition
- qSDCOND_ADD: indicates whether to return sales order pricing condition additional data
- qSDSCHEDULE: indicates whether to return a schedule line
- qSTATUS_H: indicates whether to return a header status
- qSTATUS_I: indicates whether to return an item status
- qTEXT: indicates whether to return text data
Response
The successful response returns a 200
status code. An example JSON content looks similar to the following:
{
"ORDER_ADDRESS_OUT": [
{
"ADDRESS": "0000023403",
"ADDR_TYPE": "1",
"CITY": "Saarbrücken",
"COUNTRY": "DE",
"COUNTRYISO": "DE",
"DOC_NUMBER": "0000000001",
"FORMOFADDR": "Company",
"HOUSE_NO": 1420,
"HOUSE_NO_LONG": "1420",
"LANGU": "D",
"LANGU_ISO": "DE",
"NAME": "Inlandskunde DE 100 (SEPA)",
"NAME_LIST": "Inlandskunde DE 100 (SEPA)",
"OPERATION": "005",
"POSTL_CODE": "66119",
"REGION": "SL",
"STREET": "Lohmeyerstraße",
"STREETNA": "Lohmeyerstraße",
"TELEPHONE": "09990 9821-0",
"TRANSPZONE": "0000000002"
}
],
"ORDER_BUSINESS_OUT": [
{
"ACCNT_ASGN": "01",
"ADD_VAL_DY": 0,
"BILL_DATE": "2016-09-26",
"CEPRPERCEN": 0,
"CUST_GROUP": "01",
"CUST_PO_NO": "POTESTEC",
"EXCHG_RATE": 1,
"EXCHG_RATE_V": 0,
"EXCHRATECO": 0,
"EXCHRATECO_V": 0,
"EXCHRATEFI": 0,
"EXCHRATELC": 0,
"EXCHRATELC_V": 0,
"EXCHRATEST": 1,
"EXCHRATEST_V": 0,
"EXCH_RATE_FI_V": 0,
"FISC_YEAR": 0,
"INCOTERMS1": "EXW",
"INCOTERMS2": "Walldorf",
"ITM_NUMBER": 0,
"OPERATION": "005",
"PAYMETHODE": "E",
"PMNTTRMS": "SEPA",
"POSTPERIOD": 0,
"PRICE_DATE": "2016-09-26",
"PURCH_NO_C": "potestEC",
"SD_DOC": "0000000001",
"SEPA_MANDATE_ID": "1010_10100100"
}
],
"ORDER_CONDITIONS_OUT": [
{
"ACCESS_SEQ": 40,
"ACCOUNTKEY": "ERL",
"APPLICATIO": "V",
"CALCTYPCON": "C",
"CONBASEVAL": 10,
"CONBASVAL": 0,
"CONDCLASS": "B",
"CONDCNTRL": "A",
"CONDCOINHD": 0,
"CONDCOUNT": 1,
"CONDFORMUL": 0,
"CONDISMAND": "X",
"CONDITIDX": 1,
"CONDIT_NO": "0000000001",
"CONDIVALUE": 0,
"CONDORIGIN": "A",
"CONDVALUE": 175.5,
"COND_D_UNT": "ST",
"COND_FORM": 0,
"COND_FORM1": 0,
"COND_NO": "0000006934",
"COND_P_UNT": 1,
"COND_ST_NO": 20,
"CONEXCHRAT": 1,
"CONEXCHRAT_V": 0,
"CONPRICDAT": "2016-09-26",
"CURRENCISO": "EUR",
"CURRENCY": "EUR",
"CURREN_ISO": "EUR",
"DENOMINATO": 1,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"FROMREFSTE": 0,
"FROREFSTEP": 0,
"INCREASCAL": 0,
"INCREMSCAL": 0,
"INDEXNO": "0",
"ITM_NUMBER": 10,
"LEVEL_BOM": 0,
"MAKMANENTR": "C",
"NUMCONVERT": 1,
"OPERATION": "005",
"PATH_BOM": 0,
"QTYCONVERS": "X",
"RATEOFCHA1": "X",
"ROUNDOFFDI": 0,
"SCALBASVAL": 0,
"SD000COND_COUNT": 1,
"SD000COND_TYPE": "PPR0",
"SD000COND_VALUE": 17.55,
"SD000INDEX_NO": "2",
"SD000T_UNIT_ISO": "PCE",
"SDCURRENCY": "EUR",
"SD_DOC": "0000000001"
},
{
"ACCESS_SEQ": 0,
"APPLICATIO": "V",
"CALCTYPCON": "C",
"CONBASEVAL": 10,
"CONBASVAL": 0,
"CONDCOINHD": 0,
"CONDCOUNT": 0,
"CONDFORMUL": 2,
"CONDITIDX": 0,
"CONDIT_NO": "0000000001",
"CONDIVALUE": 0,
"CONDSUBTOT": "1",
"CONDVALUE": 175.5,
"COND_D_UNT": "ST",
"COND_FORM": 0,
"COND_FORM1": 0,
"COND_P_UNT": 1,
"COND_ST_NO": 100,
"CONEXCHRAT": 1,
"CONEXCHRAT_V": 0,
"CONPRICDAT": "2016-09-26",
"CURRENCISO": "EUR",
"CURRENCY": "EUR",
"CURREN_ISO": "EUR",
"DENOMINATO": 1,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"FROMREFSTE": 0,
"FROREFSTEP": 0,
"INCREASCAL": 0,
"INCREMSCAL": 0,
"INDEXNO": "0",
"ITM_NUMBER": 10,
"LEVEL_BOM": 0,
"NUMCONVERT": 1,
"OPERATION": "005",
"PATH_BOM": 0,
"PRINT_ID": "a",
"ROUNDOFFDI": 0,
"SCALBASVAL": 0,
"SD000COND_COUNT": 1,
"SD000COND_VALUE": 17.55,
"SD000INDEX_NO": "4",
"SD000T_UNIT_ISO": "PCE",
"SDCURRENCY": "EUR",
"SD_DOC": "0000000001"
},
{
"ACCESS_SEQ": 0,
"APPLICATIO": "V",
"CALCTYPCON": "C",
"CONBASEVAL": 10,
"CONBASVAL": 0,
"CONDCOINHD": 0,
"CONDCOUNT": 0,
"CONDFORMUL": 0,
"CONDITIDX": 0,
"CONDIT_NO": "0000000001",
"CONDIVALUE": 0,
"CONDVALUE": 0,
"COND_D_UNT": "ST",
"COND_FORM": 0,
"COND_FORM1": 0,
"COND_P_UNT": 1,
"COND_ST_NO": 300,
"CONEXCHRAT": 1,
"CONEXCHRAT_V": 0,
"CONPRICDAT": "2016-09-26",
"CURRENCISO": "EUR",
"CURRENCY": "EUR",
"CURREN_ISO": "EUR",
"DENOMINATO": 1,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"FROMREFSTE": 299,
"FROREFSTEP": 101,
"INCREASCAL": 0,
"INCREMSCAL": 0,
"INDEXNO": "0",
"ITM_NUMBER": 10,
"LEVEL_BOM": 0,
"NUMCONVERT": 1,
"OPERATION": "005",
"PATH_BOM": 0,
"ROUNDOFFDI": 0,
"SCALBASVAL": 0,
"SD000COND_COUNT": 1,
"SD000COND_VALUE": 0,
"SD000INDEX_NO": "18",
"SD000T_UNIT_ISO": "PCE",
"SDCURRENCY": "EUR",
"SD_DOC": "0000000001"
},
{
"ACCESS_SEQ": 0,
"APPLICATIO": "V",
"CALCTYPCON": "C",
"CONBASEVAL": 10,
"CONBASVAL": 0,
"CONDCOINHD": 0,
"CONDCOUNT": 0,
"CONDFORMUL": 2,
"CONDITIDX": 0,
"CONDIT_NO": "0000000001",
"CONDIVALUE": 0,
"CONDSUBTOT": "2",
"CONDVALUE": 175.5,
"COND_D_UNT": "ST",
"COND_FORM": 0,
"COND_FORM1": 0,
"COND_P_UNT": 1,
"COND_ST_NO": 700,
"CONEXCHRAT": 1,
"CONEXCHRAT_V": 0,
"CONPRICDAT": "2016-09-26",
"CURRENCISO": "EUR",
"CURRENCY": "EUR",
"CURREN_ISO": "EUR",
"DENOMINATO": 1,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"FROMREFSTE": 0,
"FROREFSTEP": 0,
"INCREASCAL": 0,
"INCREMSCAL": 0,
"INDEXNO": "0",
"ITM_NUMBER": 10,
"LEVEL_BOM": 0,
"NUMCONVERT": 1,
"OPERATION": "005",
"PATH_BOM": 0,
"PRINT_ID": "a",
"ROUNDOFFDI": 0,
"SCALBASVAL": 0,
"SD000COND_COUNT": 1,
"SD000COND_VALUE": 17.55,
"SD000INDEX_NO": "19",
"SD000T_UNIT_ISO": "PCE",
"SDCURRENCY": "EUR",
"SD_DOC": "0000000001"
},
{
"ACCESS_SEQ": 0,
"APPLICATIO": "V",
"CALCTYPCON": "C",
"CONBASEVAL": 10,
"CONBASVAL": 0,
"CONDCOINHD": 0,
"CONDCOUNT": 0,
"CONDFORMUL": 2,
"CONDITIDX": 0,
"CONDIT_NO": "0000000001",
"CONDIVALUE": 0,
"CONDSUBTOT": "3",
"CONDVALUE": 175.5,
"COND_D_UNT": "ST",
"COND_FORM": 0,
"COND_FORM1": 0,
"COND_P_UNT": 1,
"COND_ST_NO": 800,
"CONEXCHRAT": 1,
"CONEXCHRAT_V": 0,
"CONPRICDAT": "2016-09-26",
"CURRENCISO": "EUR",
"CURRENCY": "EUR",
"CURREN_ISO": "EUR",
"DENOMINATO": 1,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"FROMREFSTE": 0,
"FROREFSTEP": 0,
"INCREASCAL": 0,
"INCREMSCAL": 0,
"INDEXNO": "0",
"ITM_NUMBER": 10,
"LEVEL_BOM": 0,
"NUMCONVERT": 1,
"OPERATION": "005",
"PATH_BOM": 0,
"ROUNDOFFDI": 0,
"SCALBASVAL": 0,
"SD000COND_COUNT": 1,
"SD000COND_VALUE": 17.55,
"SD000INDEX_NO": "21",
"SD000T_UNIT_ISO": "PCE",
"SDCURRENCY": "EUR",
"SD_DOC": "0000000001"
},
{
"ACCESS_SEQ": 10,
"ACCOUNTKEY": "MWS",
"APPLICATIO": "V",
"CALCTYPCON": "A",
"CONBASEVAL": 175.5,
"CONBASVAL": 0,
"CONDCLASS": "D",
"CONDCNTRL": "A",
"CONDCOINHD": 0,
"CONDCOUNT": 1,
"CONDFORMUL": 0,
"CONDITIDX": 1,
"CONDIT_NO": "0000000001",
"CONDIVALUE": 0,
"CONDORIGIN": "A",
"CONDTYPE": "D",
"CONDVALUE": 33.35,
"COND_FORM": 16,
"COND_FORM1": 0,
"COND_NO": "0000006911",
"COND_P_UNT": 0,
"COND_ST_NO": 850,
"CONEXCHRAT": 0,
"CONEXCHRAT_V": 0,
"CONPRICDAT": "2016-09-26",
"DENOMINATO": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"FROMREFSTE": 0,
"FROREFSTEP": 0,
"GROUPCOND": "X",
"INCREASCAL": 0,
"INCREMSCAL": 0,
"INDEXNO": "0",
"ITM_NUMBER": 10,
"LEVEL_BOM": 0,
"MAKMANENTR": "D",
"NUMCONVERT": 0,
"OPERATION": "005",
"PATH_BOM": 0,
"PRINT_ID": "A",
"ROUNDOFFDI": 0,
"SCALBASVAL": 0,
"SD000COND_COUNT": 1,
"SD000COND_TYPE": "TTX1",
"SD000COND_VALUE": 19,
"SD000INDEX_NO": "22",
"SD_DOC": "0000000001",
"TAX_CODE": "A1"
},
{
"ACCESS_SEQ": 0,
"APPLICATIO": "V",
"CALCTYPCON": "C",
"CONBASEVAL": 10,
"CONBASVAL": 0,
"CONDCOINHD": 0,
"CONDCOUNT": 0,
"CONDFORMUL": 4,
"CONDITIDX": 0,
"CONDIT_NO": "0000000001",
"CONDIVALUE": 0,
"CONDSUBTOT": "A",
"CONDVALUE": 208.85,
"COND_D_UNT": "ST",
"COND_FORM": 0,
"COND_FORM1": 0,
"COND_P_UNT": 1,
"COND_ST_NO": 900,
"CONEXCHRAT": 1,
"CONEXCHRAT_V": 0,
"CONPRICDAT": "2016-09-26",
"CURRENCISO": "EUR",
"CURRENCY": "EUR",
"CURREN_ISO": "EUR",
"DENOMINATO": 1,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"FROMREFSTE": 0,
"FROREFSTEP": 0,
"INCREASCAL": 0,
"INCREMSCAL": 0,
"INDEXNO": "0",
"ITM_NUMBER": 10,
"LEVEL_BOM": 0,
"NUMCONVERT": 1,
"OPERATION": "005",
"PATH_BOM": 0,
"ROUNDOFFDI": 0,
"SCALBASVAL": 0,
"SD000COND_COUNT": 1,
"SD000COND_VALUE": 20.89,
"SD000INDEX_NO": "24",
"SD000T_UNIT_ISO": "PCE",
"SDCURRENCY": "EUR",
"SD_DOC": "0000000001"
},
{
"ACCESS_SEQ": 0,
"APPLICATIO": "V",
"CALCTYPCON": "A",
"CONBASEVAL": 208.85,
"CONBASVAL": 0,
"CONDCLASS": "A",
"CONDCNTRL": "A",
"CONDCOINHD": 0,
"CONDCOUNT": 0,
"CONDFORMUL": 0,
"CONDITIDX": 0,
"CONDIT_NO": "0000000001",
"CONDIVALUE": 0,
"CONDORIGIN": "A",
"CONDTYPE": "E",
"CONDVALUE": 0,
"COND_FORM": 11,
"COND_FORM1": 0,
"COND_P_UNT": 0,
"COND_ST_NO": 910,
"CONEXCHRAT": 0,
"CONEXCHRAT_V": 0,
"CONPRICDAT": "2016-09-26",
"DENOMINATO": 0,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"FROMREFSTE": 0,
"FROREFSTEP": 0,
"INCREASCAL": 0,
"INCREMSCAL": 0,
"INDEXNO": "0",
"ITM_NUMBER": 10,
"LEVEL_BOM": 0,
"MAKMANENTR": "D",
"NUMCONVERT": 0,
"OPERATION": "005",
"PATH_BOM": 0,
"ROUNDOFFDI": 0,
"SCALBASVAL": 0,
"SD000COND_COUNT": 1,
"SD000COND_TYPE": "DCD1",
"SD000COND_VALUE": 0,
"SD000INDEX_NO": "25",
"SD_DOC": "0000000001",
"STAT_CON": "X"
},
{
"ACCESS_SEQ": 0,
"APPLICATIO": "V",
"CALCTYPCON": "C",
"CONBASEVAL": 10,
"CONBASVAL": 0,
"CONDCLASS": "B",
"CONDCNTRL": "A",
"CONDCOINHD": 0,
"CONDCOUNT": 0,
"CONDCURREN": "EUR",
"CONDFORMUL": 0,
"CONDITIDX": 0,
"CONDIT_NO": "0000000001",
"CONDIVALUE": 135,
"CONDORIGIN": "A",
"CONDSUBTOT": "B",
"CONDTYPE": "G",
"CONDVALUE": 135,
"COND_D_UNT": "ST",
"COND_FORM": 0,
"COND_FORM1": 0,
"COND_P_UNT": 1,
"COND_ST_NO": 930,
"CONEXCHRAT": 1,
"CONEXCHRAT_V": 0,
"CONPRICDAT": "2016-09-26",
"CORR_ISO": "EUR",
"CURRENCISO": "EUR",
"CURRENCY": "EUR",
"CURREN_ISO": "EUR",
"DENOMINATO": 1,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"FROMREFSTE": 0,
"FROREFSTEP": 0,
"INCREASCAL": 0,
"INCREMSCAL": 0,
"INDEXNO": "0",
"ITM_NUMBER": 10,
"LEVEL_BOM": 0,
"MAKMANENTR": "D",
"NUMCONVERT": 1,
"OPERATION": "005",
"PATH_BOM": 0,
"QTYCONVERS": "X",
"ROUNDOFFDI": 0,
"SCALBASVAL": 0,
"SD000COND_COUNT": 1,
"SD000COND_TYPE": "PCIP",
"SD000COND_VALUE": 13.5,
"SD000INDEX_NO": "26",
"SD000T_UNIT_ISO": "PCE",
"SDCURRENCY": "EUR",
"SD_DOC": "0000000001",
"STAT_CON": "X"
},
{
"ACCESS_SEQ": 0,
"APPLICATIO": "V",
"CALCTYPCON": "C",
"CONBASEVAL": 10,
"CONBASVAL": 0,
"CONDCOINHD": 0,
"CONDCOUNT": 0,
"CONDFORMUL": 11,
"CONDITIDX": 0,
"CONDIT_NO": "0000000001",
"CONDIVALUE": 0,
"CONDVALUE": 40.5,
"COND_D_UNT": "ST",
"COND_FORM": 0,
"COND_FORM1": 0,
"COND_P_UNT": 1,
"COND_ST_NO": 950,
"CONEXCHRAT": 1,
"CONEXCHRAT_V": 0,
"CONPRICDAT": "2016-09-26",
"CURRENCISO": "EUR",
"CURRENCY": "EUR",
"CURREN_ISO": "EUR",
"DENOMINATO": 1,
"FACTBASVAL": 0,
"FACTCONBAS": 0,
"FROMREFSTE": 0,
"FROREFSTEP": 0,
"INCREASCAL": 0,
"INCREMSCAL": 0,
"INDEXNO": "0",
"ITM_NUMBER": 10,
"LEVEL_BOM": 0,
"NUMCONVERT": 1,
"OPERATION": "005",
"PATH_BOM": 0,
"ROUNDOFFDI": 0,
"SCALBASVAL": 0,
"SD000COND_COUNT": 1,
"SD000COND_VALUE": 4.05,
"SD000INDEX_NO": "27",
"SD000T_UNIT_ISO": "PCE",
"SDCURRENCY": "EUR",
"SD_DOC": "0000000001"
}
],
"ORDER_COND_HEAD": [
{
"APPLICATIO": "V",
"COND_NO": "0000006911",
"COND_TYPE": "TTX1",
"COND_USAGE": "A",
"CREATED_BY": "BPINST",
"CREAT_DATE": "2016-02-09",
"ITM_NUMBER": 10,
"OPERATION": "005",
"SD_DOC": "0000000001",
"TABLE_NO": "002",
"VALID_FROM": "2016-02-09",
"VALID_TO": "9999-12-31"
},
{
"APPLICATIO": "V",
"COND_NO": "0000006934",
"COND_TYPE": "PPR0",
"COND_USAGE": "A",
"CREATED_BY": "BPINST",
"CREAT_DATE": "2016-02-09",
"ITM_NUMBER": 10,
"OPERATION": "005",
"SD_DOC": "0000000001",
"TABLE_NO": "304",
"VALID_FROM": "2016-02-09",
"VALID_TO": "9999-12-31"
}
],
"ORDER_COND_ITEM": [
{
"ACCRUALS": 0,
"ADD_VAL_DY": 0,
"APPLICATIO": "V",
"CALCTYPCON": "A",
"CONDCURR": "%",
"CONDITIDX": 1,
"COND_COUNT": 1,
"COND_NO": "0000006911",
"COND_P_UNT": 0,
"COND_TYPE": "TTX1",
"COND_VALUE": 19,
"CUMM_ACCR": 0,
"CUM_VALUE": 0,
"DENOMINATO": 0,
"INCR_SCALE": 0,
"ITM_NUMBER": 10,
"LOWERLIMIT": 0,
"MAXCONBAVA": 0,
"MAXCONVAL": 0,
"MINCONBAVA": 0,
"NUMBORDERS": 0,
"NUMCONVERT": 0,
"OPERATION": "005",
"PLAN_BASIS": 0,
"PLCONDVAL": 0,
"PRICSCALE": 0,
"SCALETYPE": "A",
"SCALE_QTY": 0,
"SCALE_VAL": 0,
"SD_DOC": "0000000001",
"TAX_CODE": "A1",
"UPPERLIMIT": 0
},
{
"ACCRUALS": 0,
"ADD_VAL_DY": 0,
"APPLICATIO": "V",
"CALCTYPCON": "C",
"CONDCURR": "EUR",
"CONDCURREN": "EUR",
"CONDITIDX": 1,
"COND_COUNT": 1,
"COND_ISO": "EUR",
"COND_NO": "0000006934",
"COND_P_UNT": 1,
"COND_TYPE": "PPR0",
"COND_UNIT": "ST",
"COND_VALUE": 17.55,
"CONUNITISO": "PCE",
"CUMM_ACCR": 0,
"CUM_VALUE": 0,
"CURRENCY": "EUR",
"CURR_ISO": "EUR",
"DENOMINATO": 0,
"INCR_SCALE": 0,
"ISOCURRENC": "EUR",
"ITM_NUMBER": 10,
"LOWERLIMIT": 0,
"MAXCONBAVA": 0,
"MAXCONVAL": 0,
"MINCONBAVA": 0,
"NUMBORDERS": 0,
"NUMCONVERT": 0,
"OPERATION": "005",
"PLAN_BASIS": 0,
"PLCONDVAL": 0,
"PRICSCALE": 0,
"SCALETYPE": "A",
"SCALE_QTY": 0,
"SCALE_VAL": 0,
"SD_DOC": "0000000001",
"UPPERLIMIT": 0
}
],
"ORDER_HEADERS_OUT": [
{
"ACC_PERIOD": 0,
"COMP_CODE": "1010",
"CONDITIONS": "0000000001",
"CO_AREA": "A000",
"CREATED_BY": "BPINST",
"CRED_ACCNT": "0010100100",
"CURRENCY": "EUR",
"CURREN_ISO": "EUR",
"CURR_CRED": "USD",
"C_CTR_AREA": "A000",
"DATE_TYPE": "1",
"DISTR_CHAN": "10",
"DIVISION": "00",
"DOC_DATE": "2016-09-26",
"DOC_NUMBER": "0000000001",
"DOC_TYPE": "TA",
"DUN_COUNT": 0,
"HI_TYPE_PR": "A",
"ISOCURRCRE": "USD",
"ISOSTATCUR": "EUR",
"KALSM_CH": "YB0001",
"NET_VAL_HD": 175.5,
"OPERATION": "005",
"ORDBILLTYP": "F2",
"ORD_PROBAB": 100,
"PURCH_NO": "potestEC",
"REC_DATE": "2016-09-26",
"REC_TIME": "18:13:30",
"REL_CREDIT": 0,
"REQ_DATE_H": "2016-09-26",
"SALES_ORG": "1010",
"SD_DOC_CAT": "C",
"SD_PRIC_PR": "Y10101",
"SHIP_COND": "01",
"SOLD_TO": "0010100100",
"STAT_CURR": "EUR",
"TELEPHONE": "09990 9821-0",
"TRAN_GROUP": "0",
"WBS_ELEM": 0
}
],
"ORDER_ITEMS_OUT": [
{
"ACCT_ASSGT": "01",
"ACTCREDID": "X",
"ALLOC_INDI": "1",
"ALTERN_ITM": 0,
"AVAILCHECK": "Y2",
"BASE_UOM": "ST",
"BATCH_EXIT": 0,
"BOM_IT_NR": 0,
"CASH_DISC": "X",
"CAU_POSNR": 0,
"CHCLASS_IN": 0,
"COMPON_QTY": 0,
"COND_P_UNT": 1,
"COND_UNIT": "ST",
"CONFIG": 0,
"CONISOUNIT": "PCE",
"CONV_FACT": 0,
"COSTESTNR": 0,
"COST_DOC_C": 135,
"COUNTER": 0,
"CREATED_BY": "BPINST",
"CREAT_DATE": "2016-09-26",
"CREDPRIC": 20.885,
"CREDPRICIT": 20.89,
"CR_EXCHRAT": 0.8,
"CR_EXCHRAT_V": 1.25,
"CUM_CF_QTY": 10,
"CUM_CON_QU": 10,
"CUM_REQ_DE": 10,
"CURRENCY": "EUR",
"CURREN_ISO": "EUR",
"DIVISION": "00",
"DLV_GROUP": 0,
"DLV_PRIO": "02",
"DOC_NUMBER": "0000000001",
"EXCHRATEST_V": 0,
"EXCH_RATE": 1,
"FIX_SP_DAY": 0,
"GROSS_VAL": 0,
"GROSS_WEIG": 10,
"GURANTEED": 0,
"HG_LV_ITEM": 0,
"INTCLASSNR": 0,
"ISOCODUNIT": "PCE",
"ITEM_CATEG": "TAN",
"ITM_NUMBER": 10,
"LOG_SYSTEM_OWN": "S4HCLNT300",
"MATERIAL": "TG21",
"MATL_GROUP": "L001",
"MAT_ENTRD": "TG21",
"MAX_DEVIAT": 0,
"MAX_DEV_DA": 0,
"MAX_DEV_PE": 0,
"MAX_PL_DLV": 0,
"MIN_DELY": 0,
"MRP_AREA": "1010",
"NET_PRICE": 17.55,
"NET_VALUE": 175.5,
"NET_WEIGHT": 9,
"NO_OF_SERI": "0",
"ORDER_PROB": 100,
"OUT_AGR_TA": 0,
"OVER_DLV_T": 0,
"PLANT": "1010",
"POSNR_VOR": 0,
"PRICE_OK": "X",
"PROFIT_CTR": "YB700",
"PROFIT_SEG": 3,
"REC_TIME": "18:14:07",
"REL_FOR_BI": "A",
"REQMTSTYP": "KSV",
"REQ_QTY": 10,
"ROUND_DLV": 0,
"ROUTE": "TR0001",
"SALES_QTY1": 1,
"SALES_QTY2": 1,
"SALES_UNIT": "ST",
"SCALE_QUAN": 0,
"SHIP_POINT": "1010",
"SHORT_TEXT": "HAWA 21, Bestellpunkt, FIFO Charge",
"STPOS_VBAP": 0,
"SUBTOT_PP1": 175.5,
"SUBTOT_PP2": 175.5,
"SUBTOT_PP3": 175.5,
"SUBTOT_PP4": 0,
"SUBTOT_PP5": 0,
"SUBTOT_PP6": 0,
"TARGET_QTY": 0,
"TARGET_QU": "ST",
"TARG_QTY_D": 1,
"TARG_QTY_N": 1,
"TAX_AMOUNT": 33.35,
"TAX_CLASS1": "1",
"T_BAS_UNIT": "PCE",
"T_UNIT_ISO": "PCE",
"UNDER_DLV": 0,
"UNIT_OF_WT": "G",
"UNIT_WTISO": "GRM",
"VALCONTRIT": 0,
"VAR_SP_DAY": 0,
"VOLUME": 0,
"WBS_ELEM": 0
}
],
"ORDER_PARTNERS_OUT": [
{
"ADDRESS": "0000023403",
"ADDRE_INDI": "D",
"ASSIGN_HI": 0,
"CONTACT": 0,
"COUNTRY": "DE",
"COUNTRYISO": "DE",
"CUSTOMER": "0010100100",
"ITM_NUMBER": 0,
"LEVEL_NR": 0,
"OPERATION": "005",
"PARTN_ROLE": "AG",
"PERSON_NO": 0,
"SD_DOC": "0000000001",
"TRANSPZONE": "0000000002"
},
{
"ADDRESS": "0000023403",
"ADDRE_INDI": "D",
"ASSIGN_HI": 0,
"CONTACT": 0,
"COUNTRY": "DE",
"COUNTRYISO": "DE",
"CUSTOMER": "0010100100",
"ITM_NUMBER": 0,
"LEVEL_NR": 0,
"OPERATION": "005",
"PARTN_ROLE": "RE",
"PERSON_NO": 0,
"SD_DOC": "0000000001",
"TRANSPZONE": "0000000002"
},
{
"ADDRESS": "0000023403",
"ADDRE_INDI": "D",
"ASSIGN_HI": 0,
"CONTACT": 0,
"COUNTRY": "DE",
"COUNTRYISO": "DE",
"CUSTOMER": "0010100100",
"ITM_NUMBER": 0,
"LEVEL_NR": 0,
"OPERATION": "005",
"PARTN_ROLE": "RG",
"PERSON_NO": 0,
"SD_DOC": "0000000001",
"TRANSPZONE": "0000000002"
},
{
"ADDRESS": "0000023403",
"ADDRE_INDI": "D",
"ASSIGN_HI": 0,
"CONTACT": 0,
"COUNTRY": "DE",
"COUNTRYISO": "DE",
"CUSTOMER": "0010100100",
"ITM_NUMBER": 0,
"LEVEL_NR": 0,
"OPERATION": "005",
"PARTN_ROLE": "WE",
"PERSON_NO": 0,
"SD_DOC": "0000000001",
"TRANSPZONE": "0000000002"
}
],
"ORDER_SCHEDULES_OUT": [
{
"AVAIL_CON": "X",
"BASE_UOM": "ST",
"BUSIITNR": 0,
"COMMIT_QTY": 0,
"CONFIR_QTY": 0,
"CORR_QTY": 10,
"DATE_TYPE": "1",
"DOC_NUMBER": "0000000001",
"FORCAST_NR": 0,
"GI_DATE": "2016-09-27",
"GRP_DEFIN": 0,
"GURANTEED": 0,
"ISOBASUNIT": "PCE",
"ISOCODUNIT": "PCE",
"ITM_NUMBER": 10,
"LOAD_DATE": "2016-09-27",
"MAINT_REQ": 0,
"MOVE_TYPE": "601",
"MS_DATE": "2016-09-26",
"OPERATION": "005",
"PREQ_ITEM": 0,
"RELFORDEL": "X",
"REQ_DATE": "2016-09-26",
"REQ_QTY": 10,
"REQ_QTY1": 0,
"SALESQTYDE": 1,
"SALESQTYNR": 1,
"SALES_UNIT": "ST",
"SCHED_LIN1": 0,
"SCHED_LINE": 1,
"SCHED_TYPE": "CV",
"SIZE2": 0,
"SIZE3": 0,
"TP_DATE": "2016-09-27"
},
{
"AVAIL_CON": "X",
"BASE_UOM": "ST",
"BUSIITNR": 0,
"COMMIT_QTY": 0,
"CONFIR_QTY": 10,
"CORR_QTY": 0,
"DATE_TYPE": "1",
"DOC_NUMBER": "0000000001",
"FORCAST_NR": 0,
"GI_DATE": "2016-09-27",
"GRP_DEFIN": 0,
"GURANTEED": 0,
"ISOBASUNIT": "PCE",
"ISOCODUNIT": "PCE",
"ITM_NUMBER": 10,
"LOAD_DATE": "2016-09-27",
"MAINT_REQ": 0,
"MOVE_TYPE": "601",
"MS_DATE": "2016-09-26",
"OPERATION": "005",
"PREQ_ITEM": 0,
"RELFORDEL": "X",
"REQ_DATE": "2016-09-28",
"REQ_QTY": 0,
"REQ_QTY1": 10,
"SALESQTYDE": 1,
"SALESQTYNR": 1,
"SALES_UNIT": "ST",
"SCHED_LIN1": 0,
"SCHED_LINE": 2,
"SCHED_TYPE": "CV",
"SIZE2": 0,
"SIZE3": 0,
"TP_DATE": "2016-09-27"
}
],
"ORDER_STATUSHEADERS_OUT": [
{
"CONFIRSTAT": "C",
"DELIV_STAT": "A",
"DLV_STAT_H": "A",
"DOCIMCOMPR": "C",
"GENINCOMHD": "C",
"HDIMCOMDEL": "C",
"HDINCOMBIL": "C",
"OVERALLREJ": "A",
"PRC_STAT_H": "A",
"SDDOCOBJ": "A",
"SD_DOC": "0000000001",
"SD_DOC_CAT": "C",
"TOTINCOMBI": "C",
"TOTINCOMIT": "C",
"TOTINCOMPL": "C"
}
],
"ORDER_STATUSITEMS_OUT": [
{
"CONFSTATIT": "C",
"DELIV_STAT": "A",
"DLV_STAT_I": "A",
"GENINCOMST": "C",
"INCOMSTBIL": "C",
"INCOMSTDEL": "C",
"INCOMSTPRI": "C",
"ITM_NUMBER": 10,
"OVRPROCSTA": "A",
"REJSTATIT": "A",
"SD_DOC": "0000000001"
}
],
"SALES_DOCUMENTS": [
{
"VBELN": "0000000001"
}
]
}
Update an ERP SD Sales Order
You can update a specific ERP SD sales order to change the relevant information, such as purchase order number, delivery block, partner's address, and so on.
Use the following example to change the purchase number of an ERP SD sales order.
Request
- Method: PUT
- Request URL:
https://api.beta.yaas.io/hybris/sdorderproxy/v1/{tenant}/erpsalesorder/{salesorderId}
- Headers
- Authorization: This includes a valid OAuth2 access token. To access this method, the access token must be issued for the requested tenant and have the scope hybris.sdorderproxy_manage.
- URI Parameters
- {tenant}: The name of the current tenant
- {salesorderId}: The ERP Sales Order ID
- Body:
{ "ORDER_HEADER_IN" : { "PURCH_NO_C" : "testPO" }, "ORDER_HEADER_INX" : { "UPDATEFLAG" : "U", "PURCH_NO_C" : "X" }, "SALESDOCUMENT" : "0000000001", "SIMULATION" : "X" }
Response
The successful response returns a 200
status code. An example JSON content looks similar to the following:
[
{
"ID": "V4",
"LOG_MSG_NO": 0,
"MESSAGE": "ORDER_HEADER_IN has been processed successfully",
"MESSAGE_V1": "VBAKKOM",
"MESSAGE_V2": "A000",
"NUMBER": 233,
"PARAMETER": "ORDER_HEADER_IN",
"ROW": "0",
"SYSTEM": "S4HCLNT300",
"TYPE": "S"
}
]
Retrieve Help Values for a Single Field
To retrieve help values for a single field, you need:
Request
- Method: GET
- Request URL:
https://api.beta.yaas.io/hybris/sdorderproxy/v1/{tenant}/helpvalues
- Headers
- Authorization: This includes a valid OAuth2 access token. To access this method, the access token must be issued for the requested tenant and have the scope hybris.sdorderproxy_view.
- URI Parameters
- {tenant}: The name of the current tenant
- Query Parameters
- FieldName: The field name, for which you get the help values.
Use this example to get help values for the field Payment Terms (ZTERM).
Response
The successful response returns a 200
status code. An example JSON content looks similar to the following:
[
{
"language": "en",
"key":"NT00",
"value":"Payable upon receipt"
},
{
"language": "en",
"key":"NT30",
"value":"Net due in 30 days"
}
]
Retrieve Help Values for Multiple Fields
To retrieve help values for multiple fields, you need:
Request
- Method: GET
- Request URL:
https://api.beta.yaas.io/hybris/sdorderproxy/v1/{tenant}/multiplehelpvalues
- Headers
- Authorization: This includes a valid OAuth2 access token. To access this method, the access token must be issued for the requested tenant and have the scope hybris.sdorderproxy_view.
- URI Parameters
- {tenant}: The name of the current tenant
- Query Parameters
- FieldName: Names of the fields, for which you get the help values. Use a comma to separate multiple fields.
Use this example to get help values for both Payment Terms (ZTERM) and Payment Method (ZLSCH).
Response
The successful response returns a 200
status code. An example JSON content looks similar to the following:
[
{
"OutputOfHelpValue": [
{
"language": "E"
},
{
"key": "0001",
"language": "E",
"value": "Pay immediately w/o deduction"
},
{
"key": "0002",
"language": "E",
"value": "14 days 2%, 30 net"
},
{
"key": "0003",
"language": "E",
"value": "14 days 3%, 20/2%, 30 net"
},
{
"key": "0004",
"language": "E",
"value": "as of end of month"
},
{
"key": "0005",
"language": "E",
"value": "from the 10th of subs. month"
},
{
"key": "0006",
"language": "E",
"value": "End of month 4%, Mid-month 2%"
},
{
"key": "0007",
"language": "E",
"value": "15th/31st subs. month 2%, ..."
},
{
"key": "0008",
"language": "E",
"value": "14 days 2%, 30/1,5%, 45 net"
},
{
"key": "0009",
"language": "E",
"value": "Payable in 3 installments"
},
{
"key": "IK00",
"language": "E",
"value": "Within 5 days 3% cash discount"
},
{
"key": "LVT0",
"language": "E",
"value": "16 days 2%, 31 days net"
},
{
"key": "MVT0",
"language": "E",
"value": "10 days 3%, 16 2%, 31 net"
},
{
"key": "NT00",
"language": "E",
"value": "Payable upon receipt"
},
{
"key": "NT08",
"language": "E",
"value": "Net due in 8 days"
},
{
"key": "NT15",
"language": "E",
"value": "Net due in 15 days"
},
{
"key": "NT30",
"language": "E",
"value": "Net due in 30 days"
},
{
"key": "NT45",
"language": "E",
"value": "Net due in 45 days"
},
{
"key": "NT60",
"language": "E",
"value": "Net due in 60 days"
},
{
"key": "SEPA",
"language": "E",
"value": "SEPA Direct Debit"
},
{
"key": "WALL",
"language": "E",
"value": "99% forever"
},
{
"key": "WL01",
"language": "E",
"value": "12 days net"
},
{
"key": "ZB00",
"language": "E",
"value": "Pay immediately w/o deduction"
},
{
"key": "ZB01",
"language": "E",
"value": "14 Days 3%, 30/2%, 45 net"
},
{
"key": "ZB02",
"language": "E",
"value": "8 days 5%, 14/2%, 21 net"
},
{
"key": "ZB03",
"language": "E",
"value": "20 days 2%, 30 days net"
},
{
"key": "ZB04",
"language": "E",
"value": "10 days 4%, 20/2%, 30 net"
},
{
"key": "ZB05",
"language": "E",
"value": "5 days 2%, 10 days net"
}
],
"fieldname": "ZTERM"
},
{
"OutputOfHelpValue": [
{
"key": "F",
"language": "E",
"value": "Foreign bank transfer (DTAZV)"
},
{
"key": "I",
"language": "E",
"value": "ISO PAIN001: Credit Transfer"
},
{
"key": "T",
"language": "E",
"value": "SEPA Credit Transfer"
},
{
"key": "E",
"language": "E",
"value": "Direct Debit"
},
{
"key": "C",
"language": "E",
"value": "Check"
},
{
"key": "D",
"language": "E",
"value": "Bank transfer (ACH CCD)"
},
{
"key": "I",
"language": "E",
"value": "ISO PAIN.001 Credit Transfer"
},
{
"key": "P",
"language": "E",
"value": "Bank transfer (ACH PPD)"
},
{
"key": "T",
"language": "E",
"value": "Bank transfer (ACH CTX)"
}
],
"fieldname": "ZLSCH"
}
]
Error Types
For information about error codes, see the API Reference.
Glossary
Term | Description |
---|---|
help value | An allowed value for an input field. |
If you find any information that is unclear or incorrect, please let us know so that we can improve the Dev Portal content.
Use our private help channel. Receive updates over email and contact our specialists directly.
If you need more information about this topic, visit hybris Experts to post your own question and interact with our community and experts.