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: 

Report

Former Member
0 Kudos

Hi all,

I got one new reuirement in which the layout should be in different font size.I know that if we use smartform or script we will get this but the client needs a normal classical report for this.

Please let me know whether it is possible to get different font sizes in classical report.If yes please tell me how can we do this.

Thanks in advance.

Regards,

Shoban

1 ACCEPTED SOLUTION

Former Member
0 Kudos

i think not possiable. alternative way is color put into font.

2 REPLIES 2

Former Member
0 Kudos

i think not possiable. alternative way is color put into font.

Former Member
0 Kudos

Not possible in classical report

check this option....

Be aware that the PRINT-CONTROL is not supported in SAP Enterprise 4.7

For your information, SAP cannot provide any support to error caused by print control command (see SAP OSS notes 66478). * 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

Regards