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

regarding background processing of the session

sreeramkumar_madisetty
Active Contributor
0 Likes
687

Hi Gurus

I have some records in my flat file.

While i am doing uploading the file using tc, in foreground it is processing correctly and no issues.

While in Background some of the records are not processing properly and in sm35 for those records I am getting the message :"InCorrect".

What may be the reasons I am not getting.

Can you please suggest me where may be the wrong exactly.

Your suggestions are highly encouragable.

Regards,

kumar

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
666

Hi,

In SM35, You can go to Analysis and see the Logs which are created. There You will find out exactly because of what reasons the session ended in Errors.

thanks,

sksingh

Hi Gurus

I have some records in my flat file.

While i am doing uploading the file using tc, in foreground it is processing correctly and no issues.

While in Background some of the records are not processing properly and in sm35 for those records I am getting the message :"InCorrect".

What may be the reasons I am not getting.

Can you please suggest me where may be the wrong exactly.

Your suggestions are highly encouragable.

Regards,

kumar

5 REPLIES 5
Read only

former_member69765
Contributor
0 Likes
666

Process the sessions in Synchronous mode.

It should solve the problem.

Read only

Former Member
0 Likes
667

Hi,

In SM35, You can go to Analysis and see the Logs which are created. There You will find out exactly because of what reasons the session ended in Errors.

thanks,

sksingh

Read only

abdul_hakim
Active Contributor
0 Likes
666

hi

Plz check the below link..

http://help.sap.com/saphelp_47x200/helpdata/en/9b/91c9c4546611d1a7020000e829fd11/frameset.htm

Cheers,

Abdul Hakim

Mark all useful answers..

Read only

Former Member
0 Likes
666

Hi Sree Ram,

This is a very common problem faced in Mass upload of data. This mainly happens if the current transaction is dependent on the previous transaction. For e.g. transaction 2 has a dependency on sucessfull processing of transaction 1.This is due to the time taken by the transaction to update the database table.

Put a commit statement after every transaction in your recording and this will ensure that the records are updated and you will not face any problem in background processing.

Regards,

Guru

Read only

sreeramkumar_madisetty
Active Contributor
0 Likes
666

Hi

It's Answered.