cancel
Showing results for 
Search instead for 
Did you mean: 

ALV Export to Bex Analyzer

Former Member
0 Kudos

hi all,

i am facing a small problem.

i want to hide the BEX analyzer option without hiding the export to excel option in the export to excel button on the ALV grid display in web dynpro ABAP.

how is this possible.

any inputs?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Just try the following code . it will disable.

READ TABLE wd_this->R_TABLE->if_salv_wd_function_settings~t_functions

INTO ls_function

WITH KEY id = 'SALV_WD_BEX_ANALYZER'.

IF sy-subrc = 0.

ls_function-r_function->set_visible( cl_wd_uielement=>e_visible-none ).

ENDIF.

I think you know What is R-table. It is the attribute in my current view which access all the ALV Settings.

Thanks and Best Regads,

Vijay