‎2006 Aug 08 2:54 PM
loop at lv_row into lwa_row.
endloop.
i want to say.
if lv_row-roytype is not initial.
delete.
‎2006 Aug 08 3:01 PM
Hi,
you can try this
delete lv_row where not roytype is initial.Regards
vijay
‎2006 Aug 08 2:55 PM
Hello,
Delete lv_row where not roytype is initial.
regards,
Naimesh
‎2006 Aug 08 2:56 PM
‎2006 Aug 08 2:57 PM
Don't check for if lv_row-roytype is not initial
check for lwa_row-roytype is initial.
And use DELETE TABLE lv_row FROM lwa_row.
Regards,
Prakash.
‎2006 Aug 08 2:58 PM
Hi rani,
Delete lv_row where roytype is not initial.
regards,
keerthi.
‎2006 Aug 08 3:00 PM
hi Rani,
Do this way..
loop at lv_row into lwa_row.
read table <table name > with key <>
if not lv_row-rowtype is initial
delete lv_row.
endif.
endloop.else
delete lv_row where not roytype is initial.Regards,
Santosh
Message was edited by: Santosh Kumar P
‎2006 Aug 08 3:01 PM
Hi,
you can try this
delete lv_row where not roytype is initial.Regards
vijay
‎2006 Aug 08 3:05 PM
loop at lv_row into lwa_row.
delete lv_row where roytype is not initial.
endloop.Message was edited by: Chandrasekhar Jagarlamudi
‎2006 Aug 08 3:22 PM