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 with different Tabs contains data

Former Member
0 Likes
727

Hi All,

Is it possible to upload data into SAP from EXCEL file having 5 to 6 tabs containing data. All tabs data should go to different Internal tables or same internal tables.

Any help will be appreciated.

Regards

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
685

Hi,

Check these Threads...

[Different tabs|]

[Reading data from different tabs|]

Hi check this link

http://sap.ittoolbox.com/groups/technical-functional/sap-dev/downloading-excel-sheet-with-multiple-t...

Regards

Narin Nandivada

Hi All,

Is it possible to upload data into SAP from EXCEL file having 5 to 6 tabs containing data. All tabs data should go to different Internal tables or same internal tables.

Any help will be appreciated.

Regards

4 REPLIES 4
Read only

Former Member
0 Likes
685

Hi,

Use the fm:

ALSM_EXCEL_TO_INTERNAL_TABLE

eg:


types:  l_yprice_object_id type yprice_object_id.

DATA: itab TYPE STANDARD TABLE OF alsmex_tabline WITH HEADER LINE,
      filename type rlgrap-filename.

*  Set the path and filename to the file in filenet

  filename = 'C:\My Documents\..........'.

CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
  EXPORTING
    filename    = filename
    i_begin_col = 5
    i_begin_row = 2
    i_end_col   = 5
    i_end_row   = 10000
  TABLES
    intern      = itab.

Regards,

Subramanian

Edited by: Subramanian PL on Jul 25, 2008 11:32 AM

Read only

Former Member
0 Likes
685

Hi Subramanian,

Will this upload the data from the single excel sheet which is having Multiple spread sheets in it.

Can you please clarify my query.

Regards,

Venkatesh

Read only

Former Member
0 Likes
686

Hi,

Check these Threads...

[Different tabs|]

[Reading data from different tabs|]

Hi check this link

http://sap.ittoolbox.com/groups/technical-functional/sap-dev/downloading-excel-sheet-with-multiple-t...

Regards

Narin Nandivada

Read only

Former Member
0 Likes
685

in SDN this is Discussed some time back.

checck the weblog