<?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: File format conversion error for .xlsx in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-format-conversion-error-for-xlsx/m-p/8031080#M1609845</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Parag,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried ABAP2XLSX yet?, if not try the below link,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://wiki.sdn.sap.com/wiki/display/ABAP/abap2xlsx" target="test_blank"&gt;http://wiki.sdn.sap.com/wiki/display/ABAP/abap2xlsx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Jul 2011 06:32:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-07-12T06:32:41Z</dc:date>
    <item>
      <title>File format conversion error for .xlsx</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-format-conversion-error-for-xlsx/m-p/8031077#M1609842</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 been working on MIS projects wherein most of time i am dealing with excel files which users do need for reporting purpose but the problem my system have MS Office 2003 and files are in .XLSX format ( MS Office 2007 )&lt;/P&gt;&lt;P&gt;and i have downloaded needed patch for it and have tested successfully whether its opening MS Office 2007 files.&lt;/P&gt;&lt;P&gt;Now the requirement is there is file in .XLSX format on desktop i need to read that files into SAP and download at another path &lt;/P&gt;&lt;P&gt;lets say on C:/ and i am using GUI upload and download FM which is upoloading and downloading but downloaded files are opening though i have installed converter at my end. Kindly provide alterantive FM to input .XLSX file in SAP and download the same on Server&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2011 11:45:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-format-conversion-error-for-xlsx/m-p/8031077#M1609842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-11T11:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: File format conversion error for .xlsx</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-format-conversion-error-for-xlsx/m-p/8031078#M1609843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Parag,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To upload an excel file into an SAP program try using FM &lt;STRONG&gt;TEXT_CONVERT_XLS_TO_SAP&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To download an excel file to your local drive from SAP program try using FM &lt;STRONG&gt;SAP_CONVERT_TO_XLS_FORMAT&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Rae Ellen Woytowiez&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2011 13:42:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-format-conversion-error-for-xlsx/m-p/8031078#M1609843</guid>
      <dc:creator>former_member182010</dc:creator>
      <dc:date>2011-07-11T13:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: File format conversion error for .xlsx</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-format-conversion-error-for-xlsx/m-p/8031079#M1609844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Parag,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check with below Function Modules to upload .XLSX file into SAP Program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'WS_FILENAME_GET'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      def_filename     = '*.XLSX'&lt;/P&gt;&lt;P&gt;      def_path         = 'C:\'&lt;/P&gt;&lt;P&gt;      mask             = ',&lt;STRONG&gt;.XLSX,&lt;/STRONG&gt;.*.'&lt;/P&gt;&lt;P&gt;      mode             = 's'&lt;/P&gt;&lt;P&gt;      title            = ''&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      filename         = w_file&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      inv_winsys       = 1&lt;/P&gt;&lt;P&gt;      no_batch         = 2&lt;/P&gt;&lt;P&gt;      selection_cancel = 3&lt;/P&gt;&lt;P&gt;      selection_error  = 4&lt;/P&gt;&lt;P&gt;      OTHERS           = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      filename                = w_file&lt;/P&gt;&lt;P&gt;      i_begin_col             = '1'&lt;/P&gt;&lt;P&gt;      i_begin_row             = '2' "we have a header row&lt;/P&gt;&lt;P&gt;      i_end_col               = '5'&lt;/P&gt;&lt;P&gt;      i_end_row               = '100'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      intern                  = it_import_table&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      inconsistent_parameters = 1&lt;/P&gt;&lt;P&gt;      upload_ole              = 2&lt;/P&gt;&lt;P&gt;      OTHERS                  = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE space.&lt;/P&gt;&lt;P&gt;    EXIT. " Drop out if there are issues&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To Download the .XLSX file:&lt;/P&gt;&lt;P&gt;If you have office '07 installed , it will automatically open similar to xlsx.&lt;/P&gt;&lt;P&gt;and you add the extension as .xlsx, i think it will be downloaded in that format only. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Maheswari N&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2011 06:25:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-format-conversion-error-for-xlsx/m-p/8031079#M1609844</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-12T06:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: File format conversion error for .xlsx</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-format-conversion-error-for-xlsx/m-p/8031080#M1609845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Parag,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried ABAP2XLSX yet?, if not try the below link,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://wiki.sdn.sap.com/wiki/display/ABAP/abap2xlsx" target="test_blank"&gt;http://wiki.sdn.sap.com/wiki/display/ABAP/abap2xlsx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2011 06:32:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-format-conversion-error-for-xlsx/m-p/8031080#M1609845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-12T06:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: File format conversion error for .xlsx</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-format-conversion-error-for-xlsx/m-p/8031081#M1609846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have used class CL_GUI_FRONTEND_SERVICES and file_copy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Sep 2011 10:41:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-format-conversion-error-for-xlsx/m-p/8031081#M1609846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-30T10:41:27Z</dc:date>
    </item>
  </channel>
</rss>

