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

error during upload ?

Former Member
0 Likes
723

hi friends...

After running a BDC program in background, next day morning when you see the results, few records are not updated(error records). What will you do then?

like this i faced one question...

whether once again upload the error record or is there any ways without re upload?

kindly guide me

1 ACCEPTED SOLUTION
Read only

former_member195383
Active Contributor
0 Likes
694

It is always advisable to make use of validations...before calling the transaction that updates the database......In that way u will only be sending correct entries , while calling the transaction.....

U can make use of the same validations..that are raising the error inside the transaction, in the BDC program b4 calling the transaction.

In the present scenario..u can just reupload the error entries..

Reward points if useful...

reagrds

Rudra

6 REPLIES 6
Read only

Former Member
0 Likes
694

Hi,

You have to upload the error records by changing the error values.

thanks and regards.

Read only

former_member156446
Active Contributor
0 Likes
694

it depends on what type of process it is.. but generally we trend to reprocess it...

Read only

former_member195383
Active Contributor
0 Likes
695

It is always advisable to make use of validations...before calling the transaction that updates the database......In that way u will only be sending correct entries , while calling the transaction.....

U can make use of the same validations..that are raising the error inside the transaction, in the BDC program b4 calling the transaction.

In the present scenario..u can just reupload the error entries..

Reward points if useful...

reagrds

Rudra

Read only

Former Member
0 Likes
694

HI.

If error record are very less just update them manually reather than writing code. In case if they are more modify the errors in transaction and then modify the program according to errror records only.

PLZ award points if helpful.

Regards.

Read only

vinod_vemuru2
Active Contributor
0 Likes
694

Hi Deva,

If ur program is using call transaction method then there is no way other than reuploading the error records(After correcting the data!)

If u r using session method then based on number of error records u can take the action. If u have few error records then u can directly reprocess the error records(By manually correcting the data in the transaction). If error records are more then its good idea to reupload by correcting the file.

Thanks,

Vinod.

Read only

Former Member
0 Likes
694

solved