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 upload

Former Member
0 Likes
548

How to upload an excel on application server ? Please suggst if there is any standard program available.

Thankss

4 REPLIES 4
Read only

Former Member
0 Likes
511

Hi ,

you can do this through Al11 transaction to upload file to application server .

or make use this functio module

CALL FUNCTION 'F4_DXFILENAME_TOPRECURSION'

EXPORTING

i_location_flag = 'A'

i_server = ''

fileoperation = 'R'

IMPORTING

o_path = p_ipfile

EXCEPTIONS

rfc_error = 1

error_with_gui = 2

OTHERS = 3.

IF sy-subrc <> 0.

MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno

WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.

ENDIF.

regards

naveen

Read only

Former Member
0 Likes
511

Use transaction CG3Z.

Read only

Former Member
0 Likes
511

Hi Saurabh,

By using T.Code CG3Z we can transfer file on Front-end system to application server.

& by using T.Code CG3Y we can transfer file on application server to Front-end

Edited by: pydi reddy on Nov 3, 2008 12:35 PM

Read only

Former Member
0 Likes
511

th