<?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: Function Module(which is released by SAP) for excel upload in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-which-is-released-by-sap-for-excel-upload/m-p/6986715#M1493359</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check  class &lt;STRONG&gt;CL_UA_EXCEL_TOOLS&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Jun 2010 14:40:58 GMT</pubDate>
    <dc:creator>kesavadas_thekkillath</dc:creator>
    <dc:date>2010-06-15T14:40:58Z</dc:date>
    <item>
      <title>Function Module(which is released by SAP) for excel upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-which-is-released-by-sap-for-excel-upload/m-p/6986711#M1493355</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;When we are trying to upload excel sheet from presentation server, when the excel sheet contains 65536 records using the following FMs, it behavaes in an unexpected manner.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GUI_UPLOAD--- the importing internal table from this FM is then passed to FM TEXT_CONVERT_XLS_TO_SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FM TEXT_CONVERT_XLS_TO_SAP shows a message in taskbar "Read and convert row &amp;lt;row_number&amp;gt;".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So when we use an excel file with 65563 rows, the FM goes into an infinite loop and the &amp;lt;row_number&amp;gt; in the task bar goes beyond 15lacs despite the excel file having only 65536 rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On further observation we found that the FM TEXT_CONVERT_XLS_TO_SAP is not released for customers. So we tried using FM ALSM_EXCEL_TO_INTERNAL_TABLE. But Even this is not released for customers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you guys please suggest a stable FM that is released for customers to upload such huge Excel data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Tirth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jun 2010 10:35:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-which-is-released-by-sap-for-excel-upload/m-p/6986711#M1493355</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-15T10:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module(which is released by SAP) for excel upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-which-is-released-by-sap-for-excel-upload/m-p/6986712#M1493356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tirth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used FM: ALSM_EXCEL_TO_INTERNAL_TABLE and it worked perfectly. I used this for a large no of entries as well.&lt;/P&gt;&lt;P&gt;Sample Code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
      EXPORTING
        filename                      = p_file
        i_begin_col                   = 1
        i_begin_row                   = 2
        i_end_col                     = 40
        i_end_row                     = 655356
      TABLES
        intern                        = gt_test
      EXCEPTIONS
        INCONSISTENT_PARAMETERS       = 1
        UPLOAD_OLE                    = 2
        OTHERS                        = 3
              .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope thjis helps.&lt;/P&gt;&lt;P&gt;Harsh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jun 2010 10:45:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-which-is-released-by-sap-for-excel-upload/m-p/6986712#M1493356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-15T10:45:22Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module(which is released by SAP) for excel upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-which-is-released-by-sap-for-excel-upload/m-p/6986713#M1493357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Harsh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the prompt reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The basic problem is that I need a FM that is released for Customer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If  you go into the attributes tab for the FM you ahve suggested, you will see that the FM is not released.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please suggest an FM which is released?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Tirth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jun 2010 11:40:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-which-is-released-by-sap-for-excel-upload/m-p/6986713#M1493357</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-15T11:40:35Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module(which is released by SAP) for excel upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-which-is-released-by-sap-for-excel-upload/m-p/6986714#M1493358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The only way you will get this, is if you copy the FM to your own.  All standard SAP FM's are only modifiable through Enhancement Point Technology.&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;JB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jun 2010 12:24:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-which-is-released-by-sap-for-excel-upload/m-p/6986714#M1493358</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-15T12:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module(which is released by SAP) for excel upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-which-is-released-by-sap-for-excel-upload/m-p/6986715#M1493359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check  class &lt;STRONG&gt;CL_UA_EXCEL_TOOLS&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jun 2010 14:40:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-which-is-released-by-sap-for-excel-upload/m-p/6986715#M1493359</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-06-15T14:40:58Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module(which is released by SAP) for excel upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-which-is-released-by-sap-for-excel-upload/m-p/6986716#M1493360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="green" __jive_macro_name="color"&gt;Moderator message - Welcome to SCN.

Please see note 933420.

Also bear in mind that ABAP developers have been using unreleased FMs for years. You do have to be aware though that at upgrade time, you have to test the programs that use them to ensure that they still work.

Also, Please read &lt;SPAN __jive_macro_name="thread" id="927634"&gt;&lt;/SPAN&gt; and &lt;SPAN __jive_macro_name="thread" id="1170968"&gt;&lt;/SPAN&gt; and [Asking Good Questions in the Forums to get Good Answers|/people/rob.burbank/blog/2010/05/12/asking-good-questions-in-the-forums-to-get-good-answers] before posting again.

Rob&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jun 2010 15:00:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-which-is-released-by-sap-for-excel-upload/m-p/6986716#M1493360</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-15T15:00:10Z</dc:date>
    </item>
  </channel>
</rss>

