openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CAMA_CHAR_VAL_ALLOCAT_GLOB_DEP: post: tags: - CACTM operationId: /rfc/CAMA_CHAR_VAL_ALLOCAT_GLOB_DEP requestBody: content: application/json: schema: properties: CHANGE_NO: type: string default: ' ' maxLength: 12 description: Change Number COMM_WAIT: type: string maxLength: 1 description: Key Date DATE: type: string maxLength: 10 description: Key Date CHAR_VAL_DEP_ASSIGN: type: array items: type: object properties: CHARACT: type: string maxLength: 30 description: Characteristic Name VALUE: type: string maxLength: 30 description: Characteristic Value DEPENDENCY: type: string maxLength: 30 description: Name of Dependency PROC_ORDER: type: integer format: int64 description: Counter for sorting object allocations FLDELETE: type: string maxLength: 1 description: 'Deletion Indicator enumValues: ""=No,X=Yes' enum: - '' - X responses: '200': description: OK content: application/json: schema: properties: CHAR_VAL_DEP_ASSIGN: type: array items: type: object properties: CHARACT: type: string maxLength: 30 description: Characteristic Name VALUE: type: string maxLength: 30 description: Characteristic Value DEPENDENCY: type: string maxLength: 30 description: Name of Dependency PROC_ORDER: type: integer format: int64 description: Counter for sorting object allocations FLDELETE: type: string maxLength: 1 description: 'Deletion Indicator enumValues: ""=No,X=Yes' enum: - '' - X '400': description: Bad request. 5XX: description: Unexpected error.