Skip to Content
0
Former Member
May 22, 2014 at 09:50 AM

The window to select dimensions simply does not appear and I can't move forward, due to variables exit in the report

185 Views

Dear experts,

I am having an issue when I try to create a WEBI document using Bex query through OLAP connection (Bics).

Due to variables exit, it is not possible to open query pannel in webi to choose wich dimensions to add to the webi document.

The window to select dimensions simply does not appear and I can't move forward!

In RSRT ou Bex Analyzer, the query is running fine without errors.

CMOD code is like this (I believe there is not any error as it is working flawless on other reports for other variable names):


WHEN 'ZREDT1'.

IF i_step = 2.

CLEAR wa2.

READ TABLE i_t_var_range INTO wa2 WITH KEY vnam = 'ZRE_DT_IN'.

* wa2-low = |{ v_year_h }12|.

IF sy-subrc EQ 0.

v_year_h = wa2-low(4) - 1.

CONCATENATE v_year_h '12' INTO wa1-low.

* wa1-low = wa2-low.

wa1-opt = 'EQ'.

wa1-sign = 'I'.

APPEND wa1 TO e_t_range.

ENDIF.

ENDIF.

WHEN 'ZREDT2'.

IF i_step = 2.

CLEAR wa2.

READ TABLE i_t_var_range INTO wa2 WITH KEY vnam = 'ZRE_DT_IN'.

IF sy-subrc EQ 0.

* wa2-low = |{ v_year_h }12|.

v_year_h = wa2-low(4) - 1.

CONCATENATE v_year_h '12' INTO wa1-low.

wa1-opt = 'EQ'.

wa1-sign = 'I'.

APPEND wa1 TO e_t_range.

ENDIF.

ENDIF.

Please provide assistance,

Thanks in advance,

Kind regards,

André Oliveira