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

Upload Issue

Former Member
0 Likes
455

Dear all,

How to handle those records which are not updated at the time when master data is uploaded from legacy to SAP system.

Please tell me the procedure.

Regards

Vikas

1 ACCEPTED SOLUTION
Read only

abdul_hakim
Active Contributor
0 Likes
441

Hi,

Incase if you have used BDC to upload the data then you can capture the error records in error file and then later upload only these records.

Cheers,

Hakim

3 REPLIES 3
Read only

abdul_hakim
Active Contributor
0 Likes
442

Hi,

Incase if you have used BDC to upload the data then you can capture the error records in error file and then later upload only these records.

Cheers,

Hakim

Read only

Former Member
0 Likes
441

Hi,

If you are using BDC Call transaction then the errors while updating the database using call transaction

technique are trapped using a structure bdcmsgcall, whose field msgtyp become u2018eu2019 when an error record is encountered. Those records are formatted using format_message function call in the desired format and stored in an internal table for listing of all error records in one shot.

Session method will take care of the errors on its own. They can be seen in the log after the batch processing has been completed. They can then be corrected and file can be uploaded again.

If you are using LSMW method, and uploading the file from the application server then you can use the FM GUI_DOWNLOAD and you can give the path in your local drive. After the processing, error records will be downloaded to that file and they can be reprocessed again.

Regards,

Ravindra Singh

Read only

Former Member
0 Likes
441

Thanks to all for the solution.