Hi,
i have a requirement in which i need to delete contents in ITAB 1 based on the contents in ITAB 2
For eg.
internal table 1 contains the following entries
-number
-code---
-500000
- 1 ---
-500000
- 2 ---
-500000
- 3 ---
-500001
- 2 ---
-500002
-- 1 ---
-500003
-- 2 -
internal table 2 contains the following entries
-number
-500000
-500003
for all entries in internal table 2 i need to delete contents in internal table 1 with code 2 .so the result would be
final internal table 1.
-number
code
-
-500000
-- 1 ---
-500000
-- 3 ---
-500001
-- 2 ---
-500002
-- 1 ---
I Need to do this WITH OUT a loop. any help would be appreciated.
Thanks,
ravi.