‎2007 Jun 25 11:42 AM
how to update data into internal table .
i modified and updated data into the table but its over writing on the previous value .
which statement i've to use
‎2007 Jun 25 11:58 AM
Hi,
Use INSERT or APPEND. This will solve ur problem.
Thanks and Regards,
Kunjal Patel
‎2007 Jun 25 11:45 AM
hi
use APPEND statement
regards
ravish
<b>plz dont forget to reward points if helpful</b>
‎2007 Jun 25 11:46 AM
hi ..
U can use <b>INSERT</b> or <b>APPEND</b> stetament to update the internal table..
if it is over written then u can use the <b>CLEAR</b> statement..
for eg:<b> CLEAR<itab>
</b>
REgards
Ashu
‎2007 Jun 25 11:54 AM
HI.
We can use "Modify" statement for update of internal table.
if already internal table has any value it will update .else it create new value in internal table .
So use MODIFY itab.
Rewards all helpfull answers.
Regards.
Jay
‎2007 Jun 25 11:58 AM
Hi,
Use INSERT or APPEND. This will solve ur problem.
Thanks and Regards,
Kunjal Patel
‎2007 Jun 25 12:30 PM
hi,
modify -> overrides if a record exists in internal table. if record not found it adds a new record.
update -> overides if a record exists.
append -> adds a new recod at end of internal table.
for ur case use append.
if helpful reward some points.
with regards,
suresh.