cancel
Showing results for 
Search instead for 
Did you mean: 

Clasical Report Font Increase

Former Member
0 Kudos

Dear Experts,

Please help me.

In ECC 6.0 how to Increase the Font Size in the Clasical Report output.

I Have tried the below

PRINT-CONTROL FUNCTION.

PRINT-CONTROL FONT.

Regards

D S Rao.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

I think so by Print-Control command. Check the below example.

  • Parameters for function below should be taken from your printer

  • configuration in SAP - check SPAD transaction -

  • standard print control

  • print-control position 1 function: 'CI006', 'SF015'.

REPORT ZFONT NO STANDARD PAGE HEADING LINE-SIZE 80 LINE-COUNT 65.

  • Start of print-control

NEW-PAGE PRINT ON.

PRINT-CONTROL FUNCTION 'SF000'.

WRITE: / 'This is CPI 20'.

SKIP.

PRINT-CONTROL FUNCTION 'SF020'.

WRITE: / 'This is CPI 6'.

SKIP.

PRINT-CONTROL FUNCTION 'SF008'.

WRITE: / 'This is CPI 12'.

  • Depending on your SAP printer device, this may also work

PRINT-CONTROL FONT 1 LPI 6.

  • you can try to change font and LPI numbers

WRITE: / 'font 1 lpi 6'.

PRINT-CONTROL FONT 2 LPI 6.

WRITE: / 'font 2 lpi 6'.

PRINT-CONTROL FONT 3 LPI 6.

WRITE: / 'font 3 lpi 6'.

  • End of print-control

NEW-PAGE PRINT OFF.

*--- End of Program

Hope this will help you

Regards,

Kiran

Edited by: kiran kumar on Aug 25, 2010 6:45 PM

aidan_black
Active Contributor
0 Kudos

Hello,

Is this classical report based on a smartform or a sapscript form?

You need to increase the font size in the relevant paragraph format or charcters fomrat either in the sapscript form or if it is a smartform i =n the associated style.

Regards,

Aidan