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

Problem in session method

Former Member
0 Likes
264

Hi All,

when a session is in process,if the system suddenly crashes in between.Then what we have to do.Again we need to process the same session or we have to check if any records are updated or not? How to proceed further?

Can anybody explain me what are the difficult situation we may come across in bdc both in call transaction and session methods.

Thanks,

Rakesh.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
250

You can reprocess the same session without any problem. The session knows what transactions are posted and will only handle the incorrect ones or the ones that were not yet picked up.

In a call transaction, you will have to find out manually what was done and what was not yet done. Build a new file, rerun your program.

1 REPLY 1
Read only

Former Member
0 Likes
251

You can reprocess the same session without any problem. The session knows what transactions are posted and will only handle the incorrect ones or the ones that were not yet picked up.

In a call transaction, you will have to find out manually what was done and what was not yet done. Build a new file, rerun your program.