2006 Jul 17 7:04 PM
I have to send a File (ASCII) from SAP to an other network. There is no SAP.
How can I send data to the other filesystem?
Is there a BAPI or with RFC?
I have to send a File (ASCII) from SAP to an other network. There is no SAP.
How can I send data to the other filesystem?
Is there a BAPI or with RFC?
2006 Jul 17 7:07 PM
Hi Daniel,
You can use FTP to send data file.
Please check this standard program.
RSEPSFTP
RSFTP002
RSFTP007
Hope this will help.
Regards,
Ferry Lianto
2006 Jul 17 7:42 PM
Daniel,
Use Func Module:
CALL FUNCTION 'EPS_FTP_PUT'
EXPORTING
RFC_DESTINATION = rfc_dest
LOCAL_FILE = loc_file
LOCAL_DIRECTORY = loc_dir
REMOTE_FILE = rem_file
REMOTE_DIRECTORY = rem_dir
OVERWRITE_MODE = over
TEXT_MODE = text
TRANSMISSION_MONITOR = moni
RECORDS_PER_TRANSFER = rpt
MONITOR_TITLE = gv_monitor_title
PROGRESS_TEXT = gv_progress_text
OBJECT_NAME = loc_file
IMPORTING
LOCAL_DIRECTORY = gv_local_dir
LOCAL_PATH = gv_local_path
REMOTE_DIRECTORY = gv_remote_dir
REMOTE_PATH = gv_remote_path
FILE_SIZE = gv_file_size
LOCAL_SYSTEM_INFO = gs_local_info
REMOTE_SYSTEM_INFO = gs_remote_info
EXCEPTIONS
OTHERS = 99.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |