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: 

FM SET_PRINT_PARAMETERS (font size)

Former Member
0 Kudos

Hi Folks,

iam need to print the report output as landscape so iam calling the FM SET_PRINT_PARAMETERS. it is displaying the result in required form but the fontsize is too low. how can i increse the font size by using PRINT_CONTROL or is there any parameter in th FM itself? or is it controld by BASIS people?

ur favor is highly appreciated

Regards

srini

3 REPLIES 3

FredericGirod
Active Contributor
0 Kudos

Hi,

the font size depend of the Layout, the layout depend of the line size and the line count.

(X_65_80, X_65_255 .....)

Regards

Frédéric

andreas_mann3
Active Contributor
0 Kudos

Srini,

try that:

1)

 CALL FUNCTION 'SET_PRINT_PARAMETERS'
       EXPORTING
            LAYOUT = 'X_65_255'
       EXCEPTIONS
            OTHERS = 1.

or

2)

REPORT Z0008 NO STANDARD PAGE HEADING LINE-SIZE 255
                                         LINE-COUNT  65.

Andreas

Message was edited by: Andreas Mann

Former Member
0 Kudos

please check the following links (I am not sure which one will be working)

http://searchsap.techtarget.com/tip/1,289483,sid21_gci840993,00.html

http://www.sap4.com/codigo-100.html

you must remember to calculate page size (change page) once you will use other than standard font size.

Andrzej