openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CPE_TERMTYPEFLD_READ_CB: post: tags: - CPE_TERMTYPEFLD_CB summary: CPE_C - Quotation Source - Read Customizing Buffer operationId: /rfc/CPE_TERMTYPEFLD_READ_CB requestBody: content: application/json: schema: properties: IV_APPLICATION: type: string maxLength: 4 description: CPE Caller - Application using CPE IV_FIELDNAME: type: string maxLength: 30 description: Field Name IV_LOGSYS: type: string maxLength: 10 description: Logical system IV_NO_BUFFER: type: string default: ' ' maxLength: 1 description: Single-character flag IV_TERMTYPE: type: integer format: int64 description: CPE Term - Term Calculation Type required: - IV_APPLICATION - IV_FIELDNAME - IV_LOGSYS - IV_NO_BUFFER - IV_TERMTYPE responses: '200': description: OK content: application/json: schema: properties: ES_TERMTYPEFLD: type: object properties: CLIENT: type: string maxLength: 3 description: Client LOGSYS: type: string maxLength: 10 description: Logical system APPLICATION: type: string maxLength: 4 description: 'CPE Caller - Application using CPE enumValues: M=ERP Materials Management,CRM=Customer Relationship Management,V=ERP Sales and Distribution' enum: - M - CRM - V TERMTYPE: type: integer format: int64 description: CPE Term - Term Calculation Type FIELDNAME: type: string maxLength: 30 description: Field Name FIELDMODE: type: string maxLength: 1 description: 'CPE - Mode of Field on User Interface enumValues: 2=Must (open for input),3=Displayed,4=Invisible,1=Optional (open for input)' enum: - '2' - '3' - '4' - '1' '400': description: Bad request. 5XX: description: Unexpected error.