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