<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Font Size in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/font-size/m-p/2519569#M570189</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ii) getting the error "NEW-PAGE PRINT ON" should no longer be used to generate a print dialog box.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;it is  not the  error it is warning   you can omitt it and activate  ....&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the example  : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
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&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward  points if it is usefull &lt;/P&gt;&lt;P&gt;Girish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Jul 2007 03:56:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-09T03:56:30Z</dc:date>
    <item>
      <title>Font Size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/font-size/m-p/2519565#M570185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all &lt;/P&gt;&lt;P&gt;I have a Report and when i print the report am getting the output in a ver small font size.I need to increase the size of the Font in my print statment...Pleae help me...i Used the following two methods but its NOT WORKING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i) I used the customizing layout option but am not getting it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ii) I used the following program but am getting the error "NEW-PAGE PRINT ON" should no longer be used to generate a print dialog box.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT zprinttest NO STANDARD PAGE HEADING LINE-SIZE 80 LINE-COUNT 65.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEW-PAGE PRINT ON.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PRINT-CONTROL FONT 1 LPI 6.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: / 'font 1 lpi 6'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PRINT-CONTROL FONT 2 LPI 6.&lt;/P&gt;&lt;P&gt;WRITE: / 'font 2 lpi 6'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PRINT-CONTROL FONT 3 LPI 6.&lt;/P&gt;&lt;P&gt;WRITE: / 'font 3 lpi 6'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEW-PAGE PRINT OFF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Jul 2007 06:36:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/font-size/m-p/2519565#M570185</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-07T06:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Font Size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/font-size/m-p/2519566#M570186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changing the fonts in Print using ABAP is not possible. as basic report output is a text editor. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By changing "Customizing of Local Layout" will only change in display screen and not in print.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One possible way to create a new printer formatr thry SPAD and use that format in while printing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to know more details about SPAD&lt;/P&gt;&lt;P&gt;Using SPAD - SAP Spool Administration to print different paper size &lt;/P&gt;&lt;P&gt;The SAP spool system manages its own output devices. This includes mostly printers, but also fax and archiving devices. In order for you to use output devices defined in your operating system from the SAP System, you must define these devices in the SAP spool system. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Print to a dot matrix printer using computer paper with 66 lines &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Define paper types &lt;/P&gt;&lt;P&gt;Formatting process Z_60_135 &lt;/P&gt;&lt;P&gt;Page format           DINA4 &lt;/P&gt;&lt;P&gt;Orientation tick both Portrait and Orientation &lt;/P&gt;&lt;P&gt;Type in the comment and click save &lt;/P&gt;&lt;P&gt;Device initialization &lt;/P&gt;&lt;P&gt;Device type - OKI341 &lt;/P&gt;&lt;P&gt;Formatting process Z_60_135 then click Execute &lt;/P&gt;&lt;P&gt;Double click Printer initilization &lt;/P&gt;&lt;P&gt;You must key the 66 lines hexadecimals for your printer. ( line no 9) &lt;/P&gt;&lt;P&gt;    1  # oki341  x_paper &lt;/P&gt;&lt;P&gt;    2  # reset &lt;/P&gt;&lt;P&gt;    3  # \e\0x40 &lt;/P&gt;&lt;P&gt;    4  # select codepage multilingual 850 &lt;/P&gt;&lt;P&gt;    5  \e\0x52\0x1a &lt;/P&gt;&lt;P&gt;    6  # disable skip perforation mode &lt;/P&gt;&lt;P&gt;    7  \e\0x4f &lt;/P&gt;&lt;P&gt;    8  # select 6 lpi &lt;/P&gt;&lt;P&gt;    9  \e\0x32 &lt;/P&gt;&lt;P&gt;   10  # select page length 66 lines (66=hex $42) &lt;/P&gt;&lt;P&gt;   11  \e\0x43\0x42 &lt;/P&gt;&lt;P&gt;   12  # select 10 cpi font &lt;/P&gt;&lt;P&gt;   13  \e\0x60&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHECK THIS LINKS&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04s/helpdata/en/df/abbb3f8e236d3fe10000000a114084/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04s/helpdata/en/df/abbb3f8e236d3fe10000000a114084/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/5a/4df93bad37f87ae10000000a114084/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/5a/4df93bad37f87ae10000000a114084/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/SiliconValley/Grid/4858/sap/Basis/printprobs_solutions.htm" target="test_blank"&gt;http://www.geocities.com/SiliconValley/Grid/4858/sap/Basis/printprobs_solutions.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpfull answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Jul 2007 10:09:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/font-size/m-p/2519566#M570186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-07T10:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Font Size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/font-size/m-p/2519567#M570187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;You can't change the FONT size in the reports output for sure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points for useful Answers&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Jul 2007 21:15:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/font-size/m-p/2519567#M570187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-07T21:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: Font Size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/font-size/m-p/2519568#M570188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at the time of installation System admin(basis) people can configure the sap as per sap standards whatever the software provided. in Reporting might be is the small issue to do not change the font size but we can increase the lise feedings.&lt;/P&gt;&lt;P&gt;But normal laser printer doesnt  support to increase your font size. you can use specialized industrial printers to increase while printing by selecting the properties.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;points add helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Jul 2007 13:31:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/font-size/m-p/2519568#M570188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-08T13:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: Font Size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/font-size/m-p/2519569#M570189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ii) getting the error "NEW-PAGE PRINT ON" should no longer be used to generate a print dialog box.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;it is  not the  error it is warning   you can omitt it and activate  ....&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the example  : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
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&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward  points if it is usefull &lt;/P&gt;&lt;P&gt;Girish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 03:56:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/font-size/m-p/2519569#M570189</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T03:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: Font Size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/font-size/m-p/2519570#M570190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls try using SE71 form painter and there's an option to increase or change character font and type for the tab character/paragraph.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ameet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 15:26:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/font-size/m-p/2519570#M570190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T15:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: Font Size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/font-size/m-p/2519571#M570191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2007 11:50:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/font-size/m-p/2519571#M570191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-09T11:50:44Z</dc:date>
    </item>
  </channel>
</rss>

