Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

difference between call transaction and session method

Former Member
0 Likes
412

Hello Experts.

i have one doubt.

suppose if we have 100 records to upload, and we got an error in 55 record. In this case what will call trans will do and what will session will do.

i mean the call trans will process 56th record or not . will it stop at 55 itself. What will session will do in this case.

thank you so much for all the replies.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
388

Hi shiva,

In the Call transaction Method,

It will process all the records if the Update Mode is 'N', it will store all the error messages in BDCMSGCOLL structure. The errored records would be stored in that structure.

In Session Method,

It stops in the 55th error record, it wont move further.

Edited by: Raj on May 21, 2008 9:23 PM

2 REPLIES 2
Read only

Former Member
0 Likes
389

Hi shiva,

In the Call transaction Method,

It will process all the records if the Update Mode is 'N', it will store all the error messages in BDCMSGCOLL structure. The errored records would be stored in that structure.

In Session Method,

It stops in the 55th error record, it wont move further.

Edited by: Raj on May 21, 2008 9:23 PM

Read only

Former Member
0 Likes
388

hi the call transaction will upload the remaining data and the session will stop at the level 55 ...if call transaction can be called in the synchronous or asynchronous..if this is asynchronous then it process remaining records or if this is synchronous then it will stop at the 55 th record.