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

Uploading Flat file from an internal table without Header

Former Member
0 Likes
838

Hi All,

I am facing a problem.

I am using GUI_UPLOAD to upload tab delimited file into an internal table TBL_UPLOAD.

The flat file is having 6 fields with the header.

e.g. flat file structure

Vendor Material Porg plant DelTime PurGroup

130117 99474 8300 8340 10 100

I want to remove that header line while uploading the file to internal table.

How to do that?

Thanks and Regards,

Cooldeep

Hi All,

I am facing a problem.

I am using GUI_UPLOAD to upload tab delimited file into an internal table TBL_UPLOAD.

The flat file is having 6 fields with the header.

e.g. flat file structure

Vendor Material Porg plant DelTime PurGroup

130117 99474 8300 8340 10 100

I want to remove that header line while uploading the file to internal table.

How to do that?

Thanks and Regards,

Cooldeep

5 REPLIES 5
Read only

Former Member
0 Likes
674

Hi

In GUI_Upload In importing Part there is a paramerter called Header , make that one as a comment, do not pass any value there.

you will upload file without header.

With Regards

Nikunj Shah

Read only

0 Likes
674

Hi Nikunj,

Thanks for your quick reply....

I am already not using HEADER parameter.

Read only

Former Member
0 Likes
674

hiiii

you can process on internal tabel like using

DELETE it_tablename INDEX 1.

it will delete data from index 1.so header will be removed.

regards

twinkal

Edited by: twinkal patel on Jul 16, 2008 9:12 AM

Read only

0 Likes
674

Hi Twinkle,

As the data types of those fields are different, Uplaod will get failed because of the header.

Read only

0 Likes
674

Hi,

If flat file has header line...then I want to delete the same or if does not then nothing to do....just uplaod the file....