openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CRM_CONTEXT_ACCESS: post: tags: - CRM_CONTEXT summary: Wrapper for the CRM Context class. operationId: /rfc/CRM_CONTEXT_ACCESS requestBody: content: application/json: schema: properties: I_ID: type: string maxLength: 255 description: Text, 255 characters I_LABEL: type: string maxLength: 20 description: Text (20 Characters) I_MODE: type: string maxLength: 40 description: Text (20 Characters) I_OBJECTTYPE: type: string maxLength: 20 description: User Name in User Master Record I_USERNAME: type: string maxLength: 12 description: User Name in User Master Record T_MAP: type: array items: type: object properties: ENTRY_KEY: type: string maxLength: 40 description: Text, 40 Characters Long ENTRY_VALUE_ID: type: string maxLength: 80 description: Text (80 Characters) ENTRY_VALUE_DESC: type: string maxLength: 175 description: Text value with up to 175 characters. required: - I_MODE - I_USERNAME responses: '200': description: OK content: application/json: schema: properties: E_ID: type: string maxLength: 255 description: Text, 255 characters E_OBJECTTYPE: type: string maxLength: 20 description: Text (20 Characters) E_TIME: type: integer format: int64 description: UTC Time Stamp in Short Form (YYYYMMDDhhmmss) T_MAP: type: array items: type: object properties: ENTRY_KEY: type: string maxLength: 40 description: Text, 40 Characters Long ENTRY_VALUE_ID: type: string maxLength: 80 description: Text (80 Characters) ENTRY_VALUE_DESC: type: string maxLength: 175 description: Text value with up to 175 characters. '400': description: Bad request. 5XX: description: Unexpected error.