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

Batch input session

Former Member
0 Likes
689

what will happen when system crashes in middle of Bi session

and also in call ransaction please let me know

1 ACCEPTED SOLUTION
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
666

Hi,

For some theoritical knowledge about this there is a concept called check points in Relation database, you can go through that.

the bdc session method is always synchronous, so the process will get rolled back.

Im not sure about the asynchronous mode in call transaction.

Wait for experts opinion.

3 REPLIES 3
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
667

Hi,

For some theoritical knowledge about this there is a concept called check points in Relation database, you can go through that.

the bdc session method is always synchronous, so the process will get rolled back.

Im not sure about the asynchronous mode in call transaction.

Wait for experts opinion.

Read only

Former Member
0 Likes
666

Farha, I dont know what is a "Bi" session.

But if the system crashes in between a BDC session, the effect will be similar to what will happen when a user is doing the transaction online.

When the transaction to which the BDC is done, does a commit action, the BDC will end. Before the commit if the system crashes then your BDC data will not be updated in the system. If the system crashes after the commit is completed, then your data will be updated.

Standard SAP transactions make updates in subroutines or functions "on update task". So, an update task is created. But the data is not updated in the system. You can see the update tasks in SM13. Once the transaction issues a "Commit" statement, all the update tasks are executed. If the system crashes during this process, the update tasks will show as failed in sm13. Basis or support team need to re-execute those tasks manually to complete the data update.

Salai.

Read only

0 Likes
666

Hi Sivaprakash,

What about the asynchronous mode in CTU method ?

Thanks,

Keshav