<?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 Abap help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207041#M132528</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am uploading a .csv file into the internal table. The FM is working and the issue is  the flat file has 33 fields of which many are blank (they have no data from the input file)and only 7 fields get populated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hence I have declared the internal table with those fields only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The file format is in such a way that the there are two fields with data, then third fourth and fifth are blank again the sixth field is filled with data and the next few fields are blank.It is following that way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;obviously, the data is not sitting in the appropriate fields in the internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I rectify that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using the UPLOAD FM module. This is the code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of rec occurs 1,&lt;/P&gt;&lt;P&gt; pernr(8) type c,                       "Employee Number&lt;/P&gt;&lt;P&gt; zzpaycode(4) type c,                   " Pay code&lt;/P&gt;&lt;P&gt; stdaz(5) type p decimals 2,            " No of hours&lt;/P&gt;&lt;P&gt; bwgrl(9) type p decimals 4,             " Currency&lt;/P&gt;&lt;P&gt; zzshift(1) type n,                      " zzshift&lt;/P&gt;&lt;P&gt; begda(8) type c,                    "Pay period end date&lt;/P&gt;&lt;P&gt; exbel(8) type c,                       " Dst Account&lt;/P&gt;&lt;P&gt; flag(1) type c,&lt;/P&gt;&lt;P&gt;end of rec.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; call function 'UPLOAD'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      filename            = 'C:\Testdata\PRTRCSV53.csv'&lt;/P&gt;&lt;P&gt;      filetype            = 'ASC'&lt;/P&gt;&lt;P&gt;    importing&lt;/P&gt;&lt;P&gt;      cancel              = answer&lt;/P&gt;&lt;P&gt;      act_filename        = filename&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      data_tab            = rec&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      conversion_error    = 1&lt;/P&gt;&lt;P&gt;      invalid_table_width = 2&lt;/P&gt;&lt;P&gt;      invalid_type        = 3&lt;/P&gt;&lt;P&gt;      no_batch            = 4&lt;/P&gt;&lt;P&gt;      unknown_error       = 5&lt;/P&gt;&lt;P&gt;      others              = 6.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Vinu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Mar 2006 16:29:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-23T16:29:54Z</dc:date>
    <item>
      <title>Abap help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207041#M132528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am uploading a .csv file into the internal table. The FM is working and the issue is  the flat file has 33 fields of which many are blank (they have no data from the input file)and only 7 fields get populated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hence I have declared the internal table with those fields only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The file format is in such a way that the there are two fields with data, then third fourth and fifth are blank again the sixth field is filled with data and the next few fields are blank.It is following that way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;obviously, the data is not sitting in the appropriate fields in the internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I rectify that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using the UPLOAD FM module. This is the code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of rec occurs 1,&lt;/P&gt;&lt;P&gt; pernr(8) type c,                       "Employee Number&lt;/P&gt;&lt;P&gt; zzpaycode(4) type c,                   " Pay code&lt;/P&gt;&lt;P&gt; stdaz(5) type p decimals 2,            " No of hours&lt;/P&gt;&lt;P&gt; bwgrl(9) type p decimals 4,             " Currency&lt;/P&gt;&lt;P&gt; zzshift(1) type n,                      " zzshift&lt;/P&gt;&lt;P&gt; begda(8) type c,                    "Pay period end date&lt;/P&gt;&lt;P&gt; exbel(8) type c,                       " Dst Account&lt;/P&gt;&lt;P&gt; flag(1) type c,&lt;/P&gt;&lt;P&gt;end of rec.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; call function 'UPLOAD'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      filename            = 'C:\Testdata\PRTRCSV53.csv'&lt;/P&gt;&lt;P&gt;      filetype            = 'ASC'&lt;/P&gt;&lt;P&gt;    importing&lt;/P&gt;&lt;P&gt;      cancel              = answer&lt;/P&gt;&lt;P&gt;      act_filename        = filename&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      data_tab            = rec&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      conversion_error    = 1&lt;/P&gt;&lt;P&gt;      invalid_table_width = 2&lt;/P&gt;&lt;P&gt;      invalid_type        = 3&lt;/P&gt;&lt;P&gt;      no_batch            = 4&lt;/P&gt;&lt;P&gt;      unknown_error       = 5&lt;/P&gt;&lt;P&gt;      others              = 6.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Vinu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 16:29:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207041#M132528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T16:29:54Z</dc:date>
    </item>
    <item>
      <title>Re: Abap help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207042#M132529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First, do not use obsolete function modules like UPLOAD. Use GUI_UPLOAD instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next, you cannot have your internal table defined in one way and the file coming in another way(in terms of the number of columns). Your spreadsheet columns should match your internal table columns.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 16:33:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207042#M132529</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T16:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: Abap help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207043#M132530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinu,&lt;/P&gt;&lt;P&gt; Why dont you use FM GUI_UPLOAD instead of UPLOAD.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 16:34:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207043#M132530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T16:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: Abap help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207044#M132531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why do advise him to use an obsolete FM module instead of an obsolete FM? Both FM are absolete!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 16:43:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207044#M132531</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2006-03-23T16:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Abap help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207045#M132532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As of which version, GUI_UPLOAD is obsolete Rainer Hubenthal?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 16:45:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207045#M132532</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T16:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: Abap help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207046#M132533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried this it did not work....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt;  exporting&lt;/P&gt;&lt;P&gt;    filename                      = 'C:\Testdata\PRTRCSV53.csv'&lt;/P&gt;&lt;P&gt;    filetype                      = 'ASC'&lt;/P&gt;&lt;P&gt;  importing&lt;/P&gt;&lt;P&gt;    cancel              = answer&lt;/P&gt;&lt;P&gt;    act_filename        = filename&lt;/P&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;    data_tab                      = rec&lt;/P&gt;&lt;P&gt; exceptions&lt;/P&gt;&lt;P&gt;   file_open_error               = 1&lt;/P&gt;&lt;P&gt;   file_read_error               = 2&lt;/P&gt;&lt;P&gt;   no_batch                      = 3&lt;/P&gt;&lt;P&gt;   gui_refuse_filetransfer       = 4&lt;/P&gt;&lt;P&gt;   invalid_type                  = 5&lt;/P&gt;&lt;P&gt;   no_authority                  = 6&lt;/P&gt;&lt;P&gt;   unknown_error                 = 7&lt;/P&gt;&lt;P&gt;   bad_data_format               = 8&lt;/P&gt;&lt;P&gt;   header_not_allowed            = 9&lt;/P&gt;&lt;P&gt;   separator_not_allowed         = 10&lt;/P&gt;&lt;P&gt;   header_too_long               = 11&lt;/P&gt;&lt;P&gt;   unknown_dp_error              = 12&lt;/P&gt;&lt;P&gt;   access_denied                 = 13&lt;/P&gt;&lt;P&gt;   dp_out_of_memory              = 14&lt;/P&gt;&lt;P&gt;   disk_full                     = 15&lt;/P&gt;&lt;P&gt;   dp_timeout                    = 16&lt;/P&gt;&lt;P&gt;   others                        = 17 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vinu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 16:49:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207046#M132533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T16:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: Abap help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207047#M132534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No Vinu, GUI_UPLOAD will not solve your problem, look at my second point of the initial response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suggested using GUI_UPLOAD only because the other one is obsolete.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 16:51:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207047#M132534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T16:51:40Z</dc:date>
    </item>
    <item>
      <title>Re: Abap help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207048#M132535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think Rainer got it mixed up with WS_UPLOAD.. I dont think GUI_UPLOAD is OBSOLETE as yet.. at least not on 47..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vinu,&lt;/P&gt;&lt;P&gt;after changing the function call to GUI_UPLOAD, you should  upload the file in to another itab..loop at that &amp;amp; transfer the relevant fields to your REC table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 16:52:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207048#M132535</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-03-23T16:52:15Z</dc:date>
    </item>
    <item>
      <title>Re: Abap help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207049#M132536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The version ECC5.0 and it is an exisiting program where the FM GUI_UPLOAD  part of the code was commented and the FM 'UPLOAD' was used. I reversed that and it did nto work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vinu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 16:54:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207049#M132536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T16:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: Abap help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207050#M132537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinu,&lt;/P&gt;&lt;P&gt;  Your internal table should have the same amount of fields as your file as Srinivas said.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 16:54:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207050#M132537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T16:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: Abap help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207051#M132538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I work on ECC5.0 too...But checking the UPLOAD FM Code...They're using WS_UPLOAD, so UPLOAD should be obsolet too...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 16:56:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207051#M132538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T16:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Abap help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207052#M132539</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;it's quite the same if you use UPLOAD or GUI_UPLOAD, the problem is that these FM's will not splitt the .csv lines into your table fields. You 'll have to do that in your program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: begin of rec occurs 1 ,&lt;/P&gt;&lt;P&gt;      contents(100),  " just long enough &lt;/P&gt;&lt;P&gt;      end of rec, &lt;/P&gt;&lt;P&gt;      begin of rec_a occurs 1,&lt;/P&gt;&lt;P&gt;      .... (your fields)&lt;/P&gt;&lt;P&gt;      end of rec_a.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Call function 'UPLOAD' &lt;/P&gt;&lt;P&gt;      .... &lt;/P&gt;&lt;P&gt;      data_tab = rec&lt;/P&gt;&lt;P&gt;       ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      loop at rec.&lt;/P&gt;&lt;P&gt;      clear rec_a.&lt;/P&gt;&lt;P&gt;      splitt rec at ';' into  rec_a-(your first field) &lt;/P&gt;&lt;P&gt;                              ... &lt;/P&gt;&lt;P&gt;      append rec_a.&lt;/P&gt;&lt;P&gt;      endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Wolfgang&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 16:57:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207052#M132539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T16:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Abap help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207053#M132540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you are gettin mixed up. Forget about what all of us are saying about UPLOAD function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To your problem, there are very few options. One is to define your internal table to have exact number of fields as you have values(blank or otherwise) in your csv file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another option as Suresh mentioned, is to define an internal table with just one field of length(maximum length needed) x. Upload the file into this internal table. You will then loop at this internal table and load your other table as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at itab.
  split itab-record at ',' into final_itab-field1
                                some_junk_field
                                final_itab-field2
                                some_junk_field
                                some_junk_field
                                final_itab-field3.
  append final_itab.
  clear final_itab.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here some_junk_field is some variable whose value you don't care about.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 17:01:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207053#M132540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T17:01:54Z</dc:date>
    </item>
    <item>
      <title>Re: Abap help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207054#M132541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about if I use 'READ DATASET... to read the .csv input file and using the 'split' command TO split the values into the appropriate fields in the internal table instead using the GUI_UPLOAD FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vinu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 17:04:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207054#M132541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T17:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: Abap help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207055#M132542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;READ DATASET will work fine with your application server files, but I have never used it with desktop files.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 17:05:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207055#M132542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T17:05:48Z</dc:date>
    </item>
    <item>
      <title>Re: Abap help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207056#M132543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got your point.I shall go ahead with it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vinu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 17:08:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207056#M132543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T17:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: Abap help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207057#M132544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It would make no difference, it won't splitt your input into your table fields. Use the splitt-command.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 17:12:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-help/m-p/1207057#M132544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T17:12:10Z</dc:date>
    </item>
  </channel>
</rss>

