openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CAMA_CLASS_ALLOCAT_GLOB_DEP: post: tags: - CACLM operationId: /rfc/CAMA_CLASS_ALLOCAT_GLOB_DEP requestBody: content: application/json: schema: properties: CHANGE_NO: type: string default: ' ' maxLength: 12 description: Change Number KEY_DATE: type: string format: date default: SY-DATUM description: Change Number CLASS_DEP_ASSIGN: type: array items: type: object properties: CLASS: type: string maxLength: 18 description: Class number CLASS_TYPE: type: string maxLength: 3 description: Class Type 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: CLASS_DEP_ASSIGN: type: array items: type: object properties: CLASS: type: string maxLength: 18 description: Class number CLASS_TYPE: type: string maxLength: 3 description: Class Type 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.