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

bdc

Former Member
0 Likes
384

hallo abapers.

i have doubt in bdc.if u have a 1000 records table.

but iwant to update from 600 record onwards.

how can i perform this?

pls send it .

thanx and regrads,

priya

4 REPLIES 4
Read only

former_member196280
Active Contributor
0 Likes
368

If you want to upload from 600 records, do it like this

LOOP AT <ITAB>

IF Sy-TABIX >= 600. " So here first 600 will not be uploaded

****Upload

ENDIF.

ENDLOOP.

Close the thread if your question is answered.

Regards,

SaiRam

Read only

Former Member
0 Likes
368

Loop at itab..

if sy-tabix ge 600..

ur bdc Code.

call transaction...

endif.

endloop.

Thanks,

mahesh

Read only

Former Member
0 Likes
368

do this way...

loop at itab.

l_tabix = sy-tabix.

if l_tabix > 600.

upload the data.

endif.

endloop.

Reward Points...

Read only

Former Member
0 Likes
368

hi Priya,

do this way ...


loop at itab.
 if sy-tabix >= 600.
  call transaction ....
 endif.
endloop.

Regards,

Santosh