Difference between Session Vs Call transactions?
Answer Posted / jenny
Norty_n,
call transaction method can also be processed in the
background by mentioning the mode as 'N' in the syntax below
"CALL TRANSACTION 'MM01' USING BDCDATA MODE N UPDATE A
MESSAGE INTO MESSTAB".
Below are the difference between call transaction and
session method.
Session method Call transaction
1. Transfers data for multiple 1. Transfers data for
transactions. single transaction.
2. errog log is created by 2. errors need to be
default. handles explicitly.
3. processing is slower. 3. processing is faster
4. can transfer large amount of 4. Can transfer small
data. amount of data.
5. Data is not updated until 5. data is updated
session is processed. automatically.
Thanks
Jenny
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
How do you find number of records present in internal table?
what is the difference between Blocked ALV and interactive ALV?
how do you transport lsmw data from one system to another?
How do you write transaction programs in sap?
Which transaction code can I use to analyze the performance of abap program?
What are internal tables? : abap hr
What is a multiple line field? : abap bdc
Does the call transaction method allow multiple transactions to be processed by sap?
What is a modification assistant?
What are the events in ABAP language?
In a loop of an internal table, what is the use of at first & at last statements?
What are the different buffering methods?
What is a sequence of event-triggered in report?
What is get cursor field?
Explain buffering concept usage?