SAP ISCD_BROK_STM_CHECK Function Module for
ISCD_BROK_STM_CHECK is a standard iscd brok stm check 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 iscd brok stm check FM, simply by entering the name ISCD_BROK_STM_CHECK into the relevant SAP transaction such as SE37 or SE38.
Function Group: IBR02
Program Name: SAPLIBR02
Main Program: SAPLIBR02
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISCD_BROK_STM_CHECK 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_BROK_STM_CHECK'".
EXPORTING
I_IDENT = "Broker Report Identification
* IX_ERRORS = 'X' "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
* IX_TOTAL_DOCS = 'X' "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
* IX_CONTROLSUM = 'X' "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
* IX_NUMBERS = 'X' "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
* IX_SELITEMS = 'X' "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
* IX_FIKEY = 'X' "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
* IX_QUENTRY = 'X' "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
* IX_ACTIVITY = 'X' "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
* IX_CLARIFICATION = 'X' "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
* IX_DOCUMENTS = 'X' "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
IMPORTING
E_SIBRCHECK = "Broker Report Analysis Structure
IMPORTING Parameters details for ISCD_BROK_STM_CHECK
I_IDENT - Broker Report Identification
Data type: STMIDENT_BROOptional: No
Call by Reference: No ( called with pass by value option)
IX_ERRORS - Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
Data type: BOOLE-BOOLEDefault: 'X'
Optional: Yes
Call by Reference: Yes
IX_TOTAL_DOCS - Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
Data type: BOOLE-BOOLEDefault: 'X'
Optional: Yes
Call by Reference: Yes
IX_CONTROLSUM - Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
Data type: BOOLE-BOOLEDefault: 'X'
Optional: Yes
Call by Reference: Yes
IX_NUMBERS - Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
Data type: BOOLE-BOOLEDefault: 'X'
Optional: Yes
Call by Reference: Yes
IX_SELITEMS - Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
Data type: BOOLE-BOOLEDefault: 'X'
Optional: Yes
Call by Reference: Yes
IX_FIKEY - Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
Data type: BOOLE-BOOLEDefault: 'X'
Optional: Yes
Call by Reference: Yes
IX_QUENTRY - Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
Data type: BOOLE-BOOLEDefault: 'X'
Optional: Yes
Call by Reference: Yes
IX_ACTIVITY - Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
Data type: BOOLE-BOOLEDefault: 'X'
Optional: Yes
Call by Reference: Yes
IX_CLARIFICATION - Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
Data type: BOOLE-BOOLEDefault: 'X'
Optional: Yes
Call by Reference: Yes
IX_DOCUMENTS - Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
Data type: BOOLE-BOOLEDefault: 'X'
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ISCD_BROK_STM_CHECK
E_SIBRCHECK - Broker Report Analysis Structure
Data type: SIBRCHECKOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISCD_BROK_STM_CHECK 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_e_sibrcheck | TYPE SIBRCHECK, " | |||
| lv_ix_errors | TYPE BOOLE-BOOLE, " 'X' | |||
| lv_ix_total_docs | TYPE BOOLE-BOOLE, " 'X' | |||
| lv_ix_controlsum | TYPE BOOLE-BOOLE, " 'X' | |||
| lv_ix_numbers | TYPE BOOLE-BOOLE, " 'X' | |||
| lv_ix_selitems | TYPE BOOLE-BOOLE, " 'X' | |||
| lv_ix_fikey | TYPE BOOLE-BOOLE, " 'X' | |||
| lv_ix_quentry | TYPE BOOLE-BOOLE, " 'X' | |||
| lv_ix_activity | TYPE BOOLE-BOOLE, " 'X' | |||
| lv_ix_clarification | TYPE BOOLE-BOOLE, " 'X' | |||
| lv_ix_documents | TYPE BOOLE-BOOLE. " 'X' |
|   CALL FUNCTION 'ISCD_BROK_STM_CHECK' " |
| EXPORTING | ||
| I_IDENT | = lv_i_ident | |
| IX_ERRORS | = lv_ix_errors | |
| IX_TOTAL_DOCS | = lv_ix_total_docs | |
| IX_CONTROLSUM | = lv_ix_controlsum | |
| IX_NUMBERS | = lv_ix_numbers | |
| IX_SELITEMS | = lv_ix_selitems | |
| IX_FIKEY | = lv_ix_fikey | |
| IX_QUENTRY | = lv_ix_quentry | |
| IX_ACTIVITY | = lv_ix_activity | |
| IX_CLARIFICATION | = lv_ix_clarification | |
| IX_DOCUMENTS | = lv_ix_documents | |
| IMPORTING | ||
| E_SIBRCHECK | = lv_e_sibrcheck | |
| . " ISCD_BROK_STM_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM ISCD_BROK_STM_CHECK
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_ix_errors). | ||||
| DATA(ld_ix_errors) | = 'X'. | |||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_ix_total_docs). | ||||
| DATA(ld_ix_total_docs) | = 'X'. | |||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_ix_controlsum). | ||||
| DATA(ld_ix_controlsum) | = 'X'. | |||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_ix_numbers). | ||||
| DATA(ld_ix_numbers) | = 'X'. | |||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_ix_selitems). | ||||
| DATA(ld_ix_selitems) | = 'X'. | |||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_ix_fikey). | ||||
| DATA(ld_ix_fikey) | = 'X'. | |||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_ix_quentry). | ||||
| DATA(ld_ix_quentry) | = 'X'. | |||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_ix_activity). | ||||
| DATA(ld_ix_activity) | = 'X'. | |||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_ix_clarification). | ||||
| DATA(ld_ix_clarification) | = 'X'. | |||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_ix_documents). | ||||
| DATA(ld_ix_documents) | = 'X'. | |||
Search for further information about these or an SAP related objects