Dear All,
I am working on one of reporting issue where data is not getting displayed for few Last year columns. I have checked at the back end and data is available in info providers.
I want your help to identify possible reason. I carried below trouble shooting steps.
1: checked data in back end and its available
2: all restrictions are proper.
3: there no issue with query properties, I check all.
I am doubtful about customer exit code so here it is. Please suggest me whether its good or not.
WHEN 'ZVAR_LYCW'.
IF I_STEP = 2.
CLEAR LOC_VAR_RANGE.
BREAK-POINT.
LOOP AT I_T_VAR_RANGE INTO LOC_VAR_RANGE
WHERE VNAM = 'ZVAR_CALDAY'.
CLEAR : L_S_RANGE,
v_loc_date,
v_loc_date1.
L_S_RANGE-LOW = LOC_VAR_RANGE-LOW.
L_S_RANGE-LOW(4) = L_S_RANGE-LOW(4) - 1. "low value previos year
L_S_RANGE-HIGH = LOC_VAR_RANGE-HIGH.
L_S_RANGE-HIGH(4) = L_S_RANGE-HIGH(4) - 1.
v_loc_date = L_S_RANGE-LOW. "take input value in another variable
v_loc_date1 = L_S_RANGE-HIGH.
L_S_RANGE-LOW = v_loc_date.
L_S_RANGE-HIGH = v_loc_date1. "high value = input, taken into another variable
L_S_RANGE-SIGN = 'I'.
L_S_RANGE-OPT = 'BT'.
APPEND L_S_RANGE TO E_T_RANGE.
EXIT.
ENDLOOP.
endif.
Please help.
Thanks,
Vishal