2008 May 29 3:21 PM
hi,
my itab has 2 fields - spras and maktx.
itab is loaded with data.
now i need to delete a row which has spras as EN.
after that my itab should have the remaining values other than the deleted value...
can some one help with the code
help wil be appreciated
regards
mano
2008 May 29 3:22 PM
Hi,
Try like this
delete itab where spras = 'EN'.
Regards,
Himanshu Verma
2008 May 29 3:22 PM
Hi,
Try like this
delete itab where spras = 'EN'.
Regards,
Himanshu Verma
2008 May 29 3:25 PM
2008 May 29 3:29 PM
Hi Manoj,
Even if you have used work area....
You have to code
DELETE ITAB WHERE SPRAS = 'EN'.
This statement is called a mass delete statement.
Raghav
2008 May 29 3:28 PM
hi,
try like this.
Delete Itab with key spras = 'EN'.
regards
Sandeep Reddy