I have created customer exit variable for Calendar Year and used Enhancement RSR00001 and wrote code in EXIT_SAPLRRS0_001
DATA: L_S_RANGE TYPE RSR_S_RANGESID.
CASE I_VNAM.
WHEN 'ZVAR_CCEXT'.
CLEAR L_S_RANGE.
L_S_RANGE-LOW = 'SY-DATUM+0(4)'.
L_S_RANGE-SIGN = 'I'.
L_S_RANGE-OPT = 'EQ'.
APPEND L_S_RANGE TO E_T_RANGE.
ENDCASE.
which is syntactically correct but when i run report in RSRT it is just reverting to ABAP debugger screen (screenshot attached) rather than giving output.Please help me what to do to resolve this.
Thanks in Advance.