‎2008 Jun 12 7:59 AM
hi guru's,
can anyone please tell me that whether call transaction is synchronus or asynchronus? suppose i have to upload 200 record then what shud i prefer call transaction or session?
regards nitin.
‎2008 Jun 12 8:15 AM
hi,
call transaction is synchronous process because asy nchronous means running parallely 2 sessions which cant be done with call transaction.
if u have 200 records u can go with either of the methods.
i suggest u to go with session method because u can capture errors in seperate session and reprocess them.
reward if hlpful.
‎2008 Jun 12 8:07 AM
Hi,
If u have more records u can prefer session method.
Regards,
priya
‎2008 Jun 12 8:12 AM
Hi,
We generally use 'Session ' Method in BDC when there is large amount of data.
If you want to upload 200 records then 'Call Transaction' method is preferred...
Call Transaction method is Synchronous & asynchronous.
Best regards,,
Brijesh
‎2008 Jun 12 8:12 AM
1. call transaction can be synchronus as well as asynchronus bothe way depends on how u want to execute it.
E.g . CALL TRANSACTION tcode USING bdcdata
MODE cmode
MODE 'E'
UPDATE 'A' """"OR 'S'
MESSAGES INTO it_messtab.
'A' for asynchronus
'S' For synchronus
2. Go for synchronus.
regards,
Swarup
‎2008 Jun 12 8:15 AM
hi,
call transaction is synchronous process because asy nchronous means running parallely 2 sessions which cant be done with call transaction.
if u have 200 records u can go with either of the methods.
i suggest u to go with session method because u can capture errors in seperate session and reprocess them.
reward if hlpful.
‎2008 Jun 12 8:28 AM
hey saurabh,
the call transansaction method uses synchronuus processing
as well the database updation is also sychronous.
and depending on ur requirement.....u can use both of the methods...
as depends whther u want the data to be batched togather in diffrenet slots for processing,,,,go for session method....otherwise call transaction is easy nd appropriate.
do reward points if useful.