cancel
Showing results for 
Search instead for 
Did you mean: 

Reading an excel file without Microsoft Office installed

Former Member
0 Kudos

Hello,

Im looking for a way to read an excel file (XLS) without Microsoft Office installed on the server,

The server in question is the SAP application server, and installing office on it is very problematic.

All the methods i have found so far take into account that I have Office installed on the computer running the code, whether its the abap function 'ALSM_EXCEL_TO_INTERNAL_TABLE' or JAVA api's which create an ODBC driver or something.

is this possible in another way?

thanks in advance,

Accepted Solutions (0)

Answers (3)

Answers (3)

p_2_5_6_9_6_0
Active Participant
0 Kudos

Hi,

Its not possible without MS Office. A free alternative is OpenOffice or an open source library like POI.

If possible you can use a .csv file instead of an excel file for your processing. (Probably not helpful - but I just thought that I would mention it).

Thanks.

p256960

Former Member
0 Kudos
former_member182374
Active Contributor
0 Kudos

Hi Udi,

What about Apache POI?

http://poi.apache.org/spreadsheet/index.html

Omri