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

application server directory and file browser

Former Member
0 Likes
1,068

Is there existing in SAP a program that can display directories and files that enable me to delete, move, upload, overwrite etc files on a unix server? So it will have similar functionality as e.g. MS Windows Explorer, but an ABAP program. If you have for instance a custom created version, I'd appreciate if you'd share. Thank you and best regards, Adrian

1 ACCEPTED SOLUTION
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
596

Hi you can make use of fm's

F4_DXFILENAME_TOPRECURSION - display directories and files

ARCHIVFILE_SERVER_TO_SERVER - move files, copy files etc.

EPS_DELETE_FILE - delete file

EPS_OPEN_INPUT_FILE - open file for input

EPS_OPEN_OUTPUT_FILE - open file for output

If you give the same name of a file which is already residing in the server then it gets overwritten.

Hope you can build a program using this fm's.

2 REPLIES 2
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
597

Hi you can make use of fm's

F4_DXFILENAME_TOPRECURSION - display directories and files

ARCHIVFILE_SERVER_TO_SERVER - move files, copy files etc.

EPS_DELETE_FILE - delete file

EPS_OPEN_INPUT_FILE - open file for input

EPS_OPEN_OUTPUT_FILE - open file for output

If you give the same name of a file which is already residing in the server then it gets overwritten.

Hope you can build a program using this fm's.

Read only

0 Likes
596

Thank you Keshav!