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 imput session.

Former Member
0 Likes
368

Hi.

I was running a Batch imput session.

And suddenly my system crashed in the middle of a BDC batch session?

What shall I do now?

Thank You

2 REPLIES 2
Read only

Former Member
0 Likes
341

Hi

You only have to re-run your BDC session: the system doesn't run the same trx twice.

Max

Read only

Former Member
0 Likes
341

Hi,

You can rerun the Session again, so whatever there the records which already processed will come as error records because those were already existed, you can know by seeing the error description of the records or you can delete the records by username or the Date of the records and reprocess the records,

To eliminate this type of problems you need to use perform <Name> on commitwork

<b>example:</b>

PERFORM n ON COMMIT

Executes the specified subroutine when a COMMIT WORK occurs. This allows you to execute a subroutine only if the logical transaction has ended successfully. The subroutine is not executed until the key word COMMIT WORK is called. FORMs specified several times are executed only once on COMMIT WORK...

If you call <b>ROLLBACK WORK</b> , you delete all the specified routines...

Regards

Sudheer