<?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: Barcodes on reports (NOT SAPSCRIPT) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/barcodes-on-reports-not-sapscript/m-p/1217848#M135370</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wonder whether you will have this functionality in reporting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Abdul Hakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Apr 2006 11:42:53 GMT</pubDate>
    <dc:creator>abdul_hakim</dc:creator>
    <dc:date>2006-04-05T11:42:53Z</dc:date>
    <item>
      <title>Barcodes on reports (NOT SAPSCRIPT)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/barcodes-on-reports-not-sapscript/m-p/1217847#M135369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everybody in this forum, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does anybody know, how to print a barcode on a simple ABAP-report? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I recently read the docu about PRINT-CONTROL but I was not able to benefit of the explanations given in the way that the solution is clear now. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried with our own SPAD-device type and checked the table entries on TSP03 and T022D. As entries exist, I received an hexcode like '1B28733370323437303054'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE : /. &lt;/P&gt;&lt;P&gt;PRINT-CONTROL FUNCTION 'SBP01'. &lt;/P&gt;&lt;P&gt;WRITE : '123456789'. &lt;/P&gt;&lt;P&gt;PRINT-CONTROL FUNCTION 'SBS01'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But how to continue? Or maybe this ain't work in that way!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Markus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Apr 2006 11:24:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/barcodes-on-reports-not-sapscript/m-p/1217847#M135369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-05T11:24:20Z</dc:date>
    </item>
    <item>
      <title>Re: Barcodes on reports (NOT SAPSCRIPT)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/barcodes-on-reports-not-sapscript/m-p/1217848#M135370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wonder whether you will have this functionality in reporting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Abdul Hakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Apr 2006 11:42:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/barcodes-on-reports-not-sapscript/m-p/1217848#M135370</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-04-05T11:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: Barcodes on reports (NOT SAPSCRIPT)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/barcodes-on-reports-not-sapscript/m-p/1217849#M135371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai markus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is a sample program to print barcode using report.&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;                                   (or)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of precom9, "command for  printer language PRESCRIBE&lt;/P&gt;&lt;P&gt;   con1(59) value&lt;/P&gt;&lt;P&gt;'!R!SCF;SCCS;SCU;SCP;FONT62;UNITD;MRP0,-36;BARC21,N,''123456''',&lt;/P&gt;&lt;P&gt;    con3(55) value&lt;/P&gt;&lt;P&gt;   ',40,40,2,7,7,7,4,9,9,9;MRP0,36;RPP;RPU;RPCS;RPF;EXIT,E;',&lt;/P&gt;&lt;P&gt;      end of precom9.&lt;/P&gt;&lt;P&gt;...................&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*replace 123456 of precom9+52(06) with the actual material number..&lt;/P&gt;&lt;P&gt;.....................&lt;/P&gt;&lt;P&gt;new-page print on.    "barcode printer&lt;/P&gt;&lt;P&gt;Write: 'material number', precom9.      "barcode for matnr&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;hope this is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;praba.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Apr 2006 12:00:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/barcodes-on-reports-not-sapscript/m-p/1217849#M135371</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-05T12:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: Barcodes on reports (NOT SAPSCRIPT)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/barcodes-on-reports-not-sapscript/m-p/1217850#M135372</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;Refer this link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gayathri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Apr 2006 12:12:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/barcodes-on-reports-not-sapscript/m-p/1217850#M135372</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-05T12:12:03Z</dc:date>
    </item>
  </channel>
</rss>

