2009 Nov 12 9:26 AM
Hi
am facing problem while uploading data in table t_499s through BDC Program , if there is more than 15 records in file its not allowing to upload kindly suggest what to do
Thanx
Mukesh s
2009 Nov 12 10:56 AM
Hi mukesh,
In your bdc code add the code for the page down code "P+' after every 15 records and populate the bdc data.
2009 Nov 12 9:50 AM
Hi Mukesh,
for which transaction are you trying to upload the data and which BDC you are using.
you can put a breakpoint in your BDC program and check as to why it is not allowing more than 15 records to upload?
I think there might be a check for it in the program.
Regards,
Rahul
2009 Nov 12 10:30 AM
Hi,
See if you want to update only single table, which has User maintenance allowed
Use Modify statement.
EX:
LOOP AT ITAB INTO WA_TAB.
MOVE-CORRESPONDING WA_TAB TO T499S.
MODIFY T499S.
CLEAR T499S.
ENDLOOP.It will update the table, to check go to sm30 , and check in V_T499S.
Rgds
Aeda
2009 Nov 12 10:38 AM
Hi Aeda
its a double table entry u can check in sm 30 table T_499s one updates the palnt and loc id and 2nd one updates address.
2009 Nov 12 10:56 AM
Hi mukesh,
In your bdc code add the code for the page down code "P+' after every 15 records and populate the bdc data.