openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CPE_PRICEQUOT_READ_MULTI_AC: post: tags: - CPE_PRICEQUOT_AC summary: 'CPE Price Quotations: Read multiple from archive' operationId: /rfc/CPE_PRICEQUOT_READ_MULTI_AC requestBody: content: application/json: schema: properties: IT_PRICEQUOT_KEY: type: array items: type: object properties: CLIENT: type: string maxLength: 3 description: Client QUOTSRC: type: string maxLength: 2 description: Quotation Source QUOTTYPE: type: string maxLength: 5 description: Quotation Type QUOTNAME: type: string maxLength: 18 description: Quotation Name QUOTDATE: type: string format: date description: Date of Price Quotation QUOTTIME: type: string maxLength: 6 description: Time of Price Quotation VALIDTO: type: string maxLength: 14 description: CPE - 'Valid To' Time Stamp of Commodity Pricing Object required: - IT_PRICEQUOT_KEY responses: '200': description: OK content: application/json: schema: properties: ET_PRICEQUOT: type: array items: type: object properties: CLIENT: type: string maxLength: 3 description: Client QUOTSRC: type: string maxLength: 2 description: Quotation Source QUOTTYPE: type: string maxLength: 5 description: Quotation Type QUOTNAME: type: string maxLength: 18 description: Quotation Name QUOTDATE: type: string format: date description: Date of Price Quotation QUOTTIME: type: string maxLength: 6 description: Time of Price Quotation VALIDTO: type: string maxLength: 14 description: CPE - 'Valid To' Time Stamp of Commodity Pricing Object PRICEQUOT: type: integer format: int64 description: Price Quotation QUOTCURR: type: string maxLength: 5 description: Quotation Currency QUOTPRUN: type: integer format: int64 description: Price Unit of Quotation QUOTUOM: type: string maxLength: 3 description: Unit of Measure of Quotation NOQUOT: type: string maxLength: 1 description: No Quotation Available LOGSYS: type: string maxLength: 10 description: Logical Source System for Price Quotation SRCSYSTEMTYPE: type: string maxLength: 4 description: CPE - Source System Type ARCSTATUS: type: string maxLength: 1 description: Archiving Status '400': description: Bad request. 5XX: description: Unexpected error.