openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/COM_SE_INDEXER_REL: post: tags: - COM_SE_INDEXING summary: Read objects and transfer them to the search engine (in parallel tasks) operationId: /rfc/COM_SE_INDEXER_REL requestBody: content: application/json: schema: properties: IT_CP_ID: type: array items: type: integer format: int64 description: 'SES: Change Pointer ID' IT_RELATIONS: type: array items: type: object properties: FROM_BUSOBJ: type: string maxLength: 10 description: Business Object for Search Engine Service (SES) FROM_OBJECT_TYPE: type: string maxLength: 10 description: Type of Business Object REL_TYPE_ID: type: string maxLength: 10 description: Type of Relation FROM_OBJECT_ID: type: string maxLength: 70 description: Internal Object ID (GUID) in Search Engine Service (SES) TO_OBJECT_ID: type: string maxLength: 70 description: Internal Object ID (GUID) in Search Engine Service (SES) IT_REL_KEYS_DELETE: type: array items: type: object properties: FROM_BUSOBJ: type: string maxLength: 10 description: Business Object for Search Engine Service (SES) FROM_OBJECT_TYPE: type: string maxLength: 10 description: Type of Business Object REL_TYPE_ID: type: string maxLength: 10 description: Type of Relation FROM_OBJECT_ID: type: string maxLength: 70 description: Internal Object ID (GUID) in Search Engine Service (SES) TO_OBJECT_ID: type: string maxLength: 70 description: Internal Object ID (GUID) in Search Engine Service (SES) IV_BUSOBJ: type: string maxLength: 10 description: Business Object of IT_OBJECT_IDS IV_FEED_INDEX: type: string default: X maxLength: 1 description: X = Feed Index; ' ' = Only Read the Objects (Test Mode) IV_INDEX_ID: type: string maxLength: 64 description: Index ID in the Search Engine IV_LANGUAGE: type: string maxLength: 2 description: ISO 639 Language, if only this Language is to be indexed IV_OBJECT_TYPE: type: string maxLength: 10 description: Type of Business Object IV_RFC_DESTINATION: type: string maxLength: 32 description: RFC Destination to the Search Engine required: - IV_BUSOBJ - IV_INDEX_ID - IV_OBJECT_TYPE - IV_RFC_DESTINATION responses: '200': description: OK content: application/json: schema: properties: EV_SE_DEL_RETURN_CODE: type: integer format: int32 description: Return Code for Deletion in the Search Engine EV_SE_DEL_RETURN_TEXT: type: string maxLength: 200 description: Return Text for Deletion in the Search Engine EV_SE_DEL_RUNTIME: type: object properties: RFC_SERVER_TIME: type: integer format: int32 description: '' TREX_CLIENT_TIME: type: integer format: int32 description: '' TREX_KERNEL_TIME: type: integer format: int32 description: '' ABAP_RFC_TIME: type: integer format: int32 description: '' EV_SE_IDX_RETURN_CODE: type: integer format: int32 description: Return Code for Indexing in the Search Engine EV_SE_IDX_RETURN_TEXT: type: string maxLength: 200 description: Return Text for Indexing in the Search Engine EV_SE_IDX_RUNTIME: type: object properties: RFC_SERVER_TIME: type: integer format: int32 description: '' TREX_CLIENT_TIME: type: integer format: int32 description: '' TREX_KERNEL_TIME: type: integer format: int32 description: '' ABAP_RFC_TIME: type: integer format: int32 description: '' '400': description: Bad request. 5XX: description: Unexpected error.