Application Development and Automation 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: 
Read only

BDC-Call transaction

Former Member
0 Likes
317

Hi All,

Am Updating the acceptance date and signed date tcode va42 through the call transaction method. but it is updating only one date .when i execute it second time it is updating the another date. am not able to find the error .

Please advice.

Thanks&Regards.

Ramu.

Hi All,

Am Updating the acceptance date and signed date tcode va42 through the call transaction method. but it is updating only one date .when i execute it second time it is updating the another date. am not able to find the error .

Please advice.

Thanks&Regards.

Ramu.

1 REPLY 1
Read only

Former Member
0 Likes
288

Loop at itab.

<b>refresh :it_bdcdata</b>

-


-


CALL TRANSACTION 'VA42' USING it_bdcdata

MODE lv_mode

UPDATE lv_upd

MESSAGES INTO it_messtab.

<b> IF sy-subrc = 0.

COMMIT WORK.

ELSE.

ROLLBACK WORK.

ENDIF.</b>

PERFORM capture_messages.

ENDLOOP.

Follow d similar procedure....

Ramesh.