openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BAPI_ISET_ACTIVATE: post: tags: - RSAB summary: Activate InfoSet operationId: /rfc/BAPI_ISET_ACTIVATE requestBody: content: application/json: schema: properties: INFOSET: type: string maxLength: 30 description: InfoSet required: - INFOSET responses: '200': description: OK content: application/json: schema: properties: RETURN: type: array items: 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 '400': description: Bad request. 5XX: description: Unexpected error.