SAP /SAPSRM/DISPATCH_DOC4INDEXING Function Module for Dispatches the flow logic to a method for preparing indexing attributes.
/SAPSRM/DISPATCH_DOC4INDEXING is a standard /sapsrm/dispatch doc4indexing SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Dispatches the flow logic to a method for preparing indexing attributes. processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for /sapsrm/dispatch doc4indexing FM, simply by entering the name /SAPSRM/DISPATCH_DOC4INDEXING into the relevant SAP transaction such as SE37 or SE38.
Function Group: /SAPSRM/TREX_LL
Program Name: /SAPSRM/SAPLTREX_LL
Main Program: /SAPSRM/SAPLTREX_LL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function /SAPSRM/DISPATCH_DOC4INDEXING pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION '/SAPSRM/DISPATCH_DOC4INDEXING'"Dispatches the flow logic to a method for preparing indexing attributes..
EXPORTING
IV_OBJ_TYPE = "Object type that supports TREX indexing
IV_OBJ_NAME = "SAP object name
* IV_DEL_CONTENT = ' ' "Checkbox
* IT_GUID_LIST = "BBP GUID List
IMPORTING
ET_RETURN = "Return parameter table
EV_SUBRC = "Return Value of ABAP Statements
CHANGING
CT_DOCS = "Documents for indexing
* CT_ATTACH_DOCS = "KW Attachments Including Document
IMPORTING Parameters details for /SAPSRM/DISPATCH_DOC4INDEXING
IV_OBJ_TYPE - Object type that supports TREX indexing
Data type: /SAPSRM/IDX_OBJTYPOptional: No
Call by Reference: Yes
IV_OBJ_NAME - SAP object name
Data type: OBJNAMEOptional: No
Call by Reference: Yes
IV_DEL_CONTENT - Checkbox
Data type: XFELDDefault: SPACE
Optional: Yes
Call by Reference: Yes
IT_GUID_LIST - BBP GUID List
Data type: BBPT_GUID_LISTOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for /SAPSRM/DISPATCH_DOC4INDEXING
ET_RETURN - Return parameter table
Data type: BAPIRET2_TOptional: No
Call by Reference: Yes
EV_SUBRC - Return Value of ABAP Statements
Data type: SYSUBRCOptional: No
Call by Reference: Yes
CHANGING Parameters details for /SAPSRM/DISPATCH_DOC4INDEXING
CT_DOCS - Documents for indexing
Data type: TREXT_INDEX_DOCSOptional: No
Call by Reference: Yes
CT_ATTACH_DOCS - KW Attachments Including Document
Data type: BBPT_PD_ATT_TOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for /SAPSRM/DISPATCH_DOC4INDEXING Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_ct_docs | TYPE TREXT_INDEX_DOCS, " | |||
| lv_et_return | TYPE BAPIRET2_T, " | |||
| lv_iv_obj_type | TYPE /SAPSRM/IDX_OBJTYP, " | |||
| lv_ev_subrc | TYPE SYSUBRC, " | |||
| lv_iv_obj_name | TYPE OBJNAME, " | |||
| lv_ct_attach_docs | TYPE BBPT_PD_ATT_T, " | |||
| lv_iv_del_content | TYPE XFELD, " SPACE | |||
| lv_it_guid_list | TYPE BBPT_GUID_LIST. " |
|   CALL FUNCTION '/SAPSRM/DISPATCH_DOC4INDEXING' "Dispatches the flow logic to a method for preparing indexing attributes. |
| EXPORTING | ||
| IV_OBJ_TYPE | = lv_iv_obj_type | |
| IV_OBJ_NAME | = lv_iv_obj_name | |
| IV_DEL_CONTENT | = lv_iv_del_content | |
| IT_GUID_LIST | = lv_it_guid_list | |
| IMPORTING | ||
| ET_RETURN | = lv_et_return | |
| EV_SUBRC | = lv_ev_subrc | |
| CHANGING | ||
| CT_DOCS | = lv_ct_docs | |
| CT_ATTACH_DOCS | = lv_ct_attach_docs | |
| . " /SAPSRM/DISPATCH_DOC4INDEXING | ||
ABAP code using 7.40 inline data declarations to call FM /SAPSRM/DISPATCH_DOC4INDEXING
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| DATA(ld_iv_del_content) | = ' '. | |||
Search for further information about these or an SAP related objects