Skip to Content
0
Jan 29, 2009 at 11:45 AM

delete itab contents.,

21 Views

Hi.,

I am having one internal table with more than 50 Records.

FIELD1 is one of the field in that internal table,

It may contains contents like AAA, BBB, CCC, DDD or EEE.

So here I want to delete Internal table entries where that FILED1 eq BBB and FIELD1 eq CCC.

So we can write this as:

delete itab where FIELD1 = 'BBB'.
delete itab where FIELD1 = 'CCC'.

How can I solve this with one statement?

---Naveen Inuganti.