openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BAPI_ALV_PROGNOSE_ISWB: post: tags: - SLVC_DIALOG summary: Test BAPI for IS Workbench operationId: /rfc/BAPI_ALV_PROGNOSE_ISWB requestBody: content: application/json: schema: properties: I_MODEL: type: string maxLength: 255 description: Character Field Length 1 E_TABLE: type: array items: type: object properties: EFLAG: type: string maxLength: 1 description: 'Yes/No (X/ ) enumValues: ""=No,X=Yes' enum: - '' - X PRW01: type: integer format: int64 description: Forecast value SAI01: type: integer format: int64 description: Seasonal index required: - I_MODEL responses: '200': description: OK content: application/json: schema: properties: E_TABLE: type: array items: type: object properties: EFLAG: type: string maxLength: 1 description: 'Yes/No (X/ ) enumValues: ""=No,X=Yes' enum: - '' - X PRW01: type: integer format: int64 description: Forecast value SAI01: type: integer format: int64 description: Seasonal index '400': description: Bad request. 5XX: description: Unexpected error.