SAP FEB_BSPROC_GET_OPEN_ITEMS Function Module for
FEB_BSPROC_GET_OPEN_ITEMS is a standard feb bsproc get open items 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 feb bsproc get open items FM, simply by entering the name FEB_BSPROC_GET_OPEN_ITEMS into the relevant SAP transaction such as SE37 or SE38.
Function Group: FEB_BSPROC_DECO
Program Name: SAPLFEB_BSPROC_DECO
Main Program: SAPLFEB_BSPROC_DECO
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FEB_BSPROC_GET_OPEN_ITEMS 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 'FEB_BSPROC_GET_OPEN_ITEMS'".
EXPORTING
IT_SEL = "
I_KURSF = "
IT_ACCOUNT = "
* I_AVSID = "
* I_BUDAT = SY-DATUM "
* I_BLDAT = SY-DATUM "
I_BLART = "
* I_AGUMS = "
* I_XNOPS = 'X' "
I_AWAER = "
IMPORTING
ET_POSTAB = "
E_X043 = "
TABLES
* ET_AGS = "
EXCEPTIONS
SELECTION_ERROR = 1
IMPORTING Parameters details for FEB_BSPROC_GET_OPEN_ITEMS
IT_SEL -
Data type: ANY TABLEOptional: No
Call by Reference: Yes
I_KURSF -
Data type: KURSFOptional: No
Call by Reference: Yes
IT_ACCOUNT -
Data type: ANY TABLEOptional: No
Call by Reference: Yes
I_AVSID -
Data type: AVSIDOptional: Yes
Call by Reference: Yes
I_BUDAT -
Data type: BUDATDefault: SY-DATUM
Optional: Yes
Call by Reference: Yes
I_BLDAT -
Data type: BLDATDefault: SY-DATUM
Optional: Yes
Call by Reference: Yes
I_BLART -
Data type: BLARTOptional: No
Call by Reference: Yes
I_AGUMS -
Data type: AGUMSOptional: Yes
Call by Reference: Yes
I_XNOPS -
Data type: XNOPSDefault: 'X'
Optional: Yes
Call by Reference: Yes
I_AWAER -
Data type: WAERSOptional: No
Call by Reference: Yes
EXPORTING Parameters details for FEB_BSPROC_GET_OPEN_ITEMS
ET_POSTAB -
Data type: POSTAB_TABOptional: No
Call by Reference: Yes
E_X043 -
Data type: X043Optional: No
Call by Reference: Yes
TABLES Parameters details for FEB_BSPROC_GET_OPEN_ITEMS
ET_AGS -
Data type: STANDARD TABLEOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
SELECTION_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FEB_BSPROC_GET_OPEN_ITEMS 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: | ||||
| lt_et_ags | TYPE STANDARD TABLE OF STANDARD TABLE, " | |||
| lv_it_sel | TYPE ANY TABLE, " | |||
| lv_et_postab | TYPE POSTAB_TAB, " | |||
| lv_selection_error | TYPE POSTAB_TAB, " | |||
| lv_i_kursf | TYPE KURSF, " | |||
| lv_e_x043 | TYPE X043, " | |||
| lv_it_account | TYPE ANY TABLE, " | |||
| lv_i_avsid | TYPE AVSID, " | |||
| lv_i_budat | TYPE BUDAT, " SY-DATUM | |||
| lv_i_bldat | TYPE BLDAT, " SY-DATUM | |||
| lv_i_blart | TYPE BLART, " | |||
| lv_i_agums | TYPE AGUMS, " | |||
| lv_i_xnops | TYPE XNOPS, " 'X' | |||
| lv_i_awaer | TYPE WAERS. " |
|   CALL FUNCTION 'FEB_BSPROC_GET_OPEN_ITEMS' " |
| EXPORTING | ||
| IT_SEL | = lv_it_sel | |
| I_KURSF | = lv_i_kursf | |
| IT_ACCOUNT | = lv_it_account | |
| I_AVSID | = lv_i_avsid | |
| I_BUDAT | = lv_i_budat | |
| I_BLDAT | = lv_i_bldat | |
| I_BLART | = lv_i_blart | |
| I_AGUMS | = lv_i_agums | |
| I_XNOPS | = lv_i_xnops | |
| I_AWAER | = lv_i_awaer | |
| IMPORTING | ||
| ET_POSTAB | = lv_et_postab | |
| E_X043 | = lv_e_x043 | |
| TABLES | ||
| ET_AGS | = lt_et_ags | |
| EXCEPTIONS | ||
| SELECTION_ERROR = 1 | ||
| . " FEB_BSPROC_GET_OPEN_ITEMS | ||
ABAP code using 7.40 inline data declarations to call FM FEB_BSPROC_GET_OPEN_ITEMS
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.| DATA(ld_i_budat) | = SY-DATUM. | |||
| DATA(ld_i_bldat) | = SY-DATUM. | |||
| DATA(ld_i_xnops) | = 'X'. | |||
Search for further information about these or an SAP related objects