‎2008 Jan 18 8:34 AM
Can v use a single BDC prg to open multiple sessions, i.e. can v use a single BDC prg to submit the data into multiple batch input sessions?
‎2008 Jan 18 8:37 AM
Yes, we can do that. Just required differencr BDC_OPEN, BDC_INSERT & BDC_CLOSE Function calls.
Regards,
Amit
Reward all helpful replies.
‎2008 Jan 18 8:37 AM
Yes, we can do that. Just required differencr BDC_OPEN, BDC_INSERT & BDC_CLOSE Function calls.
Regards,
Amit
Reward all helpful replies.
‎2008 Jan 18 8:42 AM
multiple transaction is possible using session method.
Have one BDC_OPEN_GROUP, multiple BDC_INSERT s and one BDC_CLOSE_GROUP.
You should have multiple BDC_INSERT s for multiple transactions.
call function BDC_OPENGROUP.
Build BDC data and cal lBDC_INSERT for transaction 1
Build BDC data and cal lBDC_INSERT for transaction 2
Build BDC data and cal lBDC_INSERT for transaction 3
paas the tcodes to bdc_insert.
call function BDC_CLOSE_GROUP.
Regards,