<?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: How to Decrease the Font Size in Write Statement? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-decrease-the-font-size-in-write-statement/m-p/646966#M27712</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;Font size in ABA reports can be changed using PRINT-CONTROL COMMANDS. Here i provide you the code and description of using print commands to change the font size.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;(see SAP OSS notes 66478).&lt;/P&gt;Copy Code
  &lt;PRE&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;OL&gt;
   &lt;LI&gt;* Parameters for function below should be taken from your printer&lt;/LI&gt;
   &lt;LI&gt;* configuration in SAP - check SPAD transaction -&lt;/LI&gt;
   &lt;LI&gt;* standard print control&lt;/LI&gt;
   &lt;LI&gt;* print-control position 1 function: 'CI006', 'SF015'.&lt;/LI&gt;
   &lt;LI&gt;*&lt;/LI&gt;
   &lt;LI&gt;* Submitted by : SAP Basis, ABAP Programming and Other IMG Stuff&lt;/LI&gt;
   &lt;LI&gt;* &lt;A href="http://www.sap-img.com" target="test_blank"&gt;http://www.sap-img.com&lt;/A&gt;&lt;/LI&gt;
   &lt;LI&gt;*&lt;/LI&gt;
   &lt;LI&gt;REPORT ZFONT NO STANDARD PAGE HEADING LINE-SIZE 80 LINE-COUNT 65.&lt;/LI&gt;
   &lt;LI&gt;* Start of print-control&lt;/LI&gt;
   &lt;LI&gt;NEW-PAGE PRINT ON.&lt;/LI&gt;
   &lt;LI&gt;PRINT-CONTROL FUNCTION 'SF000'.&lt;/LI&gt;
   &lt;LI&gt;WRITE: / 'This is CPI 20'.&lt;/LI&gt;
   &lt;LI&gt;SKIP.&lt;/LI&gt;
   &lt;LI&gt;PRINT-CONTROL FUNCTION 'SF020'.&lt;/LI&gt;
   &lt;LI&gt;WRITE: / 'This is CPI 6'.&lt;/LI&gt;
   &lt;LI&gt;SKIP.&lt;/LI&gt;
   &lt;LI&gt;PRINT-CONTROL FUNCTION 'SF008'.&lt;/LI&gt;
   &lt;LI&gt;WRITE: / 'This is CPI 12'.&lt;/LI&gt;
   &lt;LI&gt;* Depending on your SAP printer device, this may also work&lt;/LI&gt;
   &lt;LI&gt;PRINT-CONTROL FONT 1 LPI 6.&lt;/LI&gt;
   &lt;LI&gt;* you can try to change font and LPI numbers&lt;/LI&gt;
   &lt;LI&gt;WRITE: / 'font 1 lpi 6'.&lt;/LI&gt;
   &lt;LI&gt;PRINT-CONTROL FONT 2 LPI 6.&lt;/LI&gt;
   &lt;LI&gt;WRITE: / 'font 2 lpi 6'.&lt;/LI&gt;
   &lt;LI&gt;PRINT-CONTROL FONT 3 LPI 6.&lt;/LI&gt;
   &lt;LI&gt;WRITE: / 'font 3 lpi 6'.&lt;/LI&gt;
   &lt;LI&gt;* End of print-control&lt;/LI&gt;
   &lt;LI&gt;NEW-PAGE PRINT OFF.&lt;/LI&gt;
   &lt;LI&gt;*--- End of Program&lt;/LI&gt;
  &lt;/OL&gt; 
  &lt;P&gt;Hope this solves your problem.&lt;/P&gt;
  &lt;P&gt;Thanks,&lt;/P&gt;
  &lt;P&gt;Iván&lt;/P&gt;</description>
    <pubDate>Tue, 26 Jun 2018 10:55:27 GMT</pubDate>
    <dc:creator>ivan_martinmarra</dc:creator>
    <dc:date>2018-06-26T10:55:27Z</dc:date>
    <item>
      <title>How to Decrease the Font Size in Write Statement?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-decrease-the-font-size-in-write-statement/m-p/646965#M27711</link>
      <description>&lt;P&gt;&lt;/P&gt;
  &lt;P&gt;PRINT-CONTROL FONT 10.&lt;BR /&gt; WRITE : / 'SIZE 10'.&lt;BR /&gt; PRINT-CONTROL FUNCTION 'SI001'.&lt;BR /&gt; WRITE : / 'NORMAL SIZE.'.&lt;BR /&gt; PRINT-CONTROL FUNCTION 'SI002'.&lt;BR /&gt; WRITE : / 'LARGE SIZE'.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;Is it possible to reduce font with write statement in classical report or it is not possible to reduce because its is obsolete syntax and that can not also be set using the formatting options of the statements WRITE.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;we have SAP_BASIS 740 support level 11 on our syatem.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 06:21:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-decrease-the-font-size-in-write-statement/m-p/646965#M27711</guid>
      <dc:creator>jaydalwadi</dc:creator>
      <dc:date>2018-06-26T06:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to Decrease the Font Size in Write Statement?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-decrease-the-font-size-in-write-statement/m-p/646966#M27712</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;Font size in ABA reports can be changed using PRINT-CONTROL COMMANDS. Here i provide you the code and description of using print commands to change the font size.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;(see SAP OSS notes 66478).&lt;/P&gt;Copy Code
  &lt;PRE&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;OL&gt;
   &lt;LI&gt;* Parameters for function below should be taken from your printer&lt;/LI&gt;
   &lt;LI&gt;* configuration in SAP - check SPAD transaction -&lt;/LI&gt;
   &lt;LI&gt;* standard print control&lt;/LI&gt;
   &lt;LI&gt;* print-control position 1 function: 'CI006', 'SF015'.&lt;/LI&gt;
   &lt;LI&gt;*&lt;/LI&gt;
   &lt;LI&gt;* Submitted by : SAP Basis, ABAP Programming and Other IMG Stuff&lt;/LI&gt;
   &lt;LI&gt;* &lt;A href="http://www.sap-img.com" target="test_blank"&gt;http://www.sap-img.com&lt;/A&gt;&lt;/LI&gt;
   &lt;LI&gt;*&lt;/LI&gt;
   &lt;LI&gt;REPORT ZFONT NO STANDARD PAGE HEADING LINE-SIZE 80 LINE-COUNT 65.&lt;/LI&gt;
   &lt;LI&gt;* Start of print-control&lt;/LI&gt;
   &lt;LI&gt;NEW-PAGE PRINT ON.&lt;/LI&gt;
   &lt;LI&gt;PRINT-CONTROL FUNCTION 'SF000'.&lt;/LI&gt;
   &lt;LI&gt;WRITE: / 'This is CPI 20'.&lt;/LI&gt;
   &lt;LI&gt;SKIP.&lt;/LI&gt;
   &lt;LI&gt;PRINT-CONTROL FUNCTION 'SF020'.&lt;/LI&gt;
   &lt;LI&gt;WRITE: / 'This is CPI 6'.&lt;/LI&gt;
   &lt;LI&gt;SKIP.&lt;/LI&gt;
   &lt;LI&gt;PRINT-CONTROL FUNCTION 'SF008'.&lt;/LI&gt;
   &lt;LI&gt;WRITE: / 'This is CPI 12'.&lt;/LI&gt;
   &lt;LI&gt;* Depending on your SAP printer device, this may also work&lt;/LI&gt;
   &lt;LI&gt;PRINT-CONTROL FONT 1 LPI 6.&lt;/LI&gt;
   &lt;LI&gt;* you can try to change font and LPI numbers&lt;/LI&gt;
   &lt;LI&gt;WRITE: / 'font 1 lpi 6'.&lt;/LI&gt;
   &lt;LI&gt;PRINT-CONTROL FONT 2 LPI 6.&lt;/LI&gt;
   &lt;LI&gt;WRITE: / 'font 2 lpi 6'.&lt;/LI&gt;
   &lt;LI&gt;PRINT-CONTROL FONT 3 LPI 6.&lt;/LI&gt;
   &lt;LI&gt;WRITE: / 'font 3 lpi 6'.&lt;/LI&gt;
   &lt;LI&gt;* End of print-control&lt;/LI&gt;
   &lt;LI&gt;NEW-PAGE PRINT OFF.&lt;/LI&gt;
   &lt;LI&gt;*--- End of Program&lt;/LI&gt;
  &lt;/OL&gt; 
  &lt;P&gt;Hope this solves your problem.&lt;/P&gt;
  &lt;P&gt;Thanks,&lt;/P&gt;
  &lt;P&gt;Iván&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 10:55:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-decrease-the-font-size-in-write-statement/m-p/646966#M27712</guid>
      <dc:creator>ivan_martinmarra</dc:creator>
      <dc:date>2018-06-26T10:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to Decrease the Font Size in Write Statement?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-decrease-the-font-size-in-write-statement/m-p/646967#M27713</link>
      <description>&lt;P&gt;i have already tried this solution bit this code not working because i want to decrease font with write statement.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 11:22:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-decrease-the-font-size-in-write-statement/m-p/646967#M27713</guid>
      <dc:creator>jaydalwadi</dc:creator>
      <dc:date>2018-06-26T11:22:36Z</dc:date>
    </item>
  </channel>
</rss>

