<?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 SAPScript bar code output in PDF format in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-bar-code-output-in-pdf-format/m-p/7297165#M1533596</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;As a SAP does not intend to deliver this solution for SAPscript&lt;/P&gt;&lt;P&gt;The report - RSTXPDFT4 does not work correct to bar code in the boletos (Brazil). &lt;/P&gt;&lt;P&gt;Is there some way (or code)  to make the bar code works in PDF format WITHOUT change to Smart form? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Obs. I am a Consultant FI  and here in the customer there were a lot of problems about bar code (Critical) and in the past the Basis consultant had problems to import all Basis Support Packages and kernel patches in Release 4.6C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if someone can help me, I really apreciate. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Since now....Thank you !!!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Sep 2010 14:53:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-09-16T14:53:17Z</dc:date>
    <item>
      <title>SAPScript bar code output in PDF format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-bar-code-output-in-pdf-format/m-p/7297165#M1533596</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;As a SAP does not intend to deliver this solution for SAPscript&lt;/P&gt;&lt;P&gt;The report - RSTXPDFT4 does not work correct to bar code in the boletos (Brazil). &lt;/P&gt;&lt;P&gt;Is there some way (or code)  to make the bar code works in PDF format WITHOUT change to Smart form? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Obs. I am a Consultant FI  and here in the customer there were a lot of problems about bar code (Critical) and in the past the Basis consultant had problems to import all Basis Support Packages and kernel patches in Release 4.6C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if someone can help me, I really apreciate. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Since now....Thank you !!!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Sep 2010 14:53:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-bar-code-output-in-pdf-format/m-p/7297165#M1533596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-16T14:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: SAPScript bar code output in PDF format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-bar-code-output-in-pdf-format/m-p/7297166#M1533597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Dear Ailton Fabricio Dias ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had the same problem last year for one of my clients, and be sure that there no solution for printing bar codes in pdf with a sapscript formular in the 4.6C version. You can only do it with smartforms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yassine NEJMY&lt;/P&gt;&lt;P&gt;Senior Consultant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 10:26:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-bar-code-output-in-pdf-format/m-p/7297166#M1533597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-23T10:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: SAPScript bar code output in PDF format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-bar-code-output-in-pdf-format/m-p/7297167#M1533598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is possible to first convert data into OTF and then PDF&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 CALL FUNCTION 'CLOSE_FORM'
          IMPORTING
            RESULT  = w_result
          TABLES
            otfdata = it_otfdata.    "OTF DATA

CLEAR gt_otf.
  gt_otf[] = it_otfdata[].
*u2022 Convert the OTF DATA to SAP Script Text lines
  CLEAR gt_pdf_tab.


  CALL FUNCTION 'CONVERT_OTF'
   EXPORTING
     format                      = 'PDF'
     max_linewidth               = 132
*   ARCHIVE_INDEX               = ' '
*   COPYNUMBER                  = 0
*   ASCII_BIDI_VIS2LOG          = ' '
*   PDF_DELETE_OTFTAB           = ' '
   IMPORTING
     bin_filesize                = gv_bin_filesize
*   BIN_FILE                    =
    TABLES
      otf                         = gt_otf
      lines                       = gt_pdf_tab
   EXCEPTIONS
     err_max_linewidth           = 1
     err_format                  = 2
     err_conv_not_possible       = 3
     err_bad_otf                 = 4
     OTHERS                      = 5
            .
  IF sy-subrc &amp;lt;&amp;gt; 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Sep 2010 06:10:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-bar-code-output-in-pdf-format/m-p/7297167#M1533598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-24T06:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: SAPScript bar code output in PDF format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-bar-code-output-in-pdf-format/m-p/7297168#M1533599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, thank you !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just one more thing:&lt;/P&gt;&lt;P&gt;How is going to be processed the boleto since it is done using SmartForms ? - SmarForms can't be used in FBZP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Sep 2010 12:52:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-bar-code-output-in-pdf-format/m-p/7297168#M1533599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-24T12:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAPScript bar code output in PDF format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-bar-code-output-in-pdf-format/m-p/7297169#M1533600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Aillton!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did it finally worked to generate the Boleto in PDF including the barcode?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are having the same problem and will appreciate any suggestions!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Muito obrigado!&lt;/P&gt;&lt;P&gt;Saludos&lt;/P&gt;&lt;P&gt;Nino&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Nov 2010 11:10:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-bar-code-output-in-pdf-format/m-p/7297169#M1533600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-15T11:10:20Z</dc:date>
    </item>
  </channel>
</rss>

