openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/APPT_INTERACTIVE_DISPLAY: post: tags: - SSCE summary: 'Process with Dialog: Display Appointment' operationId: /rfc/APPT_INTERACTIVE_DISPLAY requestBody: content: application/json: schema: properties: APPOINTMENT_ID: type: string maxLength: 25 OWNER: type: string maxLength: 12 description: Owner required: - APPOINTMENT_ID - OWNER responses: '200': description: OK content: application/json: schema: properties: ERROR_MESSAGE: type: object properties: MSG_ID: type: string maxLength: 2 description: Message ID MSG_TYPE: type: string maxLength: 1 description: Message Type MSG_NUMBER: type: integer format: int64 description: Message Number MSG_VAR1: type: string maxLength: 50 description: Message variable MSG_VAR2: type: string maxLength: 50 description: Message variable MSG_VAR3: type: string maxLength: 50 description: Message variable MSG_VAR4: type: string maxLength: 50 description: Message variable FIELDNAME: type: string maxLength: 30 description: Field Name TABLEINDEX: type: integer format: int64 description: Incorrect table entry '400': description: Bad request. 5XX: description: Unexpected error.