<?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: Excel Data upload into the internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-data-upload-into-the-internal-table/m-p/3245655#M774670</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Follow this example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF i_file_data OCCURS 0,&lt;/P&gt;&lt;P&gt;col1 TYPE text60,&lt;/P&gt;&lt;P&gt;col2 TYPE text60,&lt;/P&gt;&lt;P&gt;col3 TYPE text60,&lt;/P&gt;&lt;P&gt;col4 TYPE text60,&lt;/P&gt;&lt;P&gt;col5 TYPE text60,&lt;/P&gt;&lt;P&gt;col6 TYPE text60,&lt;/P&gt;&lt;P&gt;END OF i_file_data.&lt;/P&gt;&lt;P&gt;parameter: p_local TYPE rlgrap-filename MODIF ID m2.&lt;/P&gt;&lt;P&gt;data: i_raw TYPE truxs_t_text_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION &lt;STRONG&gt;'TEXT_CONVERT_XLS_TO_SAP'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;i_field_seperator = 'X'&lt;/P&gt;&lt;P&gt;i_tab_raw_data = i_raw&lt;/P&gt;&lt;P&gt;i_filename = p_local&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;i_tab_converted_data = i_file_data[]&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;conversion_failed = 1&lt;/P&gt;&lt;P&gt;OTHERS = 2&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;IF sy-subrc 0.&lt;/P&gt;&lt;P&gt;MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;ENDIF. " sy-subrc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Jan 2008 17:28:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-10T17:28:41Z</dc:date>
    <item>
      <title>Excel Data upload into the internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-data-upload-into-the-internal-table/m-p/3245653#M774668</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 a scenerio, in which i have to upload the data from the excel sheet  into internal table for further processing. As the data volume is about 40000+ records  FM ALSM_EXCEL_TO_INTERNAL_TABLE and  KCD_EXCEL_OLE_TO_INT_CONVERT  is not of much use . Is there any other way of processing the file ?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Saravanan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 16:36:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-data-upload-into-the-internal-table/m-p/3245653#M774668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T16:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: Excel Data upload into the internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-data-upload-into-the-internal-table/m-p/3245654#M774669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;try to convert the file in DAT format and use GUI_UPLOAD for uploading the data.&lt;/P&gt;&lt;P&gt;Using OLE integrations method are not the better way for loadings so bigger file.&lt;/P&gt;&lt;P&gt;bye &lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 17:00:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-data-upload-into-the-internal-table/m-p/3245654#M774669</guid>
      <dc:creator>mnicolai_77</dc:creator>
      <dc:date>2008-01-10T17:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: Excel Data upload into the internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-data-upload-into-the-internal-table/m-p/3245655#M774670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Follow this example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF i_file_data OCCURS 0,&lt;/P&gt;&lt;P&gt;col1 TYPE text60,&lt;/P&gt;&lt;P&gt;col2 TYPE text60,&lt;/P&gt;&lt;P&gt;col3 TYPE text60,&lt;/P&gt;&lt;P&gt;col4 TYPE text60,&lt;/P&gt;&lt;P&gt;col5 TYPE text60,&lt;/P&gt;&lt;P&gt;col6 TYPE text60,&lt;/P&gt;&lt;P&gt;END OF i_file_data.&lt;/P&gt;&lt;P&gt;parameter: p_local TYPE rlgrap-filename MODIF ID m2.&lt;/P&gt;&lt;P&gt;data: i_raw TYPE truxs_t_text_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION &lt;STRONG&gt;'TEXT_CONVERT_XLS_TO_SAP'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;i_field_seperator = 'X'&lt;/P&gt;&lt;P&gt;i_tab_raw_data = i_raw&lt;/P&gt;&lt;P&gt;i_filename = p_local&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;i_tab_converted_data = i_file_data[]&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;conversion_failed = 1&lt;/P&gt;&lt;P&gt;OTHERS = 2&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;IF sy-subrc 0.&lt;/P&gt;&lt;P&gt;MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;ENDIF. " sy-subrc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 17:28:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-data-upload-into-the-internal-table/m-p/3245655#M774670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T17:28:41Z</dc:date>
    </item>
  </channel>
</rss>

