openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BAPI_RECORD_DELETEELEMENTS: post: tags: - SRM_BAPI_RECORD summary: Delete Multiple Elements From Record operationId: /rfc/BAPI_RECORD_DELETEELEMENTS requestBody: content: application/json: schema: properties: DEL_ALL_NOT_UNIQUE_ELEMS: type: string default: ' ' maxLength: 1 description: 'Indicator: Delete all elements that occur more than once in the record' DOCUMENTCLASS: type: string maxLength: 10 description: Record Location DOC_CONTEXT: type: object properties: RMS_ID: type: string maxLength: 32 description: RMS ID in SRM SPS_ID: type: string maxLength: 32 description: Element Type ID IGNORE_CONNECTION_FAILED: type: string default: ' ' maxLength: 1 description: Ignores the exception if the element no longer exists OBJECTID: type: string maxLength: 32 description: Internal ID of Record SKIP_ELEMS_WITH_ERROR: type: string default: X maxLength: 1 description: 'Indicator: Ignore Elements with Errors' STORE_AS_NEW_VERSION: type: string default: ' ' maxLength: 1 description: 'Indicator: Create New Logical Version of Record?' ELEM_IDENT_RECPOS: type: array items: type: object properties: REC_NODEID: type: integer format: int32 description: Node ID in the Record ELEM_IDENT_SP_POID: type: array items: type: object properties: ELEM_NO: type: integer format: int32 description: Position NAME: type: string maxLength: 64 description: Property Name VALUE: type: string maxLength: 255 description: Property Value required: - DOCUMENTCLASS - OBJECTID responses: '200': description: OK content: application/json: schema: properties: ELEM_IDENT_RECPOS: type: array items: type: object properties: REC_NODEID: type: integer format: int32 description: Node ID in the Record ELEM_IDENT_SP_POID: type: array items: type: object properties: ELEM_NO: type: integer format: int32 description: Position NAME: type: string maxLength: 64 description: Property Name VALUE: type: string maxLength: 255 description: Property Value RETURN: type: array items: 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 PARAMETER: type: string maxLength: 32 description: Parameter Name ROW: type: integer format: int32 description: Lines in parameter FIELD: type: string maxLength: 30 description: Field in parameter SYSTEM: type: string maxLength: 10 description: Logical system from which message originates '400': description: Bad request. 5XX: description: Unexpected error.