cancel
Showing results for 
Search instead for 
Did you mean: 

Column header in Bold Text

sivadm
Advisor
Advisor
0 Kudos

Hi Experts,

I am displaying a table in ALV format.

The coulmn headings are displayed in normal text format.

I need to display the text in Bold font.

Can anyone assist.

Thanks,

Siva.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Make a node of type WDUI_TEXT_VIEW_DESIGN and bind it to design property of particular column (you want to bold) of your table.

codes for particular font can be seen in value range of type WDUI_TEXT_VIEW_DESIGN

read the node and use following code for coloring selected table cells :-

  • SETTING FONT OF OUTPUT

lv_zdesign = '09'.

lv_zdesign = '00'.

wa_text-zdesign = lv_zdesign .

wa_text-dzesign1 = lv_zdesign1.

  • APPENDING ALL VALUES TO INTERNAL TABLE

append wa_text to itab_text1.

Finally bind your internal table to node

Here "00" is for emphasized and "09" is for standard.

sivadm
Advisor
Advisor
0 Kudos

Hi Neha,

Thanks for information.

But, do you thing this would help the ALV table as well??? . . .

The one i am using is an ALV table. . .

thanks,

me.

Former Member
0 Kudos
sivadm
Advisor
Advisor
0 Kudos

Hi,

Thanks, But it doesnt help in making the text dispaly in Bold text.

Thanks,

Siva.