Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Display an entire cell in BOLD using SALV

0 Kudos

Hi Experts

I am using CL_SALV_TABLE class for creating my report and i want to display the content  of a particular cell ( eg:10 th cell ) in BOLD. If it is possible with CL_SALV_TABLE then please help me.

Thanks..

3 REPLIES 3

sabirshah1
Participant
0 Kudos

This message was moderated.

0 Kudos

Thanks Sabir Shah but i am using factory method of CL_SALV_TABLE


DATA: lx_msg TYPE REF TO cx_salv_msg.

     TRY.

         cl_salv_table=>factory(

           IMPORTING

             r_salv_table = obj_alv

           CHANGING

             t_table      = it_final ).

       CATCH cx_salv_msg INTO lx_msg.

     ENDTRY.

gabmarian
Active Contributor
0 Kudos

I am amfraid this functionality is still missing from the CL_SALV_TABLE (just like editability). If you must use it, you should switch back to CL_GUI_ALV_GRID (or use 'REUSE_ALV_GRID_DISPLAY'),

BR,

Gábor