‎2007 Aug 31 10:09 AM
Hi
Think through call transaction i have uploaded 500 records, after that we found that between 300 and 400 records are not properly uploaded
Can any body tell me how to approach the problem and resolve it.
kris
‎2007 Aug 31 10:16 AM
Hi Narendra..
Generally in Call transaction method to Handle the errors:
Check the SY-SUBRC after each CALL TRANSACTION and if it is not 0 then Store the Transaction in Session (call fm 'BDC_INSERT') .
So all the Error Transactions are stored in Session.
Process this Session in foreground mode and fix the Errors.
<b>reward if Helpful</b>
‎2007 Aug 31 10:16 AM
Hi Narendra..
Generally in Call transaction method to Handle the errors:
Check the SY-SUBRC after each CALL TRANSACTION and if it is not 0 then Store the Transaction in Session (call fm 'BDC_INSERT') .
So all the Error Transactions are stored in Session.
Process this Session in foreground mode and fix the Errors.
<b>reward if Helpful</b>
‎2007 Aug 31 10:21 AM
create an internal table with structure of BDCMSGCOLL. and collect the error records into this internal table.once u get the records u can upload it manually or use session metod to upload.
reward points for useful answers.
‎2007 Aug 31 10:22 AM
Hi,
You need to get the error records in to a session then upload them from the session in the Error screen mode, then it will stop every where and enter the correct value then press enter,
or, you need to correct the Flat file then upload to SAP,
or, you can run the transaction in the Error screen mode then correct it while running the Program
Regards
Sudheer
‎2007 Aug 31 10:26 AM