<?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: pdf from otf table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-from-otf-table/m-p/4885174#M1141609</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found in sap note 941495 answer to my question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Dec 2008 07:28:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-17T07:28:54Z</dc:date>
    <item>
      <title>pdf from otf table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-from-otf-table/m-p/4885169#M1141604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi. &lt;/P&gt;&lt;P&gt;I have got problem with my smartform. &lt;/P&gt;&lt;P&gt;When i look at smartform from spool or from print preview it looks ok, but when i try to make pdf file using OTF table my smartform is without special characters (polish letters).&lt;/P&gt;&lt;P&gt;Any advice ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 15:56:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-from-otf-table/m-p/4885169#M1141604</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T15:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: pdf from otf table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-from-otf-table/m-p/4885170#M1141605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt; You can try with using function modules  : CONVERT_OTF_2_PDF&lt;/P&gt;&lt;P&gt;SX_OBJECT_CONVERT_OTF_PDF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Spool conversion : FM &lt;/P&gt;&lt;P&gt;CONVERT_OTFSPOOLJOB_2_PDF&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 16:32:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-from-otf-table/m-p/4885170#M1141605</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T16:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: pdf from otf table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-from-otf-table/m-p/4885171#M1141606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried those functions. The problem is in otf table. Smartform return OTF table wrong converted,&lt;/P&gt;&lt;P&gt;when i tried SSFCOMP_PDF_PREVIEW which import otf table and make preview from it, this created pdf have not got polish letters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 17:59:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-from-otf-table/m-p/4885171#M1141606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T17:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: pdf from otf table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-from-otf-table/m-p/4885172#M1141607</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;See below . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lv_lines       TYPE I,&lt;/P&gt;&lt;P&gt;          lv_filesize    TYPE STRING,&lt;/P&gt;&lt;P&gt;          lv_pdf_xstring TYPE xstring.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lt_otf       TYPE STANDARD TABLE OF ITCOO,&lt;/P&gt;&lt;P&gt;          lt_obj_bin   TYPE STANDARD TABLE OF  SOLISTI1,&lt;/P&gt;&lt;P&gt;          lt_lines     TYPE STANDARD TABLE OF TLINE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Convert OTF to PDF&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'CONVERT_OTF'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      format                 = 'PDF'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      bin_filesize          = lv_filesize&lt;/P&gt;&lt;P&gt;      bin_file               = lv_pdf_xstring&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      otf                     = lt_otf&lt;/P&gt;&lt;P&gt;      lines                   = lt_lines&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      err_max_linewidth     = 1&lt;/P&gt;&lt;P&gt;      err_format            = 2&lt;/P&gt;&lt;P&gt;      err_conv_not_possible = 3&lt;/P&gt;&lt;P&gt;      err_bad_otf           = 4&lt;/P&gt;&lt;P&gt;      OTHERS                = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Convert PDF data into Binary fomrat&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      buffer     = lv_pdf_xstring&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      binary_tab = lt_objbin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was getting problem when i was converting OTF to PDF then I used above function module and my problem is solved. May this help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jayshree.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2008 03:52:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-from-otf-table/m-p/4885172#M1141607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-17T03:52:21Z</dc:date>
    </item>
    <item>
      <title>Re: pdf from otf table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-from-otf-table/m-p/4885173#M1141608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just try by creating a new smartstyle for the smartform.&lt;/P&gt;&lt;P&gt;This will work as the font you are using might not support Polish characters.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Nitin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Nitin  Sachdeva on Dec 17, 2008 5:21 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2008 04:20:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-from-otf-table/m-p/4885173#M1141608</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-17T04:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: pdf from otf table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-from-otf-table/m-p/4885174#M1141609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found in sap note 941495 answer to my question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2008 07:28:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-from-otf-table/m-p/4885174#M1141609</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-17T07:28:54Z</dc:date>
    </item>
    <item>
      <title>Re: pdf from otf table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-from-otf-table/m-p/4885175#M1141610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sap note 941495 :&lt;/P&gt;&lt;P&gt;A PDF file is created from a Smart Form using CONVERT_OTF. The form uses the COURIER font for a text in the Latin-2 character set (for example, Polish).&lt;/P&gt;&lt;P&gt;Although a PDF substitute font is installed for COURIER and Latin-2 with Report RSTXPDF2 (see Note 141343), this font is not inserted into the PDF. The Latin-2 special characters are therefore not displayed correctly in the PDF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2008 07:31:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-from-otf-table/m-p/4885175#M1141610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-17T07:31:11Z</dc:date>
    </item>
  </channel>
</rss>

