‎2008 Nov 03 11:19 AM
How to upload an excel on application server ? Please suggst if there is any standard program available.
Thankss
‎2008 Nov 03 11:23 AM
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
‎2008 Nov 03 11:26 AM
‎2008 Nov 03 11:27 AM
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
‎2008 Nov 04 8:08 AM