SAP ISCD_DB_BRO_STM_DELETE Function Module for Delete Broker Report
ISCD_DB_BRO_STM_DELETE is a standard iscd db bro stm delete SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Delete Broker Report 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 iscd db bro stm delete FM, simply by entering the name ISCD_DB_BRO_STM_DELETE into the relevant SAP transaction such as SE37 or SE38.
Function Group: IBR03
Program Name: SAPLIBR03
Main Program: SAPLIBR03
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISCD_DB_BRO_STM_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 'ISCD_DB_BRO_STM_DELETE'"Delete Broker Report.
EXPORTING
* I_IDENT = "
I_XREAD = "
* I_BRO_STMH = "
* I_XPOPUP_DISPL = 'X' "
IMPORTING
E_XDELETED = "
EXCEPTIONS
ERR_HEAD = 1 ERR_DEL = 2 ERR_STATUS = 3 ERR_AUTHOR = 4
IMPORTING Parameters details for ISCD_DB_BRO_STM_DELETE
I_IDENT -
Data type: STMIDENT_BROOptional: Yes
Call by Reference: Yes
I_XREAD -
Data type: BOOLE-BOOLEOptional: No
Call by Reference: Yes
I_BRO_STMH -
Data type: IBROSTMHOptional: Yes
Call by Reference: Yes
I_XPOPUP_DISPL -
Data type:Default: 'X'
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ISCD_DB_BRO_STM_DELETE
E_XDELETED -
Data type: BOOLE-BOOLEOptional: No
Call by Reference: Yes
EXCEPTIONS details
ERR_HEAD -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ERR_DEL -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ERR_STATUS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ERR_AUTHOR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISCD_DB_BRO_STM_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_i_ident | TYPE STMIDENT_BRO, " | |||
| lv_err_head | TYPE STMIDENT_BRO, " | |||
| lv_e_xdeleted | TYPE BOOLE-BOOLE, " | |||
| lv_err_del | TYPE BOOLE, " | |||
| lv_i_xread | TYPE BOOLE-BOOLE, " | |||
| lv_err_status | TYPE BOOLE, " | |||
| lv_i_bro_stmh | TYPE IBROSTMH, " | |||
| lv_err_author | TYPE IBROSTMH, " | |||
| lv_i_xpopup_displ | TYPE IBROSTMH. " 'X' |
|   CALL FUNCTION 'ISCD_DB_BRO_STM_DELETE' "Delete Broker Report |
| EXPORTING | ||
| I_IDENT | = lv_i_ident | |
| I_XREAD | = lv_i_xread | |
| I_BRO_STMH | = lv_i_bro_stmh | |
| I_XPOPUP_DISPL | = lv_i_xpopup_displ | |
| IMPORTING | ||
| E_XDELETED | = lv_e_xdeleted | |
| EXCEPTIONS | ||
| ERR_HEAD = 1 | ||
| ERR_DEL = 2 | ||
| ERR_STATUS = 3 | ||
| ERR_AUTHOR = 4 | ||
| . " ISCD_DB_BRO_STM_DELETE | ||
ABAP code using 7.40 inline data declarations to call FM ISCD_DB_BRO_STM_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.| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_e_xdeleted). | ||||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_xread). | ||||
| DATA(ld_i_xpopup_displ) | = 'X'. | |||
Search for further information about these or an SAP related objects