<?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 Adding Bar Code in List Output in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-bar-code-in-list-output/m-p/1008854#M78413</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Could any please guide me how to add Bar Code in List output.I tried various ways but i couldnt reach the point .Please guide me where i can find some good documents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks $ Regards&lt;/P&gt;&lt;P&gt;Vamsi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Sep 2005 09:51:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-09-08T09:51:15Z</dc:date>
    <item>
      <title>Adding Bar Code in List Output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-bar-code-in-list-output/m-p/1008854#M78413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Could any please guide me how to add Bar Code in List output.I tried various ways but i couldnt reach the point .Please guide me where i can find some good documents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks $ Regards&lt;/P&gt;&lt;P&gt;Vamsi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Sep 2005 09:51:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-bar-code-in-list-output/m-p/1008854#M78413</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-08T09:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Bar Code in List Output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-bar-code-in-list-output/m-p/1008855#M78414</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; Got this from a site,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Printing Barcodes with ABAP &amp;lt;/b&amp;gt;&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;&amp;lt;b&amp;gt;Sample ABAP Program:&amp;lt;/b&amp;gt; &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;Also check this link,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.mecsw.com/info/appnote/app_024.html#abap" target="test_blank"&gt;http://www.mecsw.com/info/appnote/app_024.html#abap&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; hope it helps u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; kindly assign point if u find it useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards,&lt;/P&gt;&lt;P&gt;Ruthra.R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Sep 2005 11:24:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-bar-code-in-list-output/m-p/1008855#M78414</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-08T11:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Bar Code in List Output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-bar-code-in-list-output/m-p/1008856#M78415</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;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="577952"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, u can create a barcode:&lt;/P&gt;&lt;P&gt;Check Transaction SE73.Click on System Bar Code Change.There are various types of barcodes already defined by SAP so you can use them or create one of your own. Say we use the BC_EANH. It has the following attributes.&lt;/P&gt;&lt;P&gt;BC_EANH EAN 128, n.txt,h=13mm 01 40 9,00 CM 1,30 CM 000&lt;/P&gt;&lt;P&gt;height width etc. &lt;/P&gt;&lt;P&gt;Now go to the script. Create a Character format and in the barcode put this name. &lt;/P&gt;&lt;P&gt;in the script &amp;lt;c1&amp;gt;&amp;amp;Barcode_number&amp;lt;/&amp;gt;. and your barcode will be seen in the printview. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check out Transaction so10 and see script SAPSCRIPT-BARCODETEST.&lt;/P&gt;&lt;P&gt;Give a print on the dot matric printer which u have. If it doesnt print, check the printer type and other settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had found this info once in one of the threads posted here!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chek out these links too:&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="38047"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.tec-it.com/barcode/go/barcode_sap_1.htm" target="test_blank"&gt;http://www.tec-it.com/barcode/go/barcode_sap_1.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Anjali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Sep 2005 11:49:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-bar-code-in-list-output/m-p/1008856#M78415</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-08T11:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Bar Code in List Output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-bar-code-in-list-output/m-p/1008857#M78416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vamshi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing same problem in printing barcodes, cud u help me if you got result.&lt;/P&gt;&lt;P&gt;I followed same procedure as in link &lt;A href="http://www.makebarcode.com/info/appnote/app_024.html#Introduction" target="test_blank"&gt;http://www.makebarcode.com/info/appnote/app_024.html#Introduction&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I am getting the the barcode value but not the barcode.&lt;/P&gt;&lt;P&gt;Thanks In advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Phani.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 18:44:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-bar-code-in-list-output/m-p/1008857#M78416</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T18:44:19Z</dc:date>
    </item>
  </channel>
</rss>

