Skip to Content
0
Mar 05, 2009 at 04:55 AM

please tel me how to delete from internal table

62 Views

hi

select AUGBL into i_AUGBL from bseg

where bukrs = ztab2-bukrs and

belnr = ztab2-belnr and

GJAHR = ztab2-GJAHR and

koart = 'K' and

( shkzg = 'H' OR SHKZG = 'S') .

endselect.

if i_AUGBL = ''.

append ztab2.

else.

delete ztab2.

endif.

clear:ztab2.

endif.

endselect.

This is my code , actually i want to delete perticular row in whic AUGBL <> ''

i have written that code , it is giving dump (run time error) on delete, please tel how to delete.

Thanks