openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CAMA_CLASS_CHVAL_DEL_DEP: post: tags: - CACLM operationId: /rfc/CAMA_CLASS_CHVAL_DEL_DEP requestBody: content: application/json: schema: properties: CHANGE_NO: type: string default: ' ' maxLength: 12 description: Change number CHARACTERISTIC: type: string maxLength: 30 description: Characteristic CLASS: type: string maxLength: 18 description: Class CLASS_TYPE: type: string maxLength: 3 description: Class type DELETE_LOCAL_DEP: type: string default: ' ' maxLength: 1 description: Deletion indicator for local deps KEY_DATE: type: string format: date default: SY-DATUM description: Valid-From Date VALUE: type: string maxLength: 30 description: Characteristic value DEP_ASSIGN_DEL: type: array items: type: object properties: DEPENDENCY: type: string maxLength: 30 description: Name of Dependency FLDELETE: type: string maxLength: 1 description: 'Deletion Indicator enumValues: ""=No,X=Yes' enum: - '' - X required: - CHARACTERISTIC - CLASS - CLASS_TYPE - VALUE responses: '200': description: OK content: application/json: schema: properties: RETURN: type: object properties: TYPE: type: string maxLength: 1 description: 'Message type: S Success, E Error, W Warning, I Info, A Abort' CODE: type: string maxLength: 5 description: Message code MESSAGE: type: string maxLength: 220 description: Message Text LOG_NO: type: string maxLength: 20 description: 'Application log: log number' LOG_MSG_NO: type: integer format: int64 description: 'Application log: Internal message serial number' MESSAGE_V1: type: string maxLength: 50 description: Message Variable MESSAGE_V2: type: string maxLength: 50 description: Message Variable MESSAGE_V3: type: string maxLength: 50 description: Message Variable MESSAGE_V4: type: string maxLength: 50 description: Message Variable DEP_ASSIGN_DEL: type: array items: type: object properties: DEPENDENCY: type: string maxLength: 30 description: Name of Dependency FLDELETE: type: string maxLength: 1 description: 'Deletion Indicator enumValues: ""=No,X=Yes' enum: - '' - X '400': description: Bad request. 5XX: description: Unexpected error.