‎2007 Aug 07 4:10 PM
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
‎2007 Aug 07 4:13 PM
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
‎2007 Aug 07 4:13 PM
Loop at itab..
if sy-tabix ge 600..
ur bdc Code.
call transaction...
endif.
endloop.
Thanks,
mahesh
‎2007 Aug 07 4:15 PM
do this way...
loop at itab.
l_tabix = sy-tabix.
if l_tabix > 600.
upload the data.
endif.
endloop.
Reward Points...
‎2007 Aug 07 4:16 PM
hi Priya,
do this way ...
loop at itab.
if sy-tabix >= 600.
call transaction ....
endif.
endloop.Regards,
Santosh