Need to send file to a server... help/

Hello, I need to upload a piece of music to a server in Germany. I've cut and pasted the link (ftp.... etc) and it's loaded up into the side of my finder window.
I can see other files in there but whenever i try and drag and drop my file in it say's that 'the item "File name" cannpt be moved because "server address" cannont be modified.
Thing is, my friend uses the same server on his PC and doesn't have the same message. He's able to just upload his files straight away.
Next to the password i've been given there's a thing that say's 'port 21'. Not sure if that has anything to do with it... please help. it's quite urgent

Sounds like a firewall issue. Check out these articles:
Mac OS X 10.2 or Later: Cannot Copy to FTP Servers in the Finder
You can use the Connect To Server command to connect to an FTP server in the Finder, but you will have read-only access. You cannot copy, or upload, to an FTP volume in the Finder.
File Transfer Protocol (FTP) server volumes available in the Finder have read-only access, even when the FTP server is set to allow you write access.
If you want to copy files from a Mac OS X computer to an FTP server, you need to use an application other than the Finder.
You can use the Terminal utility or a third-party FTP utility such as:
* Interarchy, by Stairways Software (http://interarchy.com/)
* Fetch, by Fetch Softworks (http://fetchsoftworks.com/)
* Transmit, by Panic, Inc. (http://www.panic.com/transmit/)
Important: Mention of third-party websites and products is for informational purposes only and constitutes neither an endorsement nor a recommendation. Apple assumes no responsibility with regard to the selection, performance or use of information or products found at third-party websites. Apple provides this only as a convenience to our users. Apple has not tested the information found on these sites and makes no representations regarding its accuracy or reliability. There are dangers inherent in the use of any information or products found on the Internet, and Apple assumes no responsibility in this regard. Please understand that a third-party site is independent from Apple and that Apple has no control over the content on that website.
and
http://docs.info.apple.com/article.html?artnum=302831
and...
http://docs.info.apple.com/article.html?path=Mac/10.4/en/mh609.html
Should be an easy fix. Good luck, and be sure to award points if it was helpful.

Similar Messages

  • Urgent.... Help Needed for Storing file in Application Server

    Hi All,
    I have a requirement where in I have to save a file in Application Server.
    File is of 141 Character Length, so there can be spaces left at the end.
    When I am downloading the file into Application Sever and then downloading the same file from Application Server to Presentation into a notepad then the spaces at the end are truncating.
    I want that the file that is generated should be of 141 character though if there may be spaces at the end.
    It will be great if you can help me out in this.
    Thanks in Advance.
    Jayant Sahu.

    when downloading to App server, you need to specify the LENGTH option on your TRANSFER ststement to keep fixed length.  You must also use a STRING type variable in your transfer.
    From Documentation on Transfer command:
    <b>If the file was opened as a text file or a legacy text file, the trailing blank characters are deleted for all data objects, except for those of data type string. The line end marker defined when the file was opened is then added to the remaining content of the data object or to the result of the conversion, and the final result is written byte-by-byte to the file.</b>
    There also used to be a problem with WS_DOWNLOAD - you had to do the following:
    Maintaining Trailing spaces when downloading to PC
    Before calling DOWNLOAD or WS_DOWNLOAD, do a perform SET_TRAIL_BLANKS(saplgrap) using 'X'
    To set the length of each record including your blanks add this code: perform SET_FIXLEN(saplgrap) using '0' '100'
    Don't think this is needed any more.
    Andrew

  • How to send File on application server for Attachment

    Hi,
    Friends in my application file is to be sent with Email as an attachment.
    all this to be done via servlet for that i have to send the file to application server from there servlet will send mail via Email server.
    How can send this file to server.
    plz help me .
    Thanks

    Hi,
    The following program illustrates the creation of ifle in app server and reading the file from appli server:
    DATA: ITAB LIKE vbakOCCURS 0 WITH HEADER LINE.
    PARAMETERS: P_VBELN LIKE VBAP-VBELN.
    START-OF-SELECTION.
      SELECT *
        FROM VBAP
        INTO TABLE ITAB
    WHERE VBELN = P_VBELN
        PERFORM WRITE_DATA.
        PERFORM READ_DATA.
    *&      Form  WRITE_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM WRITE_DATA.
    OPEN DATASET 'VBAP_DATA' FOR OUTPUT IN TEXT MODE.
    LOOP AT ITAB.
    TRANSFER ITAB TO 'VBAP_DATA'.
    ENDLOOP.
    CLOSE DATASET 'VBAP_DATA'.
    CLEAR: ITAB, ITAB[].
    ENDFORM.                    " WRITE_DATA
    *&      Form  READ_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM READ_DATA.
    OPEN DATASET 'VBAP_DATA' FOR INPUT IN TEXT MODE.
    DO.
    READ DATASET 'VBAP_DATA' INTO ITAB.
    IF SY-SUBRC <> 0.
    EXIT.
    ENDIF.
    APPEND ITAB.
    ENDDO.
    CLOSE DATASET 'VBAP_DATA'.
    LOOP AT ITAB.
    WRITE:/ ITAB-VBELN,
            ITAB-POSNR.
    ENDLOOP.
    ENDFORM.                    " READ_DATA
    If it is helpful rewards points
    Regards
    Pratap.M

  • Sending Files from a server to a client (PrintWriter)

    I've only been using Java for a few months and this may be in the wrong forum (sorry if it is)... but I've run into a bit of a problem.
    I've recently been asked to create Excel files using database records and output a file (HTML table) to a client's machine that is logged onto the web server. The thing is that we don't want to create (temporary) server files and just want to send the data straight to the client. For this, someone suggested using the HTTP Response PrintWriter. I'm having a couple of problems getting things working correctly:
    1) IOException: After committing the output stream to the client (eg pWriter.flush();) and trying to forward the user to a new page I'm getting an IOException saying that the "response cannot be forwarded once it is already committed". This is as per the Java 1.4 documentation, so OK... but is there any way around it? i.e. after sending the data to the client can I automatically send them to another page or refresh the current one?
    2) Loss of data: If the user does not save the file more or less as soon as the save/open dialogue appears on the screen, a lot of the data is being lost, with just ~150 out of 3000 records being sent to the client in the file. Any ideas why this might be? Presumably writing the data to a temporary file on the server then "copying" this over the PrintWriter to the client would solve this problem... but as stated above, we don't really want to be creating files in the clustered server environment (for some reason they don't usually seem to be getting deleted!?!)
    Bit of Background Info: The records are being read from the database at 500 records per time, stored in an ArrayList in the pageFlow. The ArrayList is then "iterated" through and the Excel/HTML table row is created for each record in turn (using the pWriter.println() method). The PrintWriter is flushed and closed after the entire Excel file has been written to the PrintWriter. I then try and forward the user to the same page (i.e. refresh the page) so that the buttons are re-activated and some on-screen information is updated (this leads to problem (1)).
    Also, I'm currently setting the Response Header property "Content-Disposition" to tell the client that the PrintWriter is sending an attachment (thus making the save/open dialogue box appear and a default filename being used), but I've noticed that this property is supposed to have been Depreciated some time ago... can anyone tell me what I should be using instead? The websites I've looked at don't seem to give me this info (maybe I'm just missing the obvious!?!)
    Hope that all makes sense, any help appreciated!

    Have any sample code?

  • When client send file  connection with server close

    please help me.
    i want to transfer a file via server - client model.
    Client send the file, server receive it.
    Then when i send a msg from server to client i have this error:
    java.net.SocketException: socket closed
    why the socket closed?

    client waiting for response. i don't know what to do.
    the client code is:
    import java.net.*;
    import java.io.*;                              
    class Client{               
         Socket clientSocket;               
           byte[] byteArray;                    
           BufferedInputStream bis;          
            BufferedOutputStream bos;          
           int in;                                   
           BufferedReader inm = null;
            PrintWriter outm = null;
           public Client(){
             try{
                    clientSocket = new Socket("localhost", 9632);
                   System.out.println("i am client & connect");
                   inm = new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));
                   outm = new PrintWriter(clientSocket.getOutputStream(), true);
                   System.out.println("------1--------" +clientSocket.isClosed());
                      outm.println("msg 1: hi");
                      System.out.println("from server__ " +inm.readLine());
                      outm.println("msg 2: now i will send you a file");
                      System.out.println("from server__ " +inm.readLine());
                      sendFile();
                     System.out.println("-------2-------" +clientSocket.isClosed());
                      System.out.println("from server__ " +inm.readLine());
             catch(IOException e){
                    e.printStackTrace();
           public void sendFile(){
                try{
                     bis = new BufferedInputStream(new FileInputStream("encryptAtmMsg.txt"));
                    bos = new BufferedOutputStream(clientSocket.getOutputStream());
                    byteArray = new byte[8192];
                    while ((in = bis.read(byteArray)) != -1){
                       bos.write(byteArray,0,in);
                        bis.close();
                      bos.close();
               catch(IOException e){
                    e.printStackTrace();
           public static void main(String[] args){
             new Client();
    }And server code is:
    import java.net.*;
    import java.io.*;
    class Server{
         BufferedInputStream bis;
           BufferedOutputStream bos;
           byte[] data;
           Socket socket;
           ServerSocket serverSocket;
           int in;
            BufferedReader inm = null;
            PrintWriter outm = null;
           public Server(){
             try{
                    serverSocket = new ServerSocket(9632);
                    System.out.println("i am server & listening...");
                   socket = serverSocket.accept();
                     System.out.println("a client connect");
                   System.out.println("------1--------" +socket.isClosed());
                    inm = new BufferedReader(new InputStreamReader(socket.getInputStream()));
                    outm = new PrintWriter(socket.getOutputStream(), true);
                   System.out.println("from client: " +inm.readLine());
                     outm.println("ack 1: hi....");
                     System.out.println("from client: " +inm.readLine());
                     outm.println("ack 2: ok....");
                    receiveFile();
                      System.out.println("------2--------" +socket.isClosed());
                   outm.println("ack 3: take the file");
             catch (IOException e){
                  e.printStackTrace();
         public void receiveFile(){
              try{
                  byte[] receivedData = new byte[8192];
                 bis = new BufferedInputStream(socket.getInputStream());
                   bos = new BufferedOutputStream(new FileOutputStream("encryptAtmMsg22.txt"));
                 while ((in = bis.read(receivedData)) != -1){
                       bos.write(receivedData,0,in);
                 bos.close();
             catch (IOException e){
                  e.printStackTrace();
         public static void main(String[] args){
             new Server();
    }any idea pls

  • Java code to create a new .txt file in FTP server  --- Help

    Hi,
    I wrote a standalone java app which creates a .txt file in my local machine and transfers it to FTP server. But my requirement now is to create a new .txt file with the same content in FTP server itself instead of creating locally with basic java code.
    I'm aware of transfering file from local machine to the FTP server using STOR command of FTP. But i never tried creating a new file & writing content into that in FTP server.
    So, if any one did this before please help me out with source code or any idea ???
    Thank you.
    Vj.

    simply_vijay wrote:
    thanks for your reply. yes i've seen the Apache Commons NET API , but there is no method or class to create a new file in FTP server. I'm really worried how to solve this problem ???Sure there is.
    There's a method where you can write data to a file on the server using an OutputStream, right? Well, instead of writing to a FileOutputStream, write to that OutputStream instead. Remember to close the OutputStream and call the method which says you're finished with the command (I forget what it's called).

  • In Elements 11 how do I get the verification code needed to send files as e-mail attachments ?

    In Elements 11 how do I get the verification code to send files as e-mail attachments ?

    I’ve found it usually works best with web mail via Adobe after obtaining verification. I know some email services block bulk email completely and I’ve only tested it with Gmail which works fine. Should also work with other web mail e.g. Yahoo and Hotmail. Give it a try. Before you start it will help to check your internet security settings. If they are set to High, reduce the settings to Medium temporarily. Then follow these instructions.
    1. Log in to your mail provider on the web and add the following email to your address/contacts book.
    [email protected]
    2. Open Organizer and on the menu click:
    Edit >> Preferences >> Sharing
    3. Choose Adobe Email Service from the client dropdown menu.
    4. Add your name and email address to the fields provided and click OK
    5. Test the system (first use only)  by selecting a photo in organizer and choosing Share >> Photo Mail then click Next (Mac users should use attachments)
    6. Choose a contact then click  Next
    7. Click Next Step, then click Next - the sender verification dialog will open.
    8. Check you have spelt your email address correctly and hit the Resend E-Mail button.
    9. Go to your inbox (also check spam) and when the Adobe mailer message is received copy (Ctrl+C) the long verification code.
    10. Return to the verification dialog and paste it (Ctrl+V) into the Sender verification field and click OK. Wait for validation confirmation then click OK to continue

  • Need to ftp files(BACS) from Server to Users Local Machine-Urgent

    Hello,
    I am working on a Oracle HRMS Implementation(11i) and have a requirement wher I need to ftp files (BACS File) from a server to Users Local Machine.
    Please let me know any scripts or the way forward to achieve the same using a concurrent program.
    Thanks a lot!

    That requires the users machine for a ftp server installed and to be "visible" to the conc program server, the first one requiring setup and configure for every client and the second one may be a problem if in different segments or security policies. Another approach may be to generate the files on the server in a known location and from the client create a batch script to connect to that server and retrieve the file(s). You may schedule the program to run at certain hours or use a shortcut so the user can run it on demand

  • Can't send files to budds! Help!!!!

    I recently re-installed the latest version of OSX onto my computer.. but now I can't send files through iChat. It worked fine right before the re-installation... what happend? Its not a new modem or anything... worked fine before.
    Im also having trouble uploading stuff to websites sometimes... Such as Photobucket.com or Myspace... it works sometimes, then not sometimes...
    Please help!

    Hi TheSomeone,
    Try these two things.
    Shut down the computer.
    Disconnect form the modem.
    Start up the computer.
    Start up iChat.
    Plug in to the Modem.
    Log in to AIm if required.
    If that does not work cut power to the modem and restart after 10 secs
    Ralph

  • Unable to send file to FTP server

    Hi All,
             I am using a File to File scenario. In that i am using FTP. The file is not reaching the target side. It is displaying the following error. I have checked the Target directory, it is  correct.I am able to send manually FTP File to the same target directory.
    Delivery of the message to the application using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.aii.af.ra.ms.api.RecoverableException: An error occurred while connecting to the FTP server 'acmxrtdb:21'. The FTP server returned the following error message: 'com.sap.aii.adapter.file.ftp.FTPEx: 550 C:\BankFiles\FromSAP\Wells: The filename, directory name, or volume label syntax is incorrect. '. For details, contact your FTP server vendor..
             Please help me in solving this. It would be very helpful to me.
    Thanks & Regards,,
    Raju.D

    Hi,
    the path specified is not correct.
    The value "0 C:\BankFiles\FromSAP\Wells" is not valid if the protocol is FTP. This is the physical directory on the operating system.
    If you're using an FTP server you need to know the path to the file on the FTP.
    To do this I suggest to connect to the FTP using Internet Explorer and navigating the FTP folders until reaching the right one.
    Then on the url bar you should got something like this: "ftp://server:21/path/to/file/". Use "/path/to/file" as value for the file adapter configuration.
    Hope this help
    Francesco

  • Sender address rejected by server - Help!!

    I have been unable to send mail all morning - I can receive mail, but when I try to reply or send a new message altogether, I get the error message "Sender address [email protected] rejected by server." I searched these forums and tried sending messages through my mail on mac.com, but that didn't work either.
    I don't know if this is a widespread apple problem as the boards indicate has happened before, or the result of something i've done. last night, preparing to go on vacation, i attempted to set an "out of office" reply via preferences>rules. I did it wrong and ended up sending my auto reply to every existing message in my inbox (several hundred - some people got dozens of the auto response - very embarrasing as this is my business e-mail!). I deleted the "rule" to stop the process, but i don't know if that has something to do with my new problem. I'm working remotely and need my e-mail - please help!!!!!

    I tend to agree with Austin's explanation. One work-around might be to change your SMTP port from 25 to 587.
    Another explanation is that by sending out all those mistaken replies yesterday that your are temporarily blocked as a spammer. Most ISPs (including Apple) put limits on the number of outgoing mail messages in a 24 hour period.

  • TS3276 server says file too big to send-file says 33MB server says 44MB

    I cannot send a short video which is 33.1 MB in the description but the server won't process as it claims the file is too big(44MB) and it can handle only 41MB.
    I've tried to compress it but still reads as "too big to send"

    You seem focused on the difference between 33 megabytes binary and a 44 megabytes transfer — the messages have to be encoded as SMTP mail was never intended as a binary transfer mechanism — mail servers transfer printable text messages — and the text-encoded attached binary files are inherently going to be larger than the original files.
    You're going to have to raise the mail server limits (which requires administrative access to the mail server), or find an alternate means of transferring the file — mail servers aren't very efficient at large transfers, large files tend to blow out mail server storage quotas, and blow out mail files.   Or chunk up the file into smaller files, send the chunks independently, and then concatenate the file remotely.  (There are tools around to do this — at the command line, have a look at the zipsplit tool — but I'd generally discourage this approach as it adds effort and complexity to the process.)
    The usual approach is a file transfer service.   Dropbox or SpiderOak or some other file hosting or file transfer service are the most common approaches here, and are also more efficient than the overhead involved with large attachments sent via a mail server.   Many of these file-hosting services offer more than enough storage here, and often as part of a free service tier.  
    Some folks can and do run their own file-hosting services, but that generally involves configuring and managing a server system and the associated network connections.

  • JBoss 4.2.0 does not contain need folders and files inside default server

    Dear,
    In the Virtual Appliance you provided, you will find under the /home/livecycle/jboss-4.2.0/server/default ONLY: log folder and tmp folder.
    When you start jboss like:
    ~jboss4.2.0/bin>./run.sh -c default
    It will give this error:
    Failed to boot JBoss:
    org.jboss.deployment.DeploymentException: url file:/home/livecycle/jboss-4.2.0/server/default/conf/jboss-service.xml could not be opened, does it exist?
    The answer is NO as i explain before. But why? is there a problem in the Virtual Appliance when you prepare the jboss server on it?
    Please let me know

    JBoss in the Virtual Appliance does not have a "default" configuration.  You should not start it with the command "./run.sh -c default".
    Please read the readme.pdf before you use it:
    http://d2x45prcet210j.cloudfront.net/readme.pdf

  • I have to turn off Firewall to send files to ftp server

    My ISP changed to a different server, since when I have had to turn off the firewall on my Mac 10.4.8 if I want to connect to it to upload or download files.
    If the Firewall is on, Transmit (my ftp program) seems to be able to log in, but the list of files doesn't appear. The staus reads as 'status: retrieving list of files'. When I turn off the Firewall, the list of files appears.
    Have 'passive mode' on or off makes no difference.
    Any thoughts gratefully received.
    Kind regards
    Richard

    Have you asked your ISP what changes you might be required to make?
    They changed something required to login. Why is this a "mac" issue?
    When you have Firewall turned on, and try an upload...you can examine the logs to see what kind of things are logged during this apparent FTP failure.
    OK, Have you tried another FTP client? (CyberDuck, Fetch, etc)
    Have you tried using Terminal to do a manual FTP (and do away with the silly GUI's?)
    Enable firewall
    open Terminal.
    type ftp<enter>
    type open [name/IP of your server location]<enter>
    you'll be asked for authientication...login...
    type ls<enter> {that's an ell, and an ess}
    Any results? (type quit<enter> to end your FTP session

  • Transfer a file from App Server to a FTP site.

    Hi, Abapers.
    I need your help. Probably, this topic has already been posted in a similar way, but we need an answer to solve our problem.
    We have to sent a PDF file from a directory of our app server (AIX) to a FTP directory... which would the FM sequence we should use to goal it?
    Best Regards.

    Hi Santiago,
    create fm to send file from APP server to FTP site.
    if you want to Post file from desktop to Appl use Transaction - CG3Y
    if you want to Post file from Appl to Desktop use Transaction - CG3Z
    copy the code below....
    *  Author: Prabhudas                            Date:  02/21/2006  *
    *  Name: Z_FTP_FILE_TO_SERVER                                          *
    *  Title: FTP File on R/3 Application Server to External Server        *
    *"*"Local Interface:
    *"  IMPORTING
    *"     REFERENCE(DEST_HOST) TYPE  C
    *"     REFERENCE(DEST_USER) TYPE  C
    *"     REFERENCE(DEST_PASSWORD) TYPE  C
    *"     REFERENCE(DEST_PATH) TYPE  C
    *"     REFERENCE(SOURCE_PATH) TYPE  C
    *"     REFERENCE(FILE) TYPE  C
    *"     REFERENCE(BINARY) TYPE  CHAR1 OPTIONAL
    *"     REFERENCE(REMOVE_FILE) TYPE  CHAR1 OPTIONAL
    *"  TABLES
    *"      FTP_SESSION STRUCTURE  ZMSG_TEXT OPTIONAL
    *"  EXCEPTIONS
    *"      CANNOT_CONNECT
    *"      SOURCE_PATH_UNKNOWN
    *"      DEST_PATH_UNKNOWN
    *"      TRANSFER_FAILED
    *"      COMMAND_FAILED
      DATA: w_password     TYPE zftppassword,
            w_length       TYPE i,
            w_key          TYPE i                  VALUE 26101957,
            w_handle       TYPE i,
            w_command(500) TYPE c.
      REFRESH ftp_session.
    * Scramble password (new Unicode-compliant routine)
      w_length = STRLEN( dest_password ).
      CALL FUNCTION 'HTTP_SCRAMBLE'
        EXPORTING
          SOURCE      = dest_password
          sourcelen   = w_length
          key         = w_key
        IMPORTING
          destination = w_password.
    * Connect to FTP destination (DEST_HOST)
      CALL FUNCTION 'FTP_CONNECT'
        EXPORTING
          user            = dest_user
          password        = w_password
          host            = dest_host
          rfc_destination = 'SAPFTPA'
        IMPORTING
          handle          = w_handle
        EXCEPTIONS
          not_connected   = 1
          OTHERS          = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
          RAISING cannot_connect.
      ENDIF.
    * Optionally, specify binary file transfer
      IF binary = 'X'.
        w_command = 'bin'.
        CALL FUNCTION 'FTP_COMMAND'
          EXPORTING
            handle        = w_handle
            command       = w_command
          TABLES
            data          = ftp_session
          EXCEPTIONS
            command_error = 1
            tcpip_error   = 2.
        IF sy-subrc <> 0.
          CONCATENATE 'FTP command failed:' w_command
            INTO w_command SEPARATED BY space.
          MESSAGE ID 'ZW' TYPE 'E' NUMBER '042'
              WITH w_command
              RAISING command_failed.
        ENDIF.
      ENDIF.
    * Navigate to source directory
      CONCATENATE 'lcd' source_path INTO w_command SEPARATED BY space.
      CALL FUNCTION 'FTP_COMMAND'
        EXPORTING
          handle        = w_handle
          command       = w_command
        TABLES
          data          = ftp_session
        EXCEPTIONS
          command_error = 1
          tcpip_error   = 2.
      IF sy-subrc <> 0.
        CONCATENATE 'FTP command failed:' w_command
          INTO w_command SEPARATED BY space.
        MESSAGE ID 'ZW' TYPE 'E' NUMBER '042'
            WITH w_command
            RAISING source_path_unknown.
      ENDIF.
    * Navigate to destination directory
      CONCATENATE 'cd' dest_path INTO w_command SEPARATED BY space.
      CALL FUNCTION 'FTP_COMMAND'
        EXPORTING
          handle        = w_handle
          command       = w_command
        TABLES
          data          = ftp_session
        EXCEPTIONS
          command_error = 1
          tcpip_error   = 2.
      IF sy-subrc <> 0.
        CONCATENATE 'FTP command failed:' w_command
          INTO w_command SEPARATED BY space.
        MESSAGE ID 'ZW' TYPE 'E' NUMBER '042'
            WITH w_command
            RAISING dest_path_unknown.
      ENDIF.
    * Transfer file
      CONCATENATE 'put' file INTO w_command SEPARATED BY space.
      CALL FUNCTION 'FTP_COMMAND'
        EXPORTING
          handle        = w_handle
          command       = w_command
        TABLES
          data          = ftp_session
        EXCEPTIONS
          command_error = 1
          tcpip_error   = 2.
      IF sy-subrc <> 0.
        CONCATENATE 'FTP command failed:' w_command
          INTO w_command SEPARATED BY space.
        MESSAGE ID 'ZW' TYPE 'E' NUMBER '042'
            WITH w_command
            RAISING transfer_failed.
      ENDIF.
    * Disconnect from destination host
      CALL FUNCTION 'FTP_DISCONNECT'
        EXPORTING
          handle = w_handle.
    * Optionally, remove file from source directory
      IF remove_file = 'X'.
       CONCATENATE source_path '/' file INTO w_command.
      CONCATENATE 'rm' w_command INTO w_command SEPARATED BY space.
       OPEN DATASET '/dev/null' FOR OUTPUT FILTER w_command.
       CLOSE DATASET '/dev/null'.
    ENDIF.
    Regards,
    Prabhudas

Maybe you are looking for

  • Photoshop CS2 won't reinstall and open properly - help!

    My laptop motherboard fried and so I'm trying to reinstall my CS2 Creative Suite (legal copy) on my new laptop.  Since my old serial number is no longer supported, I downloaded the creative suite from the links provided on the Adobe website.  All of

  • TIME_OUT runtime error for Zreport in only Production server.

    Hi Experts,                  I have created one new Zreport which is working well in Development & Quality Server for given input. but same report is giving run time error  in Production server for same input resulting into error TIME_OUT.  Short tex

  • B-ACD With CUCM

    i have Centralized  CUC and CUCM in HQ  with remote SRST branches , i want to make auto attendant on each remote branch locally we can ? *we don't have CUE on the gateways .

  • JPI 1.4.2 in 10g-patch2 or AppServer 10.1.2.0.2

    Hi, The Statement Of Direction on OTN states that support for Sun's Plug-In is targeted for 10g patchset 2. I'm not really sure which "real" version number that would be. The current v10.x Application Server does not contain Forms/Reports, but the FA

  • Business Logic in Taghandler methods???

    Hi, Is there any reason that the business operation(logic) in a TagHandler class should take place in a doEndTag() for TagSupport class and doAfterBody() in BodyTagSupport class? If so, why it can't be done in the doStartTag() and doInitBody() ? Than