<?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: Printing Barcode with WRITE Command in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/printing-barcode-with-write-command/m-p/7214994#M1523121</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;i'm facing the same problem, do you know how to resolve this issue, i did what they suggest but it doesnt work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for you help,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Jul 2011 13:58:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-07-11T13:58:13Z</dc:date>
    <item>
      <title>Printing Barcode with WRITE Command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/printing-barcode-with-write-command/m-p/7214990#M1523117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an old program where we print forms on a matrix printer. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we use simply  WRITE: /48 kna1-name1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I have to add a barcode. Is this possible without using Sapscript or Smartforms?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Herbert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Aug 2010 06:30:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/printing-barcode-with-write-command/m-p/7214990#M1523117</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-31T06:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: Printing Barcode with WRITE Command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/printing-barcode-with-write-command/m-p/7214991#M1523118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Herbert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Printing Barcodes with ABAP or SAPSCRIPT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope u will get some idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are now ready to print barcodes using an ABAP report program or a SAPSCRIPT form. In these examples we are using Code 39 barcodes which require very little formatting (all we have to do is add asterisks before and after the data). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample ABAP Program: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

DATA: BAR_CODE1(16) VALUE `*ABC01230123A01*' 

NEW-PAGE PRINT ON IMMEDIATELY `X'. 

FORMAT COLOR OFF INTENSIFIED OFF. 

* If the barcode is the first element on the page, the following Write 

* statement is needed (otherwise you get a date in the first print 

* control. 

WRITE:/ 

* Turn on the barcode font, print the data, and switch back to the 

* printer's default font. Be sure to use NO-GAP to avoid unwanted 

* characters or CR/LF. 

PRINT-CONTROL FUNCTION `BCPFX' 

WRITE: BAR_CODE1 NO-GAP 

PRINT-CONTROL FUNCTION `BCSFX' 

* Add a Write statement to prevent insertion of CR/LF into the barcode. 

WRITE:/
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Amarnath S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Aug 2010 06:40:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/printing-barcode-with-write-command/m-p/7214991#M1523118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-31T06:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: Printing Barcode with WRITE Command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/printing-barcode-with-write-command/m-p/7214992#M1523119</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; please go through this ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Printing Barcodes with ABAP &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are now ready to print barcodes using an ABAP report program or a SAPSCRIPT form. In these examples we are using Code 39 barcodes which require very little formatting (all we have to do is add asterisks before and after the data). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample ABAP Program: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BAR_CODE1(16) VALUE `&lt;STRONG&gt;ABC01230123A01&lt;/STRONG&gt;' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEW-PAGE PRINT ON IMMEDIATELY `X'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORMAT COLOR OFF INTENSIFIED OFF. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;If the barcode is the first element on the page, the following Write &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;statement is needed (otherwise you get a date in the first print &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;control. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Turn on the barcode font, print the data, and switch back to the &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;printer's default font. Be sure to use NO-GAP to avoid unwanted &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;characters or CR/LF. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PRINT-CONTROL FUNCTION `BCPFX' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: BAR_CODE1 NO-GAP &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PRINT-CONTROL FUNCTION `BCSFX' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Add a Write statement to prevent insertion of CR/LF into the barcode. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Aug 2010 07:30:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/printing-barcode-with-write-command/m-p/7214992#M1523119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-31T07:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: Printing Barcode with WRITE Command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/printing-barcode-with-write-command/m-p/7214993#M1523120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried this, but it prints '&lt;STRONG&gt;ABC01230123A01&lt;/STRONG&gt;' and not a barcode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Herbert&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Herbert Schlup on Aug 31, 2010 1:29 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Aug 2010 11:29:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/printing-barcode-with-write-command/m-p/7214993#M1523120</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-31T11:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Printing Barcode with WRITE Command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/printing-barcode-with-write-command/m-p/7214994#M1523121</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;i'm facing the same problem, do you know how to resolve this issue, i did what they suggest but it doesnt work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for you help,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2011 13:58:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/printing-barcode-with-write-command/m-p/7214994#M1523121</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-11T13:58:13Z</dc:date>
    </item>
  </channel>
</rss>

