Hi
i have two internal tables
say itab1 and itab2
i have data in itab1 and itab2.
i have one common field in itab1 and itab2.
i have to delete all all the records in itab1 except for those for the common field in itab2.
I mean like i need the records of the common field that exists in itab2.
say fld1 is common,
itab2
fld1
1
3
5
itab1
1
2
3
4
5
i need itab1 to be only
1
3
5
I need to know whther this can be done in single step
Thanks