SAP BCOM_R_ATTRIBGROUP_DELETE Function Module for
BCOM_R_ATTRIBGROUP_DELETE is a standard bcom r attribgroup 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 attribgroup delete FM, simply by entering the name BCOM_R_ATTRIBGROUP_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_ATTRIBGROUP_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_ATTRIBGROUP_DELETE'".
EXPORTING
ATTRIBUTE_ID = "Routing: Attribute ID
ATTRIBUTE_VALUE = "Routing Attribute Value
TIMESTAMP = "Routing: Time Stamp and Key
DELETE_ALL = "SAPconnect: Selection
* MEMBER_LIST = "Table: Members of an Attribute Group
SERVER = "BCOM Routing Server
EXCEPTIONS
SERVER_NOT_READY = 1 RFC_ERROR = 2
IMPORTING Parameters details for BCOM_R_ATTRIBGROUP_DELETE
ATTRIBUTE_ID - Routing: Attribute ID
Data type: SR_ATTIDOptional: No
Call by Reference: Yes
ATTRIBUTE_VALUE - Routing Attribute Value
Data type: SR_ATTVALOptional: No
Call by Reference: Yes
TIMESTAMP - Routing: Time Stamp and Key
Data type: SRTSKOptional: No
Call by Reference: Yes
DELETE_ALL - SAPconnect: Selection
Data type: SX_BOOLEANOptional: No
Call by Reference: Yes
MEMBER_LIST - Table: Members of an Attribute Group
Data type: SRMEMBERTOptional: 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_ATTRIBGROUP_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_attribute_id | TYPE SR_ATTID, " | |||
| lv_server_not_ready | TYPE SR_ATTID, " | |||
| lv_rfc_error | TYPE SR_ATTID, " | |||
| lv_attribute_value | TYPE SR_ATTVAL, " | |||
| lv_timestamp | TYPE SRTSK, " | |||
| lv_delete_all | TYPE SX_BOOLEAN, " | |||
| lv_member_list | TYPE SRMEMBERT, " | |||
| lv_server | TYPE CL_BCOM_R_SERVER. " |
|   CALL FUNCTION 'BCOM_R_ATTRIBGROUP_DELETE' " |
| EXPORTING | ||
| ATTRIBUTE_ID | = lv_attribute_id | |
| ATTRIBUTE_VALUE | = lv_attribute_value | |
| TIMESTAMP | = lv_timestamp | |
| DELETE_ALL | = lv_delete_all | |
| MEMBER_LIST | = lv_member_list | |
| SERVER | = lv_server | |
| EXCEPTIONS | ||
| SERVER_NOT_READY = 1 | ||
| RFC_ERROR = 2 | ||
| . " BCOM_R_ATTRIBGROUP_DELETE | ||
ABAP code using 7.40 inline data declarations to call FM BCOM_R_ATTRIBGROUP_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