<?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: Error while converting RTF to PDF in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-converting-rtf-to-pdf/m-p/4904017#M1145084</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;First convert RTF to OTF by fm CONVERT_RTF_TO_ITF ,and then use the FM 'CONVERT_OTF_2_PDF ' and see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Dec 2008 07:08:00 GMT</pubDate>
    <dc:creator>former_member404244</dc:creator>
    <dc:date>2008-12-16T07:08:00Z</dc:date>
    <item>
      <title>Error while converting RTF to PDF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-converting-rtf-to-pdf/m-p/4904013#M1145080</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 have got a requirement to convert .rtf file to .pdf file while downloading. The .rtf file is in application server. I have used the FM CONVERT_RTF_TO_ITF to convert to ITF format. After this I am using the FM CONVERT_OTF to convert it to pdf format. But in this step I m not getting the pdf format file. I am getting an exception 'ERR_BAD_OTF'. Is there any other step in between after converting to .itf format and convert_otf. Can any one please help me on this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Rama.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 00:01:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-converting-rtf-to-pdf/m-p/4904013#M1145080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T00:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: Error while converting RTF to PDF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-converting-rtf-to-pdf/m-p/4904014#M1145081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;wrong post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 01:16:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-converting-rtf-to-pdf/m-p/4904014#M1145081</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T01:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: Error while converting RTF to PDF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-converting-rtf-to-pdf/m-p/4904015#M1145082</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;Use the FM's in the following order :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
EXPORTING
formname = lc_formname
IMPORTING
fm_name = v_fm_name
EXCEPTIONS
no_form = 1
no_function_module = 2
OTHERS = 3.


CALL FUNCTION v_fm_name
EXPORTING
.....

IMPORTING
job_output_info = gt_job_output 
....



CALL FUNCTION 'CONVERT_OTF_2_PDF'
IMPORTING
bin_filesize = v_bin_filesize
TABLES
otf = gt_job_output-otfdata
.....&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 03:24:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-converting-rtf-to-pdf/m-p/4904015#M1145082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T03:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: Error while converting RTF to PDF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-converting-rtf-to-pdf/m-p/4904016#M1145083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prashant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the reply.. But I m not using a form ... I need to convert a .RTF file in application server to .PDF file and not a form,.. Any help on this ,,?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards,&lt;/P&gt;&lt;P&gt;Rama..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 06:57:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-converting-rtf-to-pdf/m-p/4904016#M1145083</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T06:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: Error while converting RTF to PDF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-converting-rtf-to-pdf/m-p/4904017#M1145084</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;First convert RTF to OTF by fm CONVERT_RTF_TO_ITF ,and then use the FM 'CONVERT_OTF_2_PDF ' and see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 07:08:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-converting-rtf-to-pdf/m-p/4904017#M1145084</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2008-12-16T07:08:00Z</dc:date>
    </item>
  </channel>
</rss>

