<?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: Dynamic upload file data to internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768087#M1677021</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;We are comfortable in making a dynamic internal table, &lt;/P&gt;&lt;P&gt;We are facing problem in uploading a dynamic file.&lt;/P&gt;&lt;P&gt;We are not sure how the data will be uploaded to a dynamic internal table.&lt;/P&gt;&lt;P&gt;Also, how can we know about the file format prior to capture this uploaded data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Jun 2012 09:53:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-06-01T09:53:55Z</dc:date>
    <item>
      <title>Dynamic upload file data to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768083#M1677017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are having a requirement wherein we need to upload an excel file( containing only two static data and the remaining columns are dynamic based on the fiscal year ) to a internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way in SAP ABAP to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Waiting for your replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jun 2012 08:43:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768083#M1677017</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-01T08:43:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic upload file data to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768084#M1677018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume, that you know how to upload a CSV-File.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would suggest, that you create the following datatypes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) An internal table representing the whole line of your Excel-File including all static fields&lt;/P&gt;&lt;P&gt;2) An internal table representing your dynamic values &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The concrete structure should looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of dyn_data&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; field&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type string, "or number or key or...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; value&amp;nbsp;&amp;nbsp; type string, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end of dyn_data.&lt;/P&gt;&lt;P&gt;types: tt_dynvalues type table of dyn_data.&lt;/P&gt;&lt;P&gt;types: begin of csv_data&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; field1 type string,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; field2 type string,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dyn_values type tt_dynvalues,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end of csv_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with this data-structures, you can make a loop over your csv-data and place the static data in your csv_data-table and after this, you can iterate over your dynamic values and place them into the concrete dyn_values-table of your current line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Hendrik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jun 2012 09:25:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768084#M1677018</guid>
      <dc:creator>hendrik_brandes</dc:creator>
      <dc:date>2012-06-01T09:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic upload file data to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768085#M1677019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can create a dynamic internal table for handling this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;TYPE-POOLS: slis. &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt; FIELD-SYMBOLS: &amp;lt;t_dyntable&amp;gt; TYPE STANDARD TABLE,&amp;nbsp; “ Dynamic internal table name &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fs_dyntable&amp;gt;,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; “ Field symbol to create work area &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fs_fldval&amp;gt; type any.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; “ Field symbol to assign values&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;DATA:&amp;nbsp;&amp;nbsp; t_newtable TYPE REF TO data, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; t_newline&amp;nbsp; TYPE REF TO data, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; t_fldcat&amp;nbsp;&amp;nbsp; TYPE slis_t_fldcat_alv, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; t_fldcat&amp;nbsp;&amp;nbsp; TYPE lvc_t_fcat, &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa_it_fldcat TYPE lvc_s_fcat.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;* Create fields . &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CLEAR wa_it_fldcat. &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa_it_fldcat-fieldname = 'STATIC1'. &lt;/SPAN&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa_it_fldcat-datatype = 'CHAR'. &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa_it_fldcat-intlen = 10. &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; APPEND wa_it_fldcat TO t_fldcat. &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CLEAR wa_it_fldcat. &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa_it_fldcat-fieldname = 'STATIC2'. &lt;/SPAN&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa_it_fldcat-datatype = 'CHAR'. &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa_it_fldcat-intlen = 10. &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; APPEND wa_it_fldcat TO t_fldcat. &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;IF fiscalyear = '2011'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CLEAR wa_it_fldcat. &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa_it_fldcat-fieldname = 'DYNAMIC1'. &lt;/SPAN&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa_it_fldcat-datatype = 'CHAR'. &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa_it_fldcat-intlen = 10. &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; APPEND wa_it_fldcat TO t_fldcat. &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;else.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CLEAR wa_it_fldcat. &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa_it_fldcat-fieldname = 'DYNAMIC2'. &lt;/SPAN&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa_it_fldcat-datatype = 'NUMC'. &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa_it_fldcat-intlen = 10. &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; APPEND wa_it_fldcat TO t_fldcat. &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;endif.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;* Create dynamic internal table and assign to FS &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp; CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; EXPORTING &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_fieldcatalog = t_fldcat &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IMPORTING &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ep_table&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = t_newtable.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp; ASSIGN t_newtable-&amp;gt;* TO &amp;lt;t_dyntable&amp;gt;.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;* Create dynamic work area and assign to FS &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp; CREATE DATA t_newline LIKE LINE OF &amp;lt;t_dyntable&amp;gt;. &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: justify;"&gt;&lt;SPAN style="font-family: Arial;"&gt;&amp;nbsp; ASSIGN t_newline-&amp;gt;* TO &amp;lt;fs_dyntable&amp;gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Upload the data from excel to the &amp;lt;t_dyntable&amp;gt; table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Shambu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jun 2012 09:37:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768085#M1677019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-01T09:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic upload file data to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768086#M1677020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Shambu, &lt;/P&gt;&lt;P&gt;We are comfortable in making a dynamic internal table, &lt;/P&gt;&lt;P&gt;We are facing problem in uploading a dynamic file.&lt;/P&gt;&lt;P&gt;We are not sure how the data will be uploaded to a dynamic internal table.&lt;/P&gt;&lt;P&gt;Also, how can we know about the file format prior to capture this uploaded data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jun 2012 09:53:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768086#M1677020</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-01T09:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic upload file data to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768087#M1677021</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;We are comfortable in making a dynamic internal table, &lt;/P&gt;&lt;P&gt;We are facing problem in uploading a dynamic file.&lt;/P&gt;&lt;P&gt;We are not sure how the data will be uploaded to a dynamic internal table.&lt;/P&gt;&lt;P&gt;Also, how can we know about the file format prior to capture this uploaded data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jun 2012 09:53:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768087#M1677021</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-01T09:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic upload file data to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768088#M1677022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What kind of file are you uploading?&lt;/P&gt;&lt;P&gt;CSV, Tab Delimited or simple excel file.&lt;/P&gt;&lt;P&gt;Do you know the maximum number of columns this file will have?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jun 2012 10:09:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768088#M1677022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-01T10:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic upload file data to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768089#M1677023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We are uploading simple excel file, the thing is we are unable to identify the maximum number of columns, as number of columns may vary with respect to year.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jun 2012 10:34:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768089#M1677023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-01T10:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic upload file data to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768090#M1677024</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;Probably you can use a Tab delimited file and upload the contents into a string table.&lt;/P&gt;&lt;P&gt;Loop at the string table and split the contents at TAB into another table .&lt;/P&gt;&lt;P&gt;Split wa_Data AT seperator into table lt_values.&lt;/P&gt;&lt;P&gt;The number of rows correspond to the number of columns in the sheet.&lt;/P&gt;&lt;P&gt;After that create a dynamic table with the same no of columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shambu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jun 2012 10:55:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768090#M1677024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-01T10:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic upload file data to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768091#M1677025</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;just look at my coding above. There you will a have an initial structure to handle unlimited columns of data without any dynamic table-programming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regard: Using a dynamic table means, that you are using a non-typed data-type within your application and this leads into very complex coding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume, that your dynamic value are always the same datatype. If not, you can think about using reference data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Hendrik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jun 2012 10:57:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768091#M1677025</guid>
      <dc:creator>hendrik_brandes</dc:creator>
      <dc:date>2012-06-01T10:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic upload file data to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768092#M1677026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i tried this but it's showing run time error. that field symbol is not assigned.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2012 09:32:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-upload-file-data-to-internal-table/m-p/8768092#M1677026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-09-05T09:32:46Z</dc:date>
    </item>
  </channel>
</rss>

