‎2008 Feb 09 11:22 AM
Hi,
Can we handle two transaction codes in the same program using CALL TRANSACTION bdc input method?
Thnaks in advace
swathi
‎2008 Feb 09 11:48 AM
If the problem is can i use result of first call in second call, use
DATA: itab of the type BDCMSGCOLL.
CALL TRANSACTION bla bla bla ...MESSAGES INTO itab.then use data from itab to build the second CALL.
If the problem, is related to errors management
the problem arise when first call succeeds and second fails, you lay have to reverse the first successful call if necessary, cause the CALL TRANSACTION use a COMMIT WORK in its own LUW.
Two BAPI call can share the same LUW and use only one commit, not two CALL TRANSACTION
Regards