cancel
Showing results for 
Search instead for 
Did you mean: 

Hide web dynpro ALV grid

Former Member
0 Kudos

Hi,

Is it possible to hide  the grid of an ALV (web dynpro)? I need to display data in a WD ALV without the horizontal and vertical grid lines.

Thanks,

Gauri

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

code for doing this:-

    DATA lv_value_mat TYPE REF TO cl_salv_wd_config_table.

    DATA  lv_column_SET  TYPE REF TO IF_SALV_WD_TABLE_SETTINGS.


CALL METHOD lv_value_mat->if_salv_wd_view_settings~get_table_settings
  RECEIVING
    value  = LV_COLIMN_SET    .


CALL METHOD LV_COLUMN_SET->set_grid_mode
  EXPORTING
    value  = CL_WD_TABLE=>E_GRID_MODE-none    .

if helpfull reward point

Answers (1)

Answers (1)

Former Member
0 Kudos

Thanks a lot Jitendra!