Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

While uploading data from local file

Former Member
0 Likes
486

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.

4 REPLIES 4
Read only

Former Member
0 Likes
462

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.

Read only

Former Member
0 Likes
462

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

Read only

Former Member
0 Likes
462

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

Read only

Former Member
0 Likes
462

Problem has been resolved