<?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: CONVERT_OTF_2_PDF problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-otf-2-pdf-problem/m-p/1068153#M93978</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;Is the file type you are using is "BIN" like in the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;BIN_FILESIZE =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;FILENAME = 'c:/testhem/myfile.pdf'&lt;/P&gt;&lt;P&gt;FILETYPE = 'BIN'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;DATA_TAB = lt_pdf_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and use lt_pdf_table in the "objbin" of the mail sending FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Dec 2005 17:44:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-12-15T17:44:26Z</dc:date>
    <item>
      <title>CONVERT_OTF_2_PDF problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-otf-2-pdf-problem/m-p/1068148#M93973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;I'm trying to send a sapscript via email.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The scenario is the sequent.&lt;/P&gt;&lt;P&gt;The mail is send correctly but I am not able to open the pdf file with acrobat reader.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try to open the pdf file with notepad and it looks like other pdf file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's possible that something doesn't work correctly in the FM CONVERT_OTF_2_PDF?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bye&lt;/P&gt;&lt;P&gt;enzo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2005 15:12:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-otf-2-pdf-problem/m-p/1068148#M93973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-15T15:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: CONVERT_OTF_2_PDF problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-otf-2-pdf-problem/m-p/1068149#M93974</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 too had the same requirement here is the sample code. Please check it, it may helpful if yes try to assign some app. points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sample code:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  YFINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Data declarations&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  TYPES: pdf_nuc_line_t TYPE SOLI.&lt;/P&gt;&lt;P&gt;  DATA: lt_pdf_nuc_data TYPE STANDARD TABLE OF SOLI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data : output_options     type ssfcompop, " To hold output options&lt;/P&gt;&lt;P&gt;         control_parameters type ssfctrlop, " To hold control parameters&lt;/P&gt;&lt;P&gt;         output_data        type ssfcrescl, " To hold Output information&lt;/P&gt;&lt;P&gt;         v_pdf_len      type i,&lt;/P&gt;&lt;P&gt;         pdf_table type  rcl_bag_tline,&lt;/P&gt;&lt;P&gt;         l_cline            TYPE SOLISTI1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: FM_NAME            TYPE RS38L_FNAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;             SELETION SCREEN&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : p_FNAME  TYPE RS38L_FNAM. "Smartform name&lt;/P&gt;&lt;P&gt;p_fname = 'YMSGTEST'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'&lt;/P&gt;&lt;P&gt;    EXPORTING  FORMNAME           = p_fname&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                variant            = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                direct_call        = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IMPORTING  FM_NAME            = FM_NAME&lt;/P&gt;&lt;P&gt;    EXCEPTIONS NO_FORM            = 1&lt;/P&gt;&lt;P&gt;               NO_FUNCTION_MODULE = 2&lt;/P&gt;&lt;P&gt;               OTHERS             = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;write FM_NAME.&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;Set the output options and control parameters&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;Set control parameters to get the output format (OTF) from Smart Forms&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  control_parameters-no_dialog = 'X'.&lt;/P&gt;&lt;P&gt;  control_parameters-getotf    = 'X'.&lt;/P&gt;&lt;P&gt;  control_parameters-langu = sy-langu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get device type&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  call function 'SSF_GET_DEVICE_TYPE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_language             = control_parameters-langu&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      e_devtype              = output_options-tdprinter&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      no_language            = 1&lt;/P&gt;&lt;P&gt;      language_not_installed = 2&lt;/P&gt;&lt;P&gt;      no_devtype_found       = 3&lt;/P&gt;&lt;P&gt;      system_error           = 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;&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function FM_NAME&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ARCHIVE_INDEX              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ARCHIVE_INDEX_TAB          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ARCHIVE_PARAMETERS         =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CONTROL_PARAMETERS         = control_parameters&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MAIL_APPL_OBJ              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MAIL_RECIPIENT             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MAIL_SENDER                =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    OUTPUT_OPTIONS             = output_options&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  USER_SETTINGS              = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DOCUMENT_OUTPUT_INFO       =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    JOB_OUTPUT_INFO            = output_data&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  JOB_OUTPUT_OPTIONS         =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   exceptions&lt;/P&gt;&lt;P&gt;     formatting_error           = 1&lt;/P&gt;&lt;P&gt;     internal_error             = 2&lt;/P&gt;&lt;P&gt;     send_error                 = 3&lt;/P&gt;&lt;P&gt;     user_canceled              = 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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;now convert the final document (OTF format) into PDF format&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       MAX_LINEWIDTH               = 132&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       ARCHIVE_INDEX               = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       COPYNUMBER                  = 0&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       importing&lt;/P&gt;&lt;P&gt;         bin_filesize                = v_pdf_len&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;         otf                         = output_data-otfdata&lt;/P&gt;&lt;P&gt;         lines                       = PDF_TABLE&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;To convert PDF file to Binary&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  call function 'QCE1_CONVERT'&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      t_source_tab               = PDF_TABLE&lt;/P&gt;&lt;P&gt;      t_target_tab               = lt_pdf_nuc_data&lt;/P&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     CONVERT_NOT_POSSIBLE       = 1&lt;/P&gt;&lt;P&gt;     OTHERS                     = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  BIN_FILESIZE                  =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    FILENAME                      = 'c:/testhem/myfile.pdf'&lt;/P&gt;&lt;P&gt;   FILETYPE                      = 'BIN'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    DATA_TAB                      = lt_pdf_nuc_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2005 15:16:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-otf-2-pdf-problem/m-p/1068149#M93974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-15T15:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: CONVERT_OTF_2_PDF problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-otf-2-pdf-problem/m-p/1068150#M93975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I feel there is some problem in sending the mail, to confirm that just download that to your PC and check &lt;/P&gt;&lt;P&gt;that you can open it or not .&lt;/P&gt;&lt;P&gt;this you can cross check whether you are sending correctly or not..,.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2005 15:23:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-otf-2-pdf-problem/m-p/1068150#M93975</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-15T15:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: CONVERT_OTF_2_PDF problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-otf-2-pdf-problem/m-p/1068151#M93976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is the same if I download the internal table with pdf file with gui_download FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I don't think it's a email problem, isn't it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye &lt;/P&gt;&lt;P&gt;enzo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2005 15:29:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-otf-2-pdf-problem/m-p/1068151#M93976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-15T15:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: CONVERT_OTF_2_PDF problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-otf-2-pdf-problem/m-p/1068152#M93977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yeah it is not related to E-mail,&lt;/P&gt;&lt;P&gt;when you tried opening it then how the data displayed&lt;/P&gt;&lt;P&gt;is it readable or something else...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2005 16:36:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-otf-2-pdf-problem/m-p/1068152#M93977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-15T16:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: CONVERT_OTF_2_PDF problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-otf-2-pdf-problem/m-p/1068153#M93978</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;Is the file type you are using is "BIN" like in the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;BIN_FILESIZE =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;FILENAME = 'c:/testhem/myfile.pdf'&lt;/P&gt;&lt;P&gt;FILETYPE = 'BIN'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;DATA_TAB = lt_pdf_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and use lt_pdf_table in the "objbin" of the mail sending FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2005 17:44:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-otf-2-pdf-problem/m-p/1068153#M93978</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-15T17:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: CONVERT_OTF_2_PDF problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-otf-2-pdf-problem/m-p/1068154#M93979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;now I'm able to download the file and see it correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the problem is the email.&lt;/P&gt;&lt;P&gt;It's no possile opening the file attached to the email .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank enzo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Dec 2005 11:12:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-otf-2-pdf-problem/m-p/1068154#M93979</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-16T11:12:39Z</dc:date>
    </item>
  </channel>
</rss>

