‎2010 Jul 08 10:03 AM
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
‎2010 Jul 08 10:22 AM
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.
‎2010 Jul 08 10:22 AM
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.
‎2010 Jul 15 6:46 AM