SAP BCOM_R_SEARCHTABLE_DELETE Function Module for
BCOM_R_SEARCHTABLE_DELETE is a standard bcom r searchtable delete SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 bcom r searchtable delete FM, simply by entering the name BCOM_R_SEARCHTABLE_DELETE into the relevant SAP transaction such as SE37 or SE38.
Function Group: BCOM_R_RFC
Program Name: SAPLBCOM_R_RFC
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BCOM_R_SEARCHTABLE_DELETE 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 'BCOM_R_SEARCHTABLE_DELETE'".
EXPORTING
SEARCHKEY_ID = "Routing: Search Key ID
ATTRIBUTE_ID = "Routing: Attribute ID
TIMESTAMP = "Routing: Time Stamp and Key
DELETE_FLAG = "Single-Character Flag
* MEMBER_LIST = "Table: Members of an Attribute Group
* SEARCHKEY_LIST = "Table: Search Key Values
SERVER = "BCOM Routing Server
EXCEPTIONS
SERVER_NOT_READY = 1 RFC_ERROR = 2
IMPORTING Parameters details for BCOM_R_SEARCHTABLE_DELETE
SEARCHKEY_ID - Routing: Search Key ID
Data type: SR_SKIDOptional: No
Call by Reference: Yes
ATTRIBUTE_ID - Routing: Attribute ID
Data type: SR_ATTIDOptional: No
Call by Reference: Yes
TIMESTAMP - Routing: Time Stamp and Key
Data type: SRTSKOptional: No
Call by Reference: Yes
DELETE_FLAG - Single-Character Flag
Data type: CHAR1Optional: No
Call by Reference: Yes
MEMBER_LIST - Table: Members of an Attribute Group
Data type: SRMEMBERTOptional: Yes
Call by Reference: Yes
SEARCHKEY_LIST - Table: Search Key Values
Data type: SRSKVALTOptional: Yes
Call by Reference: Yes
SERVER - BCOM Routing Server
Data type: CL_BCOM_R_SERVEROptional: No
Call by Reference: Yes
EXCEPTIONS details
SERVER_NOT_READY -
Data type:Optional: No
Call by Reference: Yes
RFC_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for BCOM_R_SEARCHTABLE_DELETE 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_searchkey_id | TYPE SR_SKID, " | |||
| lv_server_not_ready | TYPE SR_SKID, " | |||
| lv_rfc_error | TYPE SR_SKID, " | |||
| lv_attribute_id | TYPE SR_ATTID, " | |||
| lv_timestamp | TYPE SRTSK, " | |||
| lv_delete_flag | TYPE CHAR1, " | |||
| lv_member_list | TYPE SRMEMBERT, " | |||
| lv_searchkey_list | TYPE SRSKVALT, " | |||
| lv_server | TYPE CL_BCOM_R_SERVER. " |
|   CALL FUNCTION 'BCOM_R_SEARCHTABLE_DELETE' " |
| EXPORTING | ||
| SEARCHKEY_ID | = lv_searchkey_id | |
| ATTRIBUTE_ID | = lv_attribute_id | |
| TIMESTAMP | = lv_timestamp | |
| DELETE_FLAG | = lv_delete_flag | |
| MEMBER_LIST | = lv_member_list | |
| SEARCHKEY_LIST | = lv_searchkey_list | |
| SERVER | = lv_server | |
| EXCEPTIONS | ||
| SERVER_NOT_READY = 1 | ||
| RFC_ERROR = 2 | ||
| . " BCOM_R_SEARCHTABLE_DELETE | ||
ABAP code using 7.40 inline data declarations to call FM BCOM_R_SEARCHTABLE_DELETE
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.Search for further information about these or an SAP related objects