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

how to get the files in presentation server while uploading?

Former Member
0 Likes
872

how to get the files in presentation server while uploading?

give me the function module name

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
848

For Uploading files from presentation Use Function Module <b>GUI_UPLOAD</b> & <b>WS_UPLOAD</b> (Obsolete).

Regds,

Vishal

how to get the files in presentation server while uploading?

give me the function module name

5 REPLIES 5
Read only

Former Member
0 Likes
849

For Uploading files from presentation Use Function Module <b>GUI_UPLOAD</b> & <b>WS_UPLOAD</b> (Obsolete).

Regds,

Vishal

Read only

0 Likes
848

i want to find flat files in my presentation server ? so what are the function modules can i use

Read only

0 Likes
848

Hi,

PARAMETERS: P_FILE LIKE RLGRAP-FILENAME DEFAULT C_PRES. "Prsnt Srvr

AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.

CALL FUNCTION 'WS_FILENAME_GET'

EXPORTING

DEF_PATH = P_FILE

MASK = ',..'

MODE = '0 '

TITLE = 'Choose File'

IMPORTING

FILENAME = P_FILE

EXCEPTIONS

INV_WINSYS = 1

NO_BATCH = 2

SELECTION_CANCEL = 3

SELECTION_ERROR = 4

OTHERS = 5.

Read only

Former Member
0 Likes
848

Hi,

use fm GUI_UPLOAD.

Jogdand M B

Read only

Former Member
0 Likes
848
PARAMETERS:p_file LIKE rlgrap-filename.

*Input Help for the Download Directory
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.

  CALL FUNCTION 'F4_FILENAME'
       EXPORTING
            program_name  = v_repid
            dynpro_number = syst-dynnr
            field_name    = 'P_FILE'
       IMPORTING
            file_name     = p_file.