Hi all,
Anyone can help me check what's wrong with the following code? I am trying to delete records from ODS datapackage. Those records are not in an internal table.
*LOOP AT DATA_PACKAGE ASSIGNING <fs>.
*READ TABLE INTERNALTABLE ASSIGNING <fsit>.
*IF <fs>-/BIC/id = <fsit>-id AND
<fs>-/BIC/password = <fsit>-password.
*CONTINUE.
*ELSE.
*DELETE DATA_PACKAGE.
*ENDIF.
*ENDLOOP.
Thanks a lot. Points will be rewarded later.
Lin