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 while uploading data in table t_499s through BDC Prog

mukesh_kumar23
Participant
0 Likes
872

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

1 ACCEPTED SOLUTION
Read only

nirajgadre
Active Contributor
0 Likes
783

Hi mukesh,

In your bdc code add the code for the page down code "P+' after every 15 records and populate the bdc data.

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

4 REPLIES 4
Read only

Former Member
0 Likes
783

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

Read only

NAeda
Contributor
0 Likes
783

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

Read only

0 Likes
783

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.

Read only

nirajgadre
Active Contributor
0 Likes
784

Hi mukesh,

In your bdc code add the code for the page down code "P+' after every 15 records and populate the bdc data.