SAP FEB_IMP_SAVE_BANK_STMNT_MT940 Function Module for
FEB_IMP_SAVE_BANK_STMNT_MT940 is a standard feb imp save bank stmnt mt940 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 imp save bank stmnt mt940 FM, simply by entering the name FEB_IMP_SAVE_BANK_STMNT_MT940 into the relevant SAP transaction such as SE37 or SE38.
Function Group: FEB_IMP_FILE_HANDLING
Program Name: SAPLFEB_IMP_FILE_HANDLING
Main Program: SAPLFEB_IMP_FILE_HANDLING
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FEB_IMP_SAVE_BANK_STMNT_MT940 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_IMP_SAVE_BANK_STMNT_MT940'".
EXPORTING
IV_FORMAT = "
IV_ANWND = "
IT_BANK_STATEMENT = "
IMPORTING
ET_S_KUKEY = "
EV_VGEXT_OK = "
ET_NOTT028G = "
ET_MANSP = "
ET_BAPIRET = "
IMPORTING Parameters details for FEB_IMP_SAVE_BANK_STMNT_MT940
IV_FORMAT -
Data type: FEB_FORMATOptional: No
Call by Reference: Yes
IV_ANWND -
Data type: FEBKO-ANWNDOptional: No
Call by Reference: Yes
IT_BANK_STATEMENT -
Data type: FEBY_CONTENTOptional: No
Call by Reference: Yes
EXPORTING Parameters details for FEB_IMP_SAVE_BANK_STMNT_MT940
ET_S_KUKEY -
Data type: FEBY_RANGE_KUKEYOptional: No
Call by Reference: Yes
EV_VGEXT_OK -
Data type: CHAR1Optional: No
Call by Reference: Yes
ET_NOTT028G -
Data type: FEBY_NOTT028GOptional: No
Call by Reference: Yes
ET_MANSP -
Data type: FEBY_MANSPOptional: No
Call by Reference: Yes
ET_BAPIRET -
Data type: BAPIRETTABOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FEB_IMP_SAVE_BANK_STMNT_MT940 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_iv_format | TYPE FEB_FORMAT, " | |||
| lv_et_s_kukey | TYPE FEBY_RANGE_KUKEY, " | |||
| lv_iv_anwnd | TYPE FEBKO-ANWND, " | |||
| lv_ev_vgext_ok | TYPE CHAR1, " | |||
| lv_et_nott028g | TYPE FEBY_NOTT028G, " | |||
| lv_it_bank_statement | TYPE FEBY_CONTENT, " | |||
| lv_et_mansp | TYPE FEBY_MANSP, " | |||
| lv_et_bapiret | TYPE BAPIRETTAB. " |
|   CALL FUNCTION 'FEB_IMP_SAVE_BANK_STMNT_MT940' " |
| EXPORTING | ||
| IV_FORMAT | = lv_iv_format | |
| IV_ANWND | = lv_iv_anwnd | |
| IT_BANK_STATEMENT | = lv_it_bank_statement | |
| IMPORTING | ||
| ET_S_KUKEY | = lv_et_s_kukey | |
| EV_VGEXT_OK | = lv_ev_vgext_ok | |
| ET_NOTT028G | = lv_et_nott028g | |
| ET_MANSP | = lv_et_mansp | |
| ET_BAPIRET | = lv_et_bapiret | |
| . " FEB_IMP_SAVE_BANK_STMNT_MT940 | ||
ABAP code using 7.40 inline data declarations to call FM FEB_IMP_SAVE_BANK_STMNT_MT940
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 ANWND FROM FEBKO INTO @DATA(ld_iv_anwnd). | ||||
Search for further information about these or an SAP related objects