‎2008 Aug 27 11:32 AM
Hi,
While uploading data from local file having the header text into interal table using the GUI_UPLOAD function module,there is problem in upload because of header text in file, do we have any option in this FM itself to skip this header text and upload from sdecond line because as per our requirement we can't delete this header text from the file.
‎2008 Aug 27 11:37 AM
Hi,
But if u don't want that data then u can delete it from the interbal table which is passed to the Guiupload.
Rhea.
‎2008 Aug 27 11:44 AM
Hi Manish,
Do you have the problem while uploading? Is it giving any error?
If not, if your uploading is successful into the internal table, then delete the first row, which is header, from the internal table using index eq 1.
Regards,
Chandra Sekhar
‎2008 Aug 27 11:50 AM
hi,
You can upload the Data with the Header text and then you can Delete the Header line from the Internal table which will hold the data.
Use
Delete <itab> index 1.
Regards
Sumit Agarwal
‎2008 Sep 09 1:46 PM