Hi all,
how can it be the code in the UR to filter some values; what i want is filter for values 101 , 102 in Movetype, i made this code but i want to know if this is the way and correct if the code is ok in the Update rules to do this filter
LOOP AT DATA_PACKAGE.
IF
DATA_PACKAGE-MOVETYPE EQ '101' or
DATA_PACKAGE-MOVETYPE EQ '102' .
MODIFY DATA_PACKAGE.
ENDLOOP.