2007 Apr 26 10:06 PM
Hi Experts,
I populated the itab.
From this itab, I need to delete the KUNNR records, which wuld not satisfy the S_KUNNR (select-options) range. So, the follwoing codes is not working!
DELETE ITAB WHERE KUNNR LT S_KUNNR-LOW AND KUNNR GT S_KUNNR-HIGH.
DELETE ITAB WHERE KUNNR NE S_KUNNR.
What is the correct code?
ThanQ.
2007 Apr 26 10:10 PM
Hi,
Try this..
DELETE ITAB WHERE NOT KUNNR IN S_KUNNR[].
Thanks,
Naren
Hi Experts,
I populated the itab.
From this itab, I need to delete the KUNNR records, which wuld not satisfy the S_KUNNR (select-options) range. So, the follwoing codes is not working!
DELETE ITAB WHERE KUNNR LT S_KUNNR-LOW AND KUNNR GT S_KUNNR-HIGH.
DELETE ITAB WHERE KUNNR NE S_KUNNR.
What is the correct code?
ThanQ.
2007 Apr 26 10:10 PM
Hi,
Try this..
DELETE ITAB WHERE NOT KUNNR IN S_KUNNR[].
Thanks,
Naren
2007 Apr 26 10:27 PM