‎2007 Nov 27 7:11 PM
Hi Friends,
can any one send me the code(in session bdc method) for multiple t.codes.
regards,
‎2007 Nov 27 7:16 PM
You can follow this pattern:
CALL FM OPEN_GROUP
LOOP AT ITAB.
CALL FM INSERT_GROUP FOR TCODE 1
CALL FM INSERT_GROUP FOR TCODE 2
ENDLOOP.
CALL FM CLOSE_GROUPRegards,
Naimesh Patel
‎2007 Nov 27 7:24 PM
I would create two sessions, so that different users could correct the errors for different transactions.
Rob
‎2007 Nov 27 7:22 PM
Hi,
just use BDC_INSERT functional module in one session program N number of times, so that we can call multiple transactions in one BDC program
call function ' BDC_Insert'
exporting
tr. code = ' enter tr.code1 here'
table = 'give an internal table related totr.code1 here'
call function 'BDC_INSERT'
exporting
tr.code = ' enter 2nd tr code'
tables = ' 2nd internal table'
like above follow any no. of calls for every tr code
regards,
Maha