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

how to handile errors in batch input(session)method

Former Member
0 Likes
431

Hi Friends..

How to <b>Re upload the error records</b> in batch input(session)method in BDC Programming?

Regards

D Babu

2 REPLIES 2
Read only

Former Member
0 Likes
287

They're already there - use transaction SM35 to process them.

Rob

Read only

Former Member
0 Likes
287

Hi

U can do it manually by SM35: the wrong trxs can be run again.

If you want to do automatically I don't think you can do it easyly, because to know if a record was loaded successfully depends on how you have loaded it and your data source .

For example:

if the records have to be loaded are from a file and every record is a trx, you could re-read the file and match it with session log:

Log--


Result--


Record file

Trx 1 OK 1

Trx 2 OK 2

Trx 3 KO 3 (Re-load it)

Trx 4 OK 4

Trx 5 KO 5 (Re-load it)

Trx 6 OK 6

........................................

How to read session log see trx sm35

Max