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 update for vendor bank details using rfbikr00

former_member212002
Active Contributor
0 Kudos
415

Hello,

I am trying to update the IBAN details of vendor using standard upload program rfbikr00.While doing the same, the IBAN is not updated to the corresponding bank details line, rather it is creating a new line with IBAN only.

I am using the below code for the IBAN update


* IBAN Details.
    PERFORM clear_structure CHANGING s_blfbk_iban.
    MOVE-CORRESPONDING s_blfbk TO s_blfbk_iban.
    s_blfbk_iban-stype = '2'.
    s_blfbk_iban-tbnam = 'BLFBK_IBAN'.
    s_blfbk_iban-iban  = t_input_data-iban.
    MOVE s_blfbk_iban TO t_output_data.

Can anybody point some inputs, why a new line is created for the IBAN?

Any kind of help wil be appreciated.

Thanks

Mishra

1 ACCEPTED SOLUTION

kiran_k8
Active Contributor
0 Kudos
196

Did you tried using 'BAPI_IBAN_CHANGE' and 'BAPI_IBAN_CREATE' ?

Thanks,

K.Kiran.

1 REPLY 1

kiran_k8
Active Contributor
0 Kudos
197

Did you tried using 'BAPI_IBAN_CHANGE' and 'BAPI_IBAN_CREATE' ?

Thanks,

K.Kiran.