Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

IBAN fields into E1LFBKM structure SAP 5.0

0 Kudos
349

Hi Experts.

I am working an interface development with SAP 5.0 for update bank data for vendors, data are sent from Legacy to SAP. I am using FM IDOC_INPUT_CREDITOR, and it works excellent. But for European vendors, I need to update IBAN data.

IBAN data exist into XK02 dynpro, but doesn´t exist into E1LFBKM structure. Next fields don´t exist:

IBAN_BANKS
IBAN_BANKL
IBAN_BIC
IBAN

Is there some SAP Note or something (any enhancement) for upgrade E1LFBKM?.

Thank´s in advanced.

Best regards.

1 ACCEPTED SOLUTION

Former Member
0 Kudos
140

Please explore the FM BAPI_IBAN_CHANGE.

4 REPLIES 4

Former Member
0 Kudos
141

Please explore the FM BAPI_IBAN_CHANGE.

0 Kudos
140

Thanks Shambu.

I can see BAPI_IBAN_CHANGE, but, how can I link IBAN code with LIFNR for associate Vendor with EBAN?.

Regards.

0 Kudos
140

Hi Jorge,

You have the fields BANKS, BANKL from IDOC right?

You can pass these fields to the BAPI and update the relevant fields

CALL FUNCTION 'BAPI_IBAN_CHANGE' "Change IBAN

  EXPORTING

    bankcountry =               " bapi1013_key-bank_ctry  Bank Country Key

    bankkey =                   " bapi1013_key-bank_key  Bank Key

    bankaccountnumber =         " bapi1013_key-bank_acct  Bank Account Number

    bankcontrolkey =            " bapi1013_key-ctrl_key  Bank Control Key

    detail =                    " bapi1013_detail  Transfer Structure for Object 1013: IBAN Detail

    detailx =                   " bapi1013_detailx  Change Information on IBAN - Detail

  IMPORTING

    return =                    " bapiret2      Return Parameter

    .  "  BAPI_IBAN_CHANGE

0 Kudos
140

It works. Thank you Shambu.

Best Regards.