<?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: regarding CONVERT_OTF in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-convert-otf/m-p/6009797#M1345759</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;yes it will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is not OBSOLETE in ECC 6.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can check OBSOLETE function modules in table RODIR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 Jul 2009 08:12:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-31T08:12:57Z</dc:date>
    <item>
      <title>regarding CONVERT_OTF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-convert-otf/m-p/6009796#M1345758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;iam doing uicode checking, in 1 program iam using FM &lt;STRONG&gt;CONVERT_OTF&lt;/STRONG&gt; . This FM will work on ecc 6.0 or not... if not what fm i will use to get the functionality of CONVERT_OTF.. BECAUSE IN THIS IAM PASSING TABLE,  BIN_FILESIZE , LINE...&lt;/P&gt;&lt;P&gt;I WANT THIS.. SO HELP ME&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 08:04:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-convert-otf/m-p/6009796#M1345758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-31T08:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: regarding CONVERT_OTF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-convert-otf/m-p/6009797#M1345759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;yes it will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is not OBSOLETE in ECC 6.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can check OBSOLETE function modules in table RODIR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 08:12:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-convert-otf/m-p/6009797#M1345759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-31T08:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: regarding CONVERT_OTF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-convert-otf/m-p/6009798#M1345760</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;Yes this FM will work in ECC6.0. i have created a code using this and it is working fine.&lt;/P&gt;&lt;P&gt;Pasting the code for reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: likp, lips,itcpo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: pdftab type standard TABLE OF tline,&lt;/P&gt;&lt;P&gt;datab TYPE standard TABLE OF itcoo.&lt;/P&gt;&lt;P&gt;itcpo-tdgetotf = 'X'.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'OPEN_FORM'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;DEVICE = 'PRINTER'&lt;/P&gt;&lt;P&gt;DIALOG = 'X'&lt;/P&gt;&lt;P&gt;FORM = 'Z_PRAC'&lt;/P&gt;&lt;P&gt;LANGUAGE = SY-LANGU&lt;/P&gt;&lt;P&gt;OPTIONS = itcpo&lt;/P&gt;&lt;P&gt;// call script using start_form and write_form.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'END_FORM'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;RESULT = gi_ofc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CLOSE_FORM'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;OTFDATA = datab&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;UNOPENED = 1&lt;/P&gt;&lt;P&gt;BAD_PAGEFORMAT_FOR_PRINT = 2&lt;/P&gt;&lt;P&gt;SEND_ERROR = 3&lt;/P&gt;&lt;P&gt;SPOOL_ERROR = 4&lt;/P&gt;&lt;P&gt;CODEPAGE = 5&lt;/P&gt;&lt;P&gt;OTHERS = 6&lt;/P&gt;&lt;P&gt;.&lt;/P&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 = BINFILE&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;otf = datab&lt;/P&gt;&lt;P&gt;lines = pdftab&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;P&gt;BIN_FILESIZE = binfile&lt;/P&gt;&lt;P&gt;filename = 'D:\MYFILE.PDF' //give the address where u want output.&lt;/P&gt;&lt;P&gt;FILETYPE = 'BIN'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;data_tab = pdftab&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajesh Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 08:35:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-convert-otf/m-p/6009798#M1345760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-31T08:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: regarding CONVERT_OTF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-convert-otf/m-p/6009799#M1345761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Manish Sharma on Jul 31, 2009 12:46 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 09:10:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-convert-otf/m-p/6009799#M1345761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-31T09:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: regarding CONVERT_OTF</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-convert-otf/m-p/6009800#M1345762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manish,&lt;/P&gt;&lt;P&gt;       &lt;/P&gt;&lt;P&gt; I had used CONVERT_OTF on ecc 6.0 and it's working try again it will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 10:48:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-convert-otf/m-p/6009800#M1345762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-31T10:48:48Z</dc:date>
    </item>
  </channel>
</rss>

