How to remove records in itab where its HKONT does not end in '0'...
Hello Experts,
I am getting records from BSIS and BSAS and I want to remove those records with
their HKONT(GL account) does not end in '0'(zero). I do now want to do it via a loop.
I tried using DELETE FROM ITAB statement but it seems it does not work.
Here is what I did:
IF NOT gt_bsis_bsas[] IS INITIAL.
DELETE gt_bsis_bsas WHERE hkont+10(0) <> '0'.
ENDIF.
Hope you can help me guys. Thank you and take care!