HOW TO MOVE FILES BETWEEN FOLDERS ON APPLICATION SERVER

Hi ,
I want to move files between folders on application servers and also on presentation server.
Is any ABAP code available for it.
Can anybody help me out in this.
Waiting for reply.
Thanks & regards,
Nitin

I am also interested in this post. The FB  ARCHIVFILE_SERVER_TO_SERVER workes fine for copying the file, however I also need to remove the file from its original location.
Does anybody have a sugestion on how I can do that (in coding).
Regards,
Minim

Similar Messages

  • How to move files between folders within Lightroom 3?

    I would like to move a file from one folder to another within Lightroom 3 (let's not discuss why). I searched the threads but couldn't find the answer (maybe I missed it). When I click on a photo within grid view then drag and drop that file onto a different folder in the folder panel (to do the move), a little plus sign (copy) appears and a copy of the file is placed in the second folder. If I try to delete the photo from the original folder (to get the move), both copies of the file are removed. I've tried holding down all sorts of keys on the imac but cannot get the move to work. Ideally, I'd like to move a group of photos but cannot even move one. Does anyone know how to move files between folders in Lightroom 3?

    Your suggestion works. Thank you for posting it.
        Ron
    2010/10/28 Dorin Nicolaescu-Musteață <[email protected]>
    Try selecting the photos, right-clicking the target folder and choosing
    "Move Selected Photos to This Folder".
    >

  • WPA8.1 Feature to save and move files between folders and OneDrive Folders

    Hi,
    I would like to suggest to dev team a new feature to Adobe Reader on Windows Phone.
    Today I was done a uggly workarround to save one PDF file on a OneDrive folder to send to my classmates. So I would like a feature to save and move files between folders on SD cards and OneDrive to keep my phone organized.
    thank you for your time.

    Here:
    property aFolder : "a"
    property bFolder : "b"
    property cFolder : "c"
    property dFolder : "d"
    property eFolder : "e"
    tell application "Finder"
    try
    set theLocation to the selection as alias
    on error
    set theLocation to (folder of the front window as alias)
    end try
    if not (exists folder aFolder of theLocation) then make new folder at theLocation with properties {name:aFolder}
    if not (exists folder bFolder of theLocation) then make new folder at theLocation with properties {name:bFolder}
    if not (exists folder cFolder of theLocation) then make new folder at theLocation with properties {name:cFolder}
    if not (exists folder dFolder of theLocation) then make new folder at theLocation with properties {name:dFolder} 
    if not (exists folder eFolder of theLocation) then make new folder at theLocation with properties {name:eFolder}
    set this_list to every file of theLocation
    repeat with i in this_list
    if (name of i) begins with "a" then
    move i to folder "a" of theLocation
    else if (name of i) begins with "b" then
    move i to folder "b" of theLocation
    else if (name of i) begins with "c" then
    move i to folder "c" of theLocation
    else if (name of i) begins with "d" then
    move i to folder "d" of theLocation
    else if (name of i) begins with "e" then
    move i to folder "e" of theLocation
    end if
    set name of (the result) to items 3 thru -1 of (get name of (the result)) as string
    end repeat
    end tell
    (98558)

  • How i access file which stored at application server .? Is there any fm ?

    Hi,
    How i access file which stored at application server . Is there any function module which provide same funtinality.
    Regards,
    Gurprit Bhatia

    Hi ,
            U need to use datasets for reading data from application server.Do a f1 on dataset,u will get to know rest of the things.
    TRY.
        OPEN DATASET file FOR INPUT IN TEXT MODE ENCODING UTF-8.
      ENDTRY.
      IF sy-subrc = 0.
          READ DATASET file INTO <wa_data> MAXIMUM LENGTH 200.
               move the data in to internal table
        close dataset
    Edited by: A kumar on Aug 21, 2008 1:37 PM

  • Move files between folders

    I can not drag and drop files between folders within LR5.  Can only move files using OS then finding them LR5  Permissions are OK, using Mac latest updated OS.  Any suggestions?

    Make sure you are dragging the picture thumbnail and not the frame around it.

  • How to move files between users on a mac

    i have just brought a new mac
    set myself and partner up as two sepertae users
    how can i send music from my itunes over to his itunes?
    i undertsand i cant go directly into his user account, but believe there is somewhere i can send them?
    thanks

    Open another Finder window by pressing the key combination command-N. In that window, navigate to the items you want to copy, then drag them to the other window.
    It would help you a lot to look through some of the introductory material on these pages:
    Apple - Find Out How - Mac Basics
    Apple - Support - Mac Basics

  • Moving files across folder in application server

    Hi to all experts,
    My requirement is to move file between folders in the application server .i'm using the fm sxpg_command_execute . the problem im facing here the file move sometimes and it doesnt move sometimes . what could be the problem..
    *&      Form  process_file_on_server
    form process_file_on_server .
    DATA: filename(128) TYPE c.
       DATA: param LIKE sxpgcolist-parameters.
    CASE sy-sysid.
      WHEN 'BO1'.
        p_arc = 'k:\\Share\MM_SCUBCode_PDAtxt_Archive'.
      WHEN 'BQ1'.
        p_arc = 'K:\\Share\MM_SCUBCode_PDAtxt_Archive'.
      WHEN OTHERS.
    ENDCASE.
      CALL FUNCTION 'SO_SPLIT_FILE_AND_PATH'
        EXPORTING
          full_name           = p_file
       IMPORTING
         STRIPPED_NAME       = filename
    *     FILE_PATH           =
       EXCEPTIONS
         X_ERROR             = 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.
      ENDIF.
    CONCATENATE p_arc filename INTO p_arc SEPARATED BY '\'.
    CONCATENATE p_file p_arc INTO param SEPARATED BY space.
    CALL FUNCTION 'SXPG_COMMAND_EXECUTE'
      EXPORTING
        commandname                         = 'ZMOVE'
       ADDITIONAL_PARAMETERS               =  param
    *   OPERATINGSYSTEM                     = SY-OPSYS
    *   TARGETSYSTEM                        = SY-HOST
    *   DESTINATION                         =
    *   STDOUT                              = 'X'
    *   STDERR                              = 'X'
    *   TERMINATIONWAIT                     = 'X'
    *   TRACE                               =
    *   DIALOG                              =
    * IMPORTING
    *   STATUS                              =
    *   EXITCODE                            =
    * TABLES
    *   EXEC_PROTOCOL                       =
    EXCEPTIONS
       NO_PERMISSION                       = 1
       COMMAND_NOT_FOUND                   = 2
       PARAMETERS_TOO_LONG                 = 3
       SECURITY_RISK                       = 4
       WRONG_CHECK_CALL_INTERFACE          = 5
       PROGRAM_START_ERROR                 = 6
       PROGRAM_TERMINATION_ERROR           = 7
       X_ERROR                             = 8
       PARAMETER_EXPECTED                  = 9
       TOO_MANY_PARAMETERS                 = 10
       ILLEGAL_COMMAND                     = 11
       WRONG_ASYNCHRONOUS_PARAMETERS       = 12
       CANT_ENQ_TBTCO_ENTRY                = 13
       JOBCOUNT_GENERATION_ERROR           = 14
       OTHERS                              = 15
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    clear filename .
    endform.                    " process_file_on_server

    Hi,
    PLEASE try this code ---
    *&      Form  process_file_on_server
    *form process_file_on_server .
    DATA: filename(128) TYPE c.
       DATA: param LIKE sxpgcolist-parameters.
    CASE sy-sysid.
      WHEN 'BO1'.
        p_arc = 'k:\\Share\MM_SCUBCode_PDAtxt_Archive'.
      WHEN 'BQ1'.
        p_arc = 'K:\\Share\MM_SCUBCode_PDAtxt_Archive'.
      WHEN OTHERS.
    ENDCASE.                            " CASE SY-SYSID
    DO.                                      " Changed         
      CALL FUNCTION 'SO_SPLIT_FILE_AND_PATH'
        EXPORTING
          full_name           = p_file
       IMPORTING
         STRIPPED_NAME       = filename
    *     FILE_PATH           =
       EXCEPTIONS
         X_ERROR             = 1
         OTHERS              = 2
      IF sy-subrc NE  0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.          " IF SY-SUBRC NE 0
    CONCATENATE p_arc filename INTO p_arc SEPARATED BY '\'.
    CONCATENATE p_file p_arc INTO param SEPARATED BY space.
    CALL FUNCTION 'SXPG_COMMAND_EXECUTE'
      EXPORTING
        commandname                         = 'ZMOVE'
       ADDITIONAL_PARAMETERS               =  param
    *   OPERATINGSYSTEM                     = SY-OPSYS
    *   TARGETSYSTEM                        = SY-HOST
    *   DESTINATION                         =
    *   STDOUT                              = 'X'
    *   STDERR                              = 'X'
    *   TERMINATIONWAIT                     = 'X'
    *   TRACE                               =
    *   DIALOG                              =
    * IMPORTING
    *   STATUS                              =
    *   EXITCODE                            =
    * TABLES
    *   EXEC_PROTOCOL                       =
    EXCEPTIONS
       NO_PERMISSION                       = 1
       COMMAND_NOT_FOUND                   = 2
       PARAMETERS_TOO_LONG                 = 3
       SECURITY_RISK                       = 4
       WRONG_CHECK_CALL_INTERFACE          = 5
       PROGRAM_START_ERROR                 = 6
       PROGRAM_TERMINATION_ERROR           = 7
       X_ERROR                             = 8
       PARAMETER_EXPECTED                  = 9
       TOO_MANY_PARAMETERS                 = 10
       ILLEGAL_COMMAND                     = 11
       WRONG_ASYNCHRONOUS_PARAMETERS       = 12
       CANT_ENQ_TBTCO_ENTRY                = 13
       JOBCOUNT_GENERATION_ERROR           = 14
       OTHERS                              = 15
    IF sy-subrc = 0.                              " CHANGE
    STOP.                                           " CHANGE
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    clear filename .
    endform.                    " process_file_on_server
    ENDDO.                    " CHANGE
    Regards
    Pinaki

  • How to move PDF file from Spool to Application Server?

    How to move PDF file from Spool to Application Server?
    Cannot use RSTXPDFT4 because that converts OTF to PDF and the file is already PDF.
    RSTXPDFT5 doesn't work. It picks the file up and assigns it a 'text' type and outputs a 1 line txt (1kb in size) on the server with the spool number in it!
    The program which outputs the file to the spool, in the first place, uses adobe forms and outputs to a printer of type PDF.

    Hi Gemini ,
    Please refer the below links.
    [http://sap.ittoolbox.com/groups/technical-functional/sap-hr/convert-a-spool-to-pdf-and-save-on-application-server-in-background-720959]
    [http://www.sapfans.com/forums/viewtopic.php?f=13&t=325628&start=15]
    Edited by: Prasath Arivazhagan on Apr 13, 2010 4:48 PM

  • Cannot move files or folders on desktop   OSX 10.7.5  MacBook Air

    Cannot move files or folders on the desktop. This occurred suddenly - don't know what happened or how to undo this. Nothing on the desktop is moveable.
    MacBook Air   OSX   10.7.5

    Take these steps if the cursor changes from an arrow to a white "prohibited" symbol when you try to move an icon on the Desktop.
    Sometimes the problem may be solved just by logging out or restarting the computer. Try that first, if you haven't already done it. Otherwise, continue.
    Select the icon of your home folder (a house) in the sidebar of a Finder window and open it. The Desktop folder is one of the subfolders. Select it and open the Info window. In the General section of the window, the Kind will be either Folder  or something else, such as Anything.
    If the Kind is Folder, uncheck the box marked Locked. Close the Info window and test.
    If the Kind is not Folder, make sure the Locked box is not checked and that you have Read & Write privileges in the  Sharing & Permissions section. Then close the Info window and do as follows.
    Back up all data before continuing.
    Triple-click anywhere in the line below on this page to select it:
    xattr -d com.apple.FinderInfo Desktop
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Paste into the Terminal window by pressing command-V. You should get a new line ending in a dollar sign ($). Quit Terminal.
    Relaunch the Finder.
    If the problem is now resolved, and if you use iPhoto, continue.
    Quit iPhoto if it's running. Launch it while holding down the option key. It will prompt you to select a library. Choose the one you want to use (not the Desktop folder.)

  • Moving files between folders is very slow

    Hi, I have an iMac 2011. Processor: 2.7GHz Intel Core i5/ Memory 4GB
    OS X Yosemite, version 10.10.1
    After I change my OS from Mavericks to Yosemite, moving files between folders is very slow.
    For example, if I move one jpg file in Desktop to Pictures folder (or just any other folders like Trash), it takes about 3 seconds.
    When I was still using Mavericks, it made that Ding sound and transferred files right away. However, now, although it makes the Ding sound right away, the file is still there for 3 seconds.
    I tried to clean up my mac using many apps, but they never fixed this problem.
    I've also tried what I saw on this one thread. OS X File Transfers Very Slow
    Go->Connect to Server then type "cifs://server-address" but it says there is a problem and did nothing. (maybe different issue)
    Please help!

    There may be other issues, but you installed the "Genieo" or "InstallMac" ad-injection malware. Follow the instructions on this Apple Support page to remove it.
    Back up all data before making any changes.
    Besides the files listed in the linked support article, you may also need to remove this file in the same way:
    ~/Library/LaunchAgents/com.genieo.completer.ltvbit.plist
    If there are other items with a name that includes "Genieo" or "genieo" alongside any of those you find, remove them as well.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those. If Safari crashes on launch, skip that step and come back to it after you've done everything else.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, then you may have one of the other kinds of adware covered by the support article. Follow the rest of the instructions in the article.
    Make sure you don't repeat the mistake that led you to install the malware. Chances are you got it from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates
    if it's not already checked.

  • Os x 10.9 - Moving files between folders with Mavericks.

    How do i drag and drop files between folders without creating a duplicate? Prior to the Maverick upgrade I could drag and drop without creating a duplicate. Earlier forums suggested Cmd-Opt-V would prevent duplicates, but this now creates an alias file.

    By default the Job Accounting plugin is installed by the Kyocera installer. So you don't need to enable it, you just need to select the Job Accounting menu in the print dialog. To see this menu, in many Apple applications you must have the print dialog set to Show Details. Then you can change the menu to Job Accounting as shown below.

  • LR5 stopped moving files between folders

    Hi everybody,
    I've noticed today that my LR5 stopped moving files between folders, I select files I want to move and drag them over to a new location like I always did before with only difference is now nothing happends, no messages with errors, nothing... I tried to google it and couldn't find anything related to my problem.
    I'm using Windows 8 x64. I checked the permissions on all the photo folders and everything seems to be correct. I also run LR under admin rights, so there shouldn't be any OS related issues... in addition, it was working just fine till today.
    I hope you can at least point me in right direction to dig more info on the problem with my LR5.
    Thx!

    Hi everybody,
    I've noticed today that my LR5 stopped moving files between folders, I select files I want to move and drag them over to a new location like I always did before with only difference is now nothing happends, no messages with errors, nothing... I tried to google it and couldn't find anything related to my problem.
    I'm using Windows 8 x64. I checked the permissions on all the photo folders and everything seems to be correct. I also run LR under admin rights, so there shouldn't be any OS related issues... in addition, it was working just fine till today.
    I hope you can at least point me in right direction to dig more info on the problem with my LR5.
    Thx!

  • EXS24 instrument created from audio region- How to  move files?

    In Logic Pro X. I have created an EXS24 instrument from an audio region with 3 well-separated sounds. The instrument in EXS24 editor shows a zone with 3 files. Each file is actually the same physical file, but, when examining the three separate "files" (what should I call them??), a different section is highlighted for each tone. I can set a note for each of these "files". This instrument plays perfectly.
    So now I have 2 files in my project folder  - a .exs one for the instrument, and ONE SINGLE .wav file somehow representing three different samples. I want to move them to ~Library/Application Support/Logic/folderName, where folderName is , say,  myInstruments (for .exs) and mySamples (for .wav). When I do this, and erase the files in the project folder, I can load the instrument and the sample file into EXS24, but the sample file is recognized as one single tone - that is, in the EXS24 editor, there is only one file rather than 3, and that file has all three audio sounds.
    How do I move these files correctly? Is there some way to get them created originally in the correct place?

    Hi keystrike,
    This article will give you information about how to move files in Logic -
    Logic Pro X: Move, copy, and convert audio files
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • Cannot move files into folders on desktop

    Hi, I cannot move files into folders on desktop.  They won't go in when I grab them and drag them to a folder.

    Take these steps if the cursor changes from an arrow to a white "prohibited" symbol when you try to move an icon on the Desktop.
    Sometimes the problem may be solved just by logging out or restarting the computer. Try that first, if you haven't already done it. Otherwise, continue.
    Select the icon of your home folder (a house) in the sidebar of a Finder window and open it. The Desktop folder is one of the subfolders. Select it and open the Info window. In the General section of the window, the Kind will be either Folder  or something else, such as Anything.
    If the Kind is Folder, uncheck the box marked Locked. Close the Info window and test.
    If the Kind is not Folder, make sure the Locked box is not checked and that you have Read & Write privileges in the  Sharing & Permissions section. Then close the Info window and do as follows.
    Back up all data before continuing.
    Triple-click anywhere in the line below on this page to select it:
    xattr -d com.apple.FinderInfo Desktop
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Paste into the Terminal window by pressing command-V. You should get a new line ending in a dollar sign ($). Quit Terminal.
    Relaunch the Finder.
    If the problem is now resolved, and if you use iPhoto, continue.
    Quit iPhoto if it's running. Launch it while holding down the option key. It will prompt you to select a library. Choose the one you want to use (not the Desktop folder.)

  • Move photos between folders

    I want to move photos between folders in dropbox.  On my PC I could download the photo folders, open two photo screens and drag and drop pictures between them.  How do I do that in Yosemite?

    S/He seems to want to open two finder windows. These photo folders referred to seem to be on  dropbox.
    I hope so, but was a bit concerned, that the question might relates to the way, that Dropbox is importing iPhoto Libraries or backing up iPhoto Libraries. I wanted to be sure, that the iPhoto Library is not actually sitting in Dropbox,, or referenced originals.
    As in these links:
    What is the iPhoto importer, and what do I do if I'm ... - Dropbox
    How do I copy my photos from iPhoto to Dropbox? (Dropbox ...
    Dropbox for Mac Updated with iPhoto Integration, Automatic ...

Maybe you are looking for

  • Adobe 9 always opens in a Maximized window

    Hi When opening a link in Internet Explorer 6 that opens a pdf, the pdf file opens in a maximized window.  When clicking on a pdf file on the computer it will always open in a maximized window. I have gone into the properties for Adobe and made sure

  • Start up problems for my pc

    Desktop computer: Product no. KQ497AA-ABA Operating system: Windows Vista Question: Does anyone know how to fix startup issues when you have to push the button on the top of the computer to turn on and off a lot of times to get the computer to move f

  • How can I add more than one song to fit the length of the slideshow

    I would like to add more than one song to my slideshow. I do not want to repeat the same song more than once. Is there a way to add more than one song to a slideshow?

  • Packages in separate Jars causes classpath error

    For the purposes of easy-updating and allowing developers to work on one part of a system without interfering with others, I have created separate Jar files for the main packages in my application. So; com.me.pack1 is in Pack1.jar com.me.pack2 is in

  • Setting Optimal db_cache_size

    How can i do it? I've looked at the V$DB_CACHE_ADVICE but don't know how to interpret it (what kind of information is needed to determine db_cache_size) Please help! Thanks,