‎2007 Oct 24 3:34 PM
hi ,
can anyone let meknow what is the mistake in this code that it gives me an error.
it says delete is unknown.
if sy-subrc ne 0.
write:/ "invalid ".
Delete itab.
continue.
thanks
endif.
‎2007 Oct 24 3:38 PM
Use single quotations instead of double quotations.
write:/ 'invalid'.Regards
Aneesh.
‎2007 Oct 24 3:36 PM
Shekar,
are you using this code in loop endloop?? can you please send more details.
Satish
‎2007 Oct 24 3:36 PM
Hi
write like this
if sy-subrc ne 0.
Delete itab where f1 <> ...
write:/ 'invalid '.
else.
continue.
endif.
press F1 on delete command and see the syntax.
Regards
anji
‎2007 Oct 24 3:37 PM
‎2007 Oct 24 3:37 PM
‎2007 Oct 24 3:38 PM
Use single quotations instead of double quotations.
write:/ 'invalid'.Regards
Aneesh.