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

upload excel file

Former Member
0 Likes
520

Hi all!

can anyone tell me how to upload the data containing 750 char( in single column )of an excel file into an internal table.

my requirement is to upload the data using bdc.

thanks in advance

susmita

Hi all!

can anyone tell me how to upload the data containing 750 char( in single column )of an excel file into an internal table.

my requirement is to upload the data using bdc.

thanks in advance

susmita

3 REPLIES 3
Read only

Former Member
0 Likes
492

Use function module "GUI_UPLOAD"

Read only

Former Member
0 Likes
492

use GUI_UPLOAD AND TEXT_CONVERT_XLS_TO_SAP Functional Module

- Saru

Read only

Former Member
0 Likes
492

Try using this

*-- Internal table to upload file line by line

DATA : BEGIN OF t_text OCCURS 0,

line(750), " Flat file data

END OF t_text.

and use the FM GUI_UPLOAD

Madhavi