openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/DB6_PLAN_STOP_BATCH: post: tags: - SDB6PLAN summary: 'DB6: stop further execution of actions' operationId: /rfc/DB6_PLAN_STOP_BATCH requestBody: content: application/json: schema: properties: ACTION: type: object properties: DAYE: type: integer format: int64 description: 'Day of the week for DBA action enumValues: 1=Monday,4=Thursday,5=Friday,7=Sunday,3=Wednesday,2=Tuesday,6=Saturday' enum: - '1' - '4' - '5' - '7' - '3' - '2' - '6' TIMEE: type: string maxLength: 6 description: Time (24 hour clock) for DBA action to run CRETSTMP: type: string maxLength: 14 description: Date and time (timestamp) of schedule SYSID: type: string maxLength: 8 description: Name of the SAP System BTYPE: type: string maxLength: 5 description: Type of DBA action PERIOD: type: integer format: int64 description: Duration (in days) of DBA action DELTSTMP: type: string maxLength: 14 description: Timestamp for deletion of DBA action STARTTSTMP: type: string maxLength: 14 description: Timestamp for first run of DBA action MANDT: type: string maxLength: 3 description: Client ID of Current User EXEHOST: type: string maxLength: 30 description: Name of the server where the DBA action is to be executed CONNECTION: type: string maxLength: 30 description: Logical name for a database connection END_DATE: type: string format: date description: Date and time, current (application server) date END_TIME: type: string maxLength: 6 description: Dat and time, current application server time MESSAGES: type: array items: type: object properties: MSGTY: type: string maxLength: 1 description: Message Type MSGID: type: string maxLength: 20 description: Message Class MSGNO: type: integer format: int64 description: Message Number MSGV1: type: string maxLength: 255 description: '' MSGV2: type: string maxLength: 255 description: '' MSGV3: type: string maxLength: 255 description: '' MSGV4: type: string maxLength: 255 description: '' required: - ACTION - END_DATE - END_TIME responses: '200': description: OK content: application/json: schema: properties: MESSAGES: type: array items: type: object properties: MSGTY: type: string maxLength: 1 description: Message Type MSGID: type: string maxLength: 20 description: Message Class MSGNO: type: integer format: int64 description: Message Number MSGV1: type: string maxLength: 255 description: '' MSGV2: type: string maxLength: 255 description: '' MSGV3: type: string maxLength: 255 description: '' MSGV4: type: string maxLength: 255 description: '' '400': description: Bad request. 5XX: description: Unexpected error.