SAP ISCD_BROK_OPEN_ITEM_FOR_STMS Function Module for









ISCD_BROK_OPEN_ITEM_FOR_STMS is a standard iscd brok open item for stms 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 open item for stms FM, simply by entering the name ISCD_BROK_OPEN_ITEM_FOR_STMS into the relevant SAP transaction such as SE37 or SE38.

Function Group: IBR09
Program Name: SAPLIBR09
Main Program: SAPLIBR09
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ISCD_BROK_OPEN_ITEM_FOR_STMS 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_OPEN_ITEM_FOR_STMS'"
EXPORTING
IS_IBROSTMH = "ISCD: Broker Report - Header Data
IS_IBROSTMP = "ISCD: Broker Report - Item Data
* I_XENQUEUE = '' "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
* I_XCONVERT_CURRENCY = 'X' "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
* I_XCONVERT_EURO = '' "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
* I_XSET_AUGBW = ' ' "
* IS_LATEPAY = "Interface for Determining Surcharges on Payment

TABLES
IT_IBROSTMS = "ISCD: Broker Report - Selected Items Related to an Item
ET_FKKCL = "Clearing Items for Document in Contract Accounts Receivable and Payable
* ET_ENQUEUE = "Block key return interface

EXCEPTIONS
ERR_PARAM = 1 ERR_ENQUEUE = 2 ERR_SELECT = 3
.



IMPORTING Parameters details for ISCD_BROK_OPEN_ITEM_FOR_STMS

IS_IBROSTMH - ISCD: Broker Report - Header Data

Data type: IBROSTMH
Optional: No
Call by Reference: No ( called with pass by value option)

IS_IBROSTMP - ISCD: Broker Report - Item Data

Data type: IBROSTMP
Optional: No
Call by Reference: No ( called with pass by value option)

I_XENQUEUE - Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')

Data type: BOOLE-BOOLE
Default: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_XCONVERT_CURRENCY - Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')

Data type: BOOLE-BOOLE
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_XCONVERT_EURO - Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')

Data type: BOOLE-BOOLE
Default: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_XSET_AUGBW -

Data type: BOOLE-BOOLE
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

IS_LATEPAY - Interface for Determining Surcharges on Payment

Data type: FKK_LATE_PAY
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for ISCD_BROK_OPEN_ITEM_FOR_STMS

IT_IBROSTMS - ISCD: Broker Report - Selected Items Related to an Item

Data type: IBROSTMS
Optional: No
Call by Reference: Yes

ET_FKKCL - Clearing Items for Document in Contract Accounts Receivable and Payable

Data type: FKKCL
Optional: No
Call by Reference: Yes

ET_ENQUEUE - Block key return interface

Data type: IENQTAB
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

ERR_PARAM - Parameter Error

Data type:
Optional: No
Call by Reference: Yes

ERR_ENQUEUE - Lock Problem

Data type:
Optional: No
Call by Reference: Yes

ERR_SELECT -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ISCD_BROK_OPEN_ITEM_FOR_STMS 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_err_param  TYPE STRING, "   
lv_is_ibrostmh  TYPE IBROSTMH, "   
lt_it_ibrostms  TYPE STANDARD TABLE OF IBROSTMS, "   
lt_et_fkkcl  TYPE STANDARD TABLE OF FKKCL, "   
lv_err_enqueue  TYPE FKKCL, "   
lv_is_ibrostmp  TYPE IBROSTMP, "   
lv_err_select  TYPE IBROSTMP, "   
lt_et_enqueue  TYPE STANDARD TABLE OF IENQTAB, "   
lv_i_xenqueue  TYPE BOOLE-BOOLE, "   ''
lv_i_xconvert_currency  TYPE BOOLE-BOOLE, "   'X'
lv_i_xconvert_euro  TYPE BOOLE-BOOLE, "   ''
lv_i_xset_augbw  TYPE BOOLE-BOOLE, "   SPACE
lv_is_latepay  TYPE FKK_LATE_PAY. "   

  CALL FUNCTION 'ISCD_BROK_OPEN_ITEM_FOR_STMS'  "
    EXPORTING
         IS_IBROSTMH = lv_is_ibrostmh
         IS_IBROSTMP = lv_is_ibrostmp
         I_XENQUEUE = lv_i_xenqueue
         I_XCONVERT_CURRENCY = lv_i_xconvert_currency
         I_XCONVERT_EURO = lv_i_xconvert_euro
         I_XSET_AUGBW = lv_i_xset_augbw
         IS_LATEPAY = lv_is_latepay
    TABLES
         IT_IBROSTMS = lt_it_ibrostms
         ET_FKKCL = lt_et_fkkcl
         ET_ENQUEUE = lt_et_enqueue
    EXCEPTIONS
        ERR_PARAM = 1
        ERR_ENQUEUE = 2
        ERR_SELECT = 3
. " ISCD_BROK_OPEN_ITEM_FOR_STMS




ABAP code using 7.40 inline data declarations to call FM ISCD_BROK_OPEN_ITEM_FOR_STMS

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_i_xenqueue).
DATA(ld_i_xenqueue) = ''.
 
"SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_xconvert_currency).
DATA(ld_i_xconvert_currency) = 'X'.
 
"SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_xconvert_euro).
DATA(ld_i_xconvert_euro) = ''.
 
"SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_xset_augbw).
DATA(ld_i_xset_augbw) = ' '.
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!