CUSTOMIZE SAP Method Set up IBAN Entry









Below is documentation, parameters and attributes of ABAP Method CUSTOMIZE within SAP class IF_EX_BADI_IBAN_INPUT. 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_EX_BADI_IBAN_INPUT 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 CUSTOMIZE can also be found below:

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


Parameters of Method CUSTOMIZE

.

NameTypeData TypeDescriptionDefault Value
FIRST_RUNImportingTYPE
C
ACCNO_HANDLINGChangingTYPE
C
ACCNO_UNKNOWNChangingTYPE
C
IBAN_TYPEChangingTYPE
C
TABKEYChangingTYPE
TIBAN-TABKEY
IBAN origin: Key to table of bank details
TABNAMEChangingTYPE
TIBAN-TABNAME
Table Name, 16 Characters
NO_BATCH_SWIFT_SEARCHChangingTYPE
C
NO_IBAN_OVERWRITEChangingTYPE
C
NO_IBAN_REPLACEChangingTYPE
C



Exceptions of Method CUSTOMIZE

CX_SY_DYN_CALL_ILLEGAL_METHOD - System Exception for All Types of Dynamic Method Calls

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_BADI_IBAN_INPUT.
DATA: lv_ACCNO_HANDLING TYPE C,
lv_ACCNO_UNKNOWN TYPE C,
lv_FIRST_RUN TYPE C,
lv_IBAN_TYPE TYPE C,
lv_TABKEY TYPE TIBAN-TABKEY,
lv_TABNAME TYPE TIBAN-TABNAME,
lv_NO_BATCH_SWIFT_SEARCH TYPE C,
lv_NO_IBAN_OVERWRITE TYPE C,
lv_NO_IBAN_REPLACE TYPE C,
lv_other TYPE c.

CALL METHOD lo_class=>CUSTOMIZE(
EXPORTING
FIRST_RUN = lv_FIRST_RUN
CHANGING
ACCNO_HANDLING = lv_ACCNO_HANDLING
ACCNO_UNKNOWN = lv_ACCNO_UNKNOWN
IBAN_TYPE = lv_IBAN_TYPE
TABKEY = lv_TABKEY
TABNAME = lv_TABNAME
NO_BATCH_SWIFT_SEARCH = lv_NO_BATCH_SWIFT_SEARCH
NO_IBAN_OVERWRITE = lv_NO_IBAN_OVERWRITE
NO_IBAN_REPLACE = lv_NO_IBAN_REPLACE ).

Links to Related Class(s)

IF_EX_BA...
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!