SAP FIEB_SAVE_INTRADAY_STMT Function Module for
FIEB_SAVE_INTRADAY_STMT is a standard fieb save intraday stmt 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 fieb save intraday stmt FM, simply by entering the name FIEB_SAVE_INTRADAY_STMT into the relevant SAP transaction such as SE37 or SE38.
Function Group: EB_STMT
Program Name: SAPLEB_STMT
Main Program: SAPLEB_STMT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FIEB_SAVE_INTRADAY_STMT 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 'FIEB_SAVE_INTRADAY_STMT'".
EXPORTING
FEBKO_IF = "
* IX_SIMULATION = '-' "
* IV_ANWND = '0004' "
IMPORTING
STMT_KEY = "
E_VGEXT_OK = "
TABLES
FEBEP_IF = "
FEBRE_IF = "
FEBCL_IF = "
ET_BAPIRET = "
ET_NOTT028G = "
EXCEPTIONS
INPUT_WRONG = 1 ERROR = 2
IMPORTING Parameters details for FIEB_SAVE_INTRADAY_STMT
FEBKO_IF -
Data type: FEBKO_IFOptional: No
Call by Reference: Yes
IX_SIMULATION -
Data type: BOOLEANDefault: '-'
Optional: Yes
Call by Reference: Yes
IV_ANWND -
Data type: FEBKO-ANWNDDefault: '0004'
Optional: No
Call by Reference: Yes
EXPORTING Parameters details for FIEB_SAVE_INTRADAY_STMT
STMT_KEY -
Data type: KUKEY_EBOptional: No
Call by Reference: Yes
E_VGEXT_OK -
Data type: COptional: No
Call by Reference: Yes
TABLES Parameters details for FIEB_SAVE_INTRADAY_STMT
FEBEP_IF -
Data type: FEBEP_IFOptional: No
Call by Reference: No ( called with pass by value option)
FEBRE_IF -
Data type: FEBRE_IFOptional: No
Call by Reference: No ( called with pass by value option)
FEBCL_IF -
Data type: FEBCL_IFOptional: No
Call by Reference: No ( called with pass by value option)
ET_BAPIRET -
Data type: BAPIRET2Optional: No
Call by Reference: No ( called with pass by value option)
ET_NOTT028G -
Data type: FIEB_NOTT028GOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
INPUT_WRONG -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FIEB_SAVE_INTRADAY_STMT 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_febep_if | TYPE STANDARD TABLE OF FEBEP_IF, " | |||
| lv_febko_if | TYPE FEBKO_IF, " | |||
| lv_stmt_key | TYPE KUKEY_EB, " | |||
| lv_input_wrong | TYPE KUKEY_EB, " | |||
| lv_error | TYPE KUKEY_EB, " | |||
| lt_febre_if | TYPE STANDARD TABLE OF FEBRE_IF, " | |||
| lv_e_vgext_ok | TYPE C, " | |||
| lv_ix_simulation | TYPE BOOLEAN, " '-' | |||
| lt_febcl_if | TYPE STANDARD TABLE OF FEBCL_IF, " | |||
| lv_iv_anwnd | TYPE FEBKO-ANWND, " '0004' | |||
| lt_et_bapiret | TYPE STANDARD TABLE OF BAPIRET2, " | |||
| lt_et_nott028g | TYPE STANDARD TABLE OF FIEB_NOTT028G. " |
|   CALL FUNCTION 'FIEB_SAVE_INTRADAY_STMT' " |
| EXPORTING | ||
| FEBKO_IF | = lv_febko_if | |
| IX_SIMULATION | = lv_ix_simulation | |
| IV_ANWND | = lv_iv_anwnd | |
| IMPORTING | ||
| STMT_KEY | = lv_stmt_key | |
| E_VGEXT_OK | = lv_e_vgext_ok | |
| TABLES | ||
| FEBEP_IF | = lt_febep_if | |
| FEBRE_IF | = lt_febre_if | |
| FEBCL_IF | = lt_febcl_if | |
| ET_BAPIRET | = lt_et_bapiret | |
| ET_NOTT028G | = lt_et_nott028g | |
| EXCEPTIONS | ||
| INPUT_WRONG = 1 | ||
| ERROR = 2 | ||
| . " FIEB_SAVE_INTRADAY_STMT | ||
ABAP code using 7.40 inline data declarations to call FM FIEB_SAVE_INTRADAY_STMT
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_ix_simulation) | = '-'. | |||
| "SELECT single ANWND FROM FEBKO INTO @DATA(ld_iv_anwnd). | ||||
| DATA(ld_iv_anwnd) | = '0004'. | |||
Search for further information about these or an SAP related objects