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: 

how can we alv header font size increase

Former Member
0 Kudos

hi experts,

how can we increase the font size in alv report?

i am using html_top_of_page

regards

guna

4 REPLIES 4

Former Member
0 Kudos

Make use of the class - CL_DD_DOCUMENT

Code below may give you some help.

-


FORM HTML_TOP_OF_PAGE USING R_TOP TYPE REF TO CL_DD_DOCUMENT.

text = 'Test' .

CALL METHOD R_TOP->ADD_TEXT

EXPORTING

TEXT = TEXT

SAP_STYLE = 'HEADING'.

endform.

-


Thanks!

0 Kudos

Hello Boby,

I am using SALV_WD_TABLE.

Can I use the above class for the same in order to change the FONT??

Regards,

Yugesh A.

0 Kudos

Well for web dynpro

CL_SALV_WD_HEADER

Place an image (imageSource property) in the header.

Create images for your header texts that have any font type,size or properties you want.

Former Member
0 Kudos

Hi,

I am using SALV_WD_TABLE.

Can I use the above class for the same in order to change the FONT??

Regards,

Yugesh A.