Application Development and Automation 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: 
Read only

Classical report

Former Member
0 Likes
529

How to insert Logo and change Font size in ABAP Classical report?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
504

Hi,

I think u cant change font size in Classical Report u can just intensify it, Color it etc.

Regards

Sandipan

3 REPLIES 3
Read only

Former Member
0 Likes
504

hi there...

go through the following pdf for ur query

https://publib.boulder.ibm.com/iseries/v5r2/ic2924/books/c5pz2mst.pdf

do reward if helpful.

Read only

Former Member
0 Likes
505

Hi,

I think u cant change font size in Classical Report u can just intensify it, Color it etc.

Regards

Sandipan

Read only

Former Member
0 Likes
504

Hi,

Try this

How to change the font size of some of the character of SAP report without using scripts?

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.

Refer this link

[;

I am not sure about LOGO insertion in Classical report.

Rewards if helpful.

Regards

Sourabh