Among the Call Transaction and Session Method, which is faster?
Answers were Sorted based on User's Feedback
Answer / lokesh
Call Transaction is faster than session method because
while updating data into database call transcation does not
check the updation but it check the success of the
transaction only . where as Session method ,check the
updation of the data into database and also success of the
transaction. That's the reason call transaction is faster
than Session method.
In call transaction Synchronous updation is Optional.
If u wnat to send data & update the data at different times
& want to update data synchronously then need a automatic
error log, then we go for Session method . It is slow.
if call transaction the data that is received will be
updated at the same time.
Is This Answer Correct ? | 7 Yes | 2 No |
Answer / guest
Call transaction is faster then session method. But usually
we use session method in real time...because we can transfer
large amount of data from internal table to database and if
any errors in a session. Process will not complete until
session get correct.
Is This Answer Correct ? | 7 Yes | 3 No |
Answer / madhavav reddy vacada
call transaction is faster because,it does not wait for the
return values while updating data into the database,that
means process is faster,where as session,it waits for
return values that means it processes record by record,so
it will not update the record until unless current record
is processed,i.e reason session is become slow than call
trasaction.
Is This Answer Correct ? | 4 Yes | 0 No |
What is repository info. Systems? : abap data dictionary
What is smart forms? : abap hr
what comes in Timkein written test I hope some body can tell me at this id plz tell it before 9 pm 19 march
how to use table control in bdc
Setting up a BDC program where you find information from?
loop at itab. IF <cond>. Continue. Endif. Endloop. If continue triggers what will happen, it comes out of loop and endloop for further loop pass or just comes out of IF and Endif.
If there are 100 records...explain the BDC session method step by step how you gonna do ?
What is the t-code to display batch input sessions? : abap bdc
Explain the Inportance of pa30? : abap hr
How many fields(max) can be there in a transparent table?
2 Answers iGate, Unilogic Software,
how can i fetch the records of 3 tables with a single select query,without using join.
12 Answers CTS, IBM,
Some Realtime Objects on Bdc.