openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BAPI_APPRAISEE_GETLIST: post: tags: - RH_APPRAISAL_MODEL_BAPI summary: Read appraisees operationId: /rfc/BAPI_APPRAISEE_GETLIST requestBody: content: application/json: schema: properties: APPRAISAL_MODEL_ID: type: integer format: int64 description: Appraisal model ID APPRAISEE_TYPE: type: string maxLength: 2 description: Appraisee type FROM_DATE: type: string format: date default: SY-DATUM description: Start of reporting period PLAN_VERSION: type: string maxLength: 2 description: Plan version SEARCH_STRING: type: string default: '*' maxLength: 12 description: Search term TO_DATE: type: string format: date default: SY-DATUM description: End of reporting period APPRAISEES: type: array items: type: object properties: PLAN_VERSION: type: string maxLength: 2 description: Plan Version TYPE: type: string maxLength: 2 description: Object Type ID: type: string maxLength: 45 description: ID of Related Object NAME: type: string maxLength: 40 description: Object Name required: - APPRAISAL_MODEL_ID - APPRAISEE_TYPE - PLAN_VERSION 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' ID: type: string maxLength: 20 description: Message Class NUMBER: type: integer format: int64 description: Message Number 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 APPRAISEES: type: array items: type: object properties: PLAN_VERSION: type: string maxLength: 2 description: Plan Version TYPE: type: string maxLength: 2 description: Object Type ID: type: string maxLength: 45 description: ID of Related Object NAME: type: string maxLength: 40 description: Object Name '400': description: Bad request. 5XX: description: Unexpected error.