MAPP_BANK_STATEMENT SAP Method Map Bank Statement to FEBxx Structures









Below is documentation, parameters and attributes of ABAP Method MAPP_BANK_STATEMENT within SAP class IF_FIEB_MAPPING_X. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_FIEB_MAPPING_X into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

The following technical details of method MAPP_BANK_STATEMENT can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method MAPP_BANK_STATEMENT

.

NameTypeData TypeDescriptionDefault Value
IV_FILTER_VALImportingTYPE
BADI_FILTER_VAL
BAdI Filter Value
I_STRINGImportingTYPE
STRING
Content of Bank Statement File
ET_BAPIRETExportingTYPE
BAPIRETTAB
Table with BAPI Return Information (Error Messages)
CT_ACCT_STATEMENTChangingTYPE
TTY_FEB_STATEMENT
Structured Bank Statements in ISO 20022 Format



Exceptions of Method MAPP_BANK_STATEMENT

ET_BAPIRETExportingTYPE
BAPIRETTABTable with BAPI Return Information (Error Messages)NOT_POSSIBLE - Mapping not Possible

Example ABAP coding


DATA: lo_class TYPE REF TO IF_FIEB_MAPPING_X.
DATA: lv_CT_ACCT_STATEMENT TYPE TTY_FEB_STATEMENT,
lv_ET_BAPIRET TYPE BAPIRETTAB,
lv_IV_FILTER_VAL TYPE BADI_FILTER_VAL,
lv_I_STRING TYPE STRING,
lv_other TYPE c.

CALL METHOD lo_class=>MAPP_BANK_STATEMENT(
EXPORTING
IV_FILTER_VAL = lv_IV_FILTER_VAL
I_STRING = lv_I_STRING
IMPORTING
ET_BAPIRET = lv_ET_BAPIRET
CHANGING
CT_ACCT_STATEMENT = lv_CT_ACCT_STATEMENT ).

Links to Related Class(s)

IF_FIEB_...
Full list of available SAP object classes

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!