Skip to Content
0
Jan 17, 2012 at 11:02 AM

IBAN update for vendor bank details using rfbikr00

219 Views

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