Application Development 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: 

Upload file XLS from pres. server and then dowload same file to appl. serv.

Former Member
0 Kudos

How? It's possible?

It's a simple file trasfer but I don't know if it's possible with excel file.

Thanks for answers.

5 REPLIES 5

former_member194669
Active Contributor
0 Kudos

You need to use this fm to upload from presentation server


    call function 'TEXT_CONVERT_XLS_TO_SAP'
      exporting
        i_tab_raw_data       = wa_raw
        i_filename           = p_filename
      tables
        i_tab_converted_data = i_etab[]
      exceptions
        conversion_failed    = 1
        others               = 2.

for writing to application server you need to use OPEN DATASET

and write as tab delimited text file.

0 Kudos

The file xls to test have also images and different rows with different columns, each cell could also be colored, i should do the transfer on a most possible generic file excel.

Former Member
0 Kudos

If your purpse is to only transfer the file to the App server and not use the data, you can use CG3Z transaction.

0 Kudos

I'm on SAP NETWEAVER the transaction doesn't exist.

There's a similar?

Edited by: Avalor on Oct 17, 2008 6:24 PM

0 Kudos

I've found the solution at this link:

Thanks for support.