openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CHECK_OBJECT_TYPE_IDOCAPPL: post: tags: - BD20 operationId: /rfc/CHECK_OBJECT_TYPE_IDOCAPPL requestBody: content: application/json: schema: properties: EVENT: type: string maxLength: 32 description: Type of Event OBJKEY: type: string maxLength: 70 description: Object Key OBJTYPE: type: string maxLength: 10 description: Object Type RECTYPE: type: string maxLength: 14 EVENT_CONTAINER: type: array items: type: object properties: ELEMENT: type: string maxLength: 32 description: Element TAB_INDEX: type: integer format: int64 description: Index for table element ELEMLENGTH: type: integer format: int64 description: Length of the field in bytes TYPE: type: string maxLength: 1 description: 'ABAP Type of element enumValues: N=Character string with only digits,s=2-byte integer, only for length field before LCHR or LRAW,h=Table type,y=Byte sequence with variable length (ABAP type XSTRING),l=Reference to data object,b=1-byte integer, integer number <= 254,P=Packed number,T=Time (Time: HHMMSS),u=Structured type, flat,I=Integer number (4-byte integer with sign),F=Floating point number to accuracy of 8 bytes,v=Structured type, deep,V=Character string (old Dictionary type VARC),X=Byte sequence (heXadecimal),C=Character string,g=Character string with variable length (ABAP type STRING),r=Reference to class/interface,D=Date (Date: YYYYMMDD)' enum: - N - s - h - y - l - b - P - T - u - I - F - v - V - X - C - g - r - D VALUE: type: string maxLength: 255 description: Character value required: - EVENT - OBJKEY - OBJTYPE - RECTYPE responses: '200': description: OK content: application/json: schema: properties: EVENT_CONTAINER: type: array items: type: object properties: ELEMENT: type: string maxLength: 32 description: Element TAB_INDEX: type: integer format: int64 description: Index for table element ELEMLENGTH: type: integer format: int64 description: Length of the field in bytes TYPE: type: string maxLength: 1 description: 'ABAP Type of element enumValues: N=Character string with only digits,s=2-byte integer, only for length field before LCHR or LRAW,h=Table type,y=Byte sequence with variable length (ABAP type XSTRING),l=Reference to data object,b=1-byte integer, integer number <= 254,P=Packed number,T=Time (Time: HHMMSS),u=Structured type, flat,I=Integer number (4-byte integer with sign),F=Floating point number to accuracy of 8 bytes,v=Structured type, deep,V=Character string (old Dictionary type VARC),X=Byte sequence (heXadecimal),C=Character string,g=Character string with variable length (ABAP type STRING),r=Reference to class/interface,D=Date (Date: YYYYMMDD)' enum: - N - s - h - y - l - b - P - T - u - I - F - v - V - X - C - g - r - D VALUE: type: string maxLength: 255 description: Character value '400': description: Bad request. 5XX: description: Unexpected error.