Skip to Content
0
Sep 07, 2023 at 12:33 PM

Color Header cl_salv_table

97 Views Last edit Sep 12, 2023 at 02:34 PM 12 rev

Hi experts,
I'm trying to change the color of the header title using cl_salv_display_settings.
I haven't found a way to change the color.

Do you think it is possible?

DATA: gr_table TYPE REF TO cl_salv_table,
lr_display TYPE REF TO cl_salv_display_settings.

lv_title TYPE lvc_title.
lv_title = 'TEST'.
lr_display = gr_table->get_display_settings( ).
lr_display->set_list_header( lv_title ).

Thank you so much!