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: 

can the font size be kept large in reporting..

Former Member
0 Kudos

Hello,

i want to display sum text with my report. I have done,

WRITE:

AT (p_lnsize) 'ABCDEFGHIJK (Pvt) Ltd' CENTERED,

at /(p_lnsize) p_title centered,

at /1 'Date:', sy-datum, at L_POS_PGNO(5) SY-PAGNO right-justified.

can i format the text as bold, large font size, underlined etc. ??

Thanks Guys,

Shehryar

1 ACCEPTED SOLUTION

naimesh_patel
Active Contributor
0 Kudos

hello,

No it is not possible but, you can make it intesified...In printing it will come as different than other fonts.

WRITE:

AT (p_lnsize) 'ABCDEFGHIJK (Pvt) Ltd' CENTERED color 1 <b>intensified on.</b>

Regards,

Naimesh

4 REPLIES 4

naimesh_patel
Active Contributor
0 Kudos

hello,

No it is not possible but, you can make it intesified...In printing it will come as different than other fonts.

WRITE:

AT (p_lnsize) 'ABCDEFGHIJK (Pvt) Ltd' CENTERED color 1 <b>intensified on.</b>

Regards,

Naimesh

Former Member
0 Kudos

hi Dahar,

This cannot be achieved with report programming make use of Script for the same

0 Kudos

refer..

You don't have a whole lot of print options with Reports.. you can get what you need to some extent using the

PRINT-CONTROL option on the REPORT statement. Please check theSAP Help for additional info.

http://help.sap.com/saphelp_47x200/helpdata/en/d9/4a95e351ea11d189570000e829fbbd/frameset.htm

Former Member
0 Kudos

Hi Shehryar,

You can not underline or increse font size but there are ways to highlight some text using <b>'Format</b>' statement.

e.g.:

FORMAT INTENSIFIED INPUT.

WRITE 5 'JOHN'.

FORMAT INPUT OFF.

You can change the color the text or can highlight it using inverse colors :

1. ... COLOR n [ON] or ... COLOR OFF

2. ... INTENSIFIED [ON] or ... INTENSIFIED OFF

3. ... INVERSE [ON] or ... INVERSE OFF

Regards,

Pragya