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

Excel Data Upload into Internal Tables

Former Member
0 Likes
531

I have an excel workbook with 2 worksheets in them.

I need to upload each of these worksheets in 2 different internal tables.

How can i achieve this ?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
500

Hi,

Did you try using 'ALSM_EXCEL_TO_INTERNAL_TABLE' function module?

Rgds,

HR

I have an excel workbook with 2 worksheets in them.

I need to upload each of these worksheets in 2 different internal tables.

How can i achieve this ?

3 REPLIES 3
Read only

Former Member
0 Likes
500

Hi,

Check this thread .in this you can see the solution.

Regards

vijay

Read only

Former Member
0 Likes
501

Hi,

Did you try using 'ALSM_EXCEL_TO_INTERNAL_TABLE' function module?

Rgds,

HR

Read only

Former Member
0 Likes
500

Hi,

use FM <b>ALSM_EXCEL_TO_INTERNAL_TABLE</b> or <b>GUI_UPLOAD</b> fm..

CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'

EXPORTING

FILENAME = P_PFILE

I_BEGIN_COL = 1

I_BEGIN_ROW = 1

I_END_COL = 2

I_END_ROW = 3000

TABLES

INTERN = IT_EXCEL

* EXCEPTIONS

* INCONSISTENT_PARAMETERS = 1

* UPLOAD_OLE = 2

* OTHERS = 3

Check this thread ..

Regards,

Santosh

Message was edited by: Santosh Kumar P