hello all,
i have a charcteristic 0CALMONTH in the query and user enters that value. I created another variable on Planning month which is of type 0CALMONTH too. the scenario is that user enters value from 0CALMONTH and Planning month dervies the value from it. This way user doesnt need to type again and again.
this is the code i wrote but its not working. Please can someone give suggestions.
WHEN 'ZCMONTH'.
IF I_STEP = 2 .
LOOP AT I_T_VAR_RANGE INTO LOC_VAR_RANGE WHERE VNAM = 'ZCUYRCE2'.
L_S_RANGE-LOW = LOC_VAR_RANGE-LOW.
L_S_RANGE-SIGN = 'I'.
L_S_RANGE-OPT = 'EQ'.
APPEND L_S_RANGE TO E_T_RANGE.
ENDLOOP.
CLEAR L_S_RANGE.
CLEAR LOC_VAR_RANGE .
ENDIF .
EXIT.
thanks
Laura.