SAP ISCD_BROK_SELTYP_ITEMS_CHECK Function Module for Broker Report: Reconcile Selection Categories and Values with FKKOP
ISCD_BROK_SELTYP_ITEMS_CHECK is a standard iscd brok seltyp items check SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Broker Report: Reconcile Selection Categories and Values with FKKOP 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 brok seltyp items check FM, simply by entering the name ISCD_BROK_SELTYP_ITEMS_CHECK into the relevant SAP transaction such as SE37 or SE38.
Function Group: IBR11
Program Name: SAPLIBR11
Main Program: SAPLIBR11
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISCD_BROK_SELTYP_ITEMS_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_SELTYP_ITEMS_CHECK'"Broker Report: Reconcile Selection Categories and Values with FKKOP.
EXPORTING
I_SEL = "
I_CURR = "Currency Key
I_FKKCL = "Business Partner Items in Contract Account Document
IMPORTING
E_SEL1 = "Broker Report: Correctly Converted Selection Values
E_SEL2 = "Broker Report: Correctly Converted Selection Values
E_SEL3 = "Broker Report: Correctly Converted Selection Values
E_SEL4 = "Broker Report: Correctly Converted Selection Values
E_SEL5 = "Broker Report: Correctly Converted Selection Values
EXCEPTIONS
ERR_MATCHING = 1 ERR_CONV = 2
IMPORTING Parameters details for ISCD_BROK_SELTYP_ITEMS_CHECK
I_SEL -
Data type: SI_BROSTMPOptional: No
Call by Reference: Yes
I_CURR - Currency Key
Data type: WAERSOptional: No
Call by Reference: Yes
I_FKKCL - Business Partner Items in Contract Account Document
Data type: FKKCLOptional: No
Call by Reference: Yes
EXPORTING Parameters details for ISCD_BROK_SELTYP_ITEMS_CHECK
E_SEL1 - Broker Report: Correctly Converted Selection Values
Data type: SIBRSELTYPCONVOptional: No
Call by Reference: Yes
E_SEL2 - Broker Report: Correctly Converted Selection Values
Data type: SIBRSELTYPCONVOptional: No
Call by Reference: Yes
E_SEL3 - Broker Report: Correctly Converted Selection Values
Data type: SIBRSELTYPCONVOptional: No
Call by Reference: Yes
E_SEL4 - Broker Report: Correctly Converted Selection Values
Data type: SIBRSELTYPCONVOptional: No
Call by Reference: Yes
E_SEL5 - Broker Report: Correctly Converted Selection Values
Data type: SIBRSELTYPCONVOptional: No
Call by Reference: Yes
EXCEPTIONS details
ERR_MATCHING -
Data type:Optional: No
Call by Reference: Yes
ERR_CONV -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISCD_BROK_SELTYP_ITEMS_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_sel | TYPE SI_BROSTMP, " | |||
| lv_e_sel1 | TYPE SIBRSELTYPCONV, " | |||
| lv_err_matching | TYPE SIBRSELTYPCONV, " | |||
| lv_e_sel2 | TYPE SIBRSELTYPCONV, " | |||
| lv_i_curr | TYPE WAERS, " | |||
| lv_err_conv | TYPE WAERS, " | |||
| lv_e_sel3 | TYPE SIBRSELTYPCONV, " | |||
| lv_i_fkkcl | TYPE FKKCL, " | |||
| lv_e_sel4 | TYPE SIBRSELTYPCONV, " | |||
| lv_e_sel5 | TYPE SIBRSELTYPCONV. " |
|   CALL FUNCTION 'ISCD_BROK_SELTYP_ITEMS_CHECK' "Broker Report: Reconcile Selection Categories and Values with FKKOP |
| EXPORTING | ||
| I_SEL | = lv_i_sel | |
| I_CURR | = lv_i_curr | |
| I_FKKCL | = lv_i_fkkcl | |
| IMPORTING | ||
| E_SEL1 | = lv_e_sel1 | |
| E_SEL2 | = lv_e_sel2 | |
| E_SEL3 | = lv_e_sel3 | |
| E_SEL4 | = lv_e_sel4 | |
| E_SEL5 | = lv_e_sel5 | |
| EXCEPTIONS | ||
| ERR_MATCHING = 1 | ||
| ERR_CONV = 2 | ||
| . " ISCD_BROK_SELTYP_ITEMS_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM ISCD_BROK_SELTYP_ITEMS_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.Search for further information about these or an SAP related objects