‎2007 Feb 15 1:19 PM
Hi,
I am sending data from the application server to FTP server.But my problem is
in application server total internal table data (all records) are uploaded into application server but when i am sending this applicaiton server data to FTP server by using FTP_COMMAND fucntion module some times total records are not sednig to the ftp server.Here my issue is any limit for ftp server file data size or any limit of ftp server file time.How can overcome this problem.Could you please suggest.
Thanks,
shyla
‎2007 Feb 15 2:04 PM
hi,
think the limit is by 2 GB - if your file is greater try to split your file
What is the size of your file in MB?
I know, i've sent files ~1 GB with an Z-version of RSFTP004
A.
Message was edited by:
Andreas Mann
‎2007 Feb 15 2:07 PM
‎2007 Feb 15 2:11 PM
Hi shyla,
37 MB is not so large -
pls try report RSFTP004
pls reward useful anwswers
thank you
Andreas
‎2007 Feb 26 12:12 PM
hi,
is there any function module to copy file from application server to lotus server.
i m geting pdf file on application server but i want to transfer that pdf file from application server to lotus server.
if yes than give me suggestion.
please help me.
thanks in advanced.
‎2007 Sep 24 1:11 PM
Hello kumar,
Use the function module FTP_R3_TO_SERVER to save the data on the FTP server from the application server.
first u need to select in which mode u want to upload the file.
ascii or character mode.
pass the command ascii or character into the FTP_COMMAND field.
CALL FUNCTION 'FTP_COMMAND'
EXPORTING
handle = g_f_hdl
command = 'ascii'
TABLES
data = g_t_result
EXCEPTIONS
tcpip_error = 1
command_error = 2
data_error = 3.
CALL FUNCTION 'FTP_R3_TO_SERVER'
EXPORTING
handle = g_f_hdl
fname = p_dfile
character_mode = 'X'
TABLES
text = g_t_file
EXCEPTIONS
tcpip_error = 1
command_error = 2
data_error = 3
OTHERS = 4.
check the program RSFTP007.
Regards,
Phani.