openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BAPI_APPRAISAL_CHANGE: post: tags: - RH_APPRAISAL_BAPI summary: Change appraisals operationId: /rfc/BAPI_APPRAISAL_CHANGE requestBody: content: application/json: schema: properties: ANONYMOUS: type: string default: ' ' maxLength: 1 description: Anonymous APPRAISAL_ID: type: integer format: int64 description: Appraisal ID CREATION_DATE: type: string format: date default: SY-DATUM description: Created on PLAN_VERSION: type: string maxLength: 2 description: Plan version TEXT: type: string maxLength: 40 description: Name of appraisal APPRAISAL_DATA: type: array items: type: object properties: COUNTER: type: integer format: int64 description: Counter ELEMENT_TYPE: type: string maxLength: 2 description: Object Type - Appraisal Element ELEMENT_ID: type: integer format: int64 description: Object ID - Appraisal Element ELEMENT_TEXT: type: string maxLength: 80 description: Numbering + Text - Appraisal Element WEIGHTING: type: integer format: int64 description: Weighting RATING: type: integer format: int64 description: Rating of an Appraisal Element RATING_TEXT: type: string maxLength: 40 description: Rating text of an appraisal element NOT_RATED: type: string maxLength: 1 description: 'Flag: Without Rating enumValues: ""=Not Selected,X=Selected' enum: - '' - X INPUT_TYPE: type: string maxLength: 1 description: 'Flag: Type of input option for appraisal result enumValues: ""=Optional entry,D=Required entry,M=No entry' enum: - '' - D - M PARENT: type: integer format: int64 description: Reference to Counter of Parent 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 APPRAISERS: 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_ID - 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 APPRAISAL_DATA: type: array items: type: object properties: COUNTER: type: integer format: int64 description: Counter ELEMENT_TYPE: type: string maxLength: 2 description: Object Type - Appraisal Element ELEMENT_ID: type: integer format: int64 description: Object ID - Appraisal Element ELEMENT_TEXT: type: string maxLength: 80 description: Numbering + Text - Appraisal Element WEIGHTING: type: integer format: int64 description: Weighting RATING: type: integer format: int64 description: Rating of an Appraisal Element RATING_TEXT: type: string maxLength: 40 description: Rating text of an appraisal element NOT_RATED: type: string maxLength: 1 description: 'Flag: Without Rating enumValues: ""=Not Selected,X=Selected' enum: - '' - X INPUT_TYPE: type: string maxLength: 1 description: 'Flag: Type of input option for appraisal result enumValues: ""=Optional entry,D=Required entry,M=No entry' enum: - '' - D - M PARENT: type: integer format: int64 description: Reference to Counter of Parent 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 APPRAISERS: 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.