Move container from Global Shared Workarea to other workarea

Hi,
I (newbie) had my application in the Global Shared Workarea without version control, but in order to have more workareas and users, I enabled the version control.
Right now, I have a new user and a new Workarea for that user, and I'd like to move the container from the Global Shared Workarea to this new workarea. Or just copy to the new workarea and then delete the one in Global Shared Workarea .
How can I achieve it?
I've seen how to move within the same workarea, but not between workareas.
thanks

You only have one object and they are shared between the workareas.
For example. If I have a table bonus and have 5 workareas that have included the application all 5 WA's are working on the same table. If I check out the table and add a column, another checks out the table and changes the a column length. it is happening to different versions of the same table. then when everyone is done you will have to merge to get all the changes into one final tablle. Of course you have an option of locking a checkedout table so no one else can work on it.
hope this helps.

Similar Messages

  • How can I move apps from one computer to the other?

    How can I move apps from one computer to the other?
    (preferably without iCloud)

    Backup your iTunes library to an external drive and onto the other computer
    http://support.apple.com/kb/ht1751

  • How can I move music from iTunes to play on other devices?

    How can I move music from iTunes to play on other devices? thanks

    If you want to drag and drop, then check manually manage music.
    I much prefer syncing playlists to this option.
    Have a look at the manual:
    iPhone User Guide (For iOS 5.0 Software)

  • How can i move icons from one screen to the other?

    How do i move icons from one page to another?

    Tap and hold any icon for a couple of seconds. They'll all start to wobble. Tap and drag the one you want to move to the side of the screen and the next screen will appear; drop the icon on whatever screen you want it on.
    You can also do it quicker in iTunes - connect the phone and click the Apps tab in the main window. You'll see a picture of your phone with the apps laid out. Just click and drag

  • How to move Person from One org.Unit to other

    Hi,
         I want to move a Central Person from One Org.Unit to Other Org.Unit programatically ( through function module ). I am trying to use the FM "OM_CREATE_NEW_RELATIONS" .
    But, it's not working. Can anyone through some light on this ?
    Thanks in Advance..
    Prasad

    Thanks for the reply,
    But, i do not want to delete and then assign.
    I just want to mimic the Drag & Drop option available in PPOMA_BBP.
    In the background system is using a FM "OM_CREATE_NEW_RELATIONS". I am trying to use this FM in similar way . But, it is not moving the CP and Position.
    Thanks,
    Prasad

  • How can I move music from one computer to the other?

    We have a family computer with everyones music on it but my parents just got me a new laptop for x-mas and I want my music on mine. how do I move them?

    There are a number of different ways that you can move the music. Look at this support article and see which way you think will work best for you.
    iTunes: How to move your music to a new computer

  • How can I move applications from one account to a other ?

    Hi
    I have a old account which I used on my iPad 1. Now I moved to the cloud and got a @me.com apple ID. This new account I use for my new iPad 3 and now I would like to move some Apps from the old account to the new. How can I do this ?
    Thx for help !

    At this time you can't transfer apps or merge accounts. It has been rumoured that apple is looking at this as it's a bit of a pain. You have to use your old account with the iTunes store to access apps and then your .me account for iCloud and it's functionality but it works fine.

  • Move Window from One Screen to the Other

    With multi-monitor setup, is there a shortcut key to move a window from one screen to another? This is about the only thing I miss from my old days of using a PC.
    Way too lazy to drag
    Thanks!
    Alex

    Saeven wrote:
    With multi-monitor setup, is there a shortcut key to move a window from one screen to another?
    no, there isn't and I don't believe you can possibly make one. I don't know how this works in windows but os x would need to know where exactly to put a window on the other screen. since screens often have different sizes that would be impossible. besides, with extended desktop there is no actual separation between the screens and a window can be partly on one screen and partly on the other.
    I'm afraid you are just going to have to drag.
    This is about the only thing I miss from my old days of using a PC.
    Way too lazy to drag
    Thanks!
    Alex

  • How do I move Events from one user to the other?

    I have two users on my PowerBook G4 and in preparation of moving all to a new MacBook Pro I want to move the pictures of one user to the other user. I've tried copying them and was successful but the Events did not copy, rather all 530 photos copied as one Event. How do I copy the photos and maintain the Events?

    iPhoto Library Manager is recommended on here many times every day. I can't recall anyone mentioning a significnt issue with it.
    Regards
    TD

  • Move File from one floder to the other

    Hi,
    did anyone work on this requirement?
    Search for a file in a  directory(AL11).
    If the file  is found than  copy the file to the outbound directory
    I have used the FM EPS_GET_DIRECTORY_LISTING to search file. and how will i copy it from arcive directory to the outbound directoty?

    DATA: file_count  TYPE i,
            dir_count   TYPE i.
      DATA: file_table  LIKE sdokpath OCCURS 0 WITH HEADER LINE,
            dir_table   LIKE sdokpath OCCURS 0 WITH HEADER LINE,
            source      LIKE rlgrap-filename,
            destination LIKE rlgrap-filename,
            return TYPE i.
    IF p_move = 'X'.
        CALL FUNCTION 'TMP_GUI_DIRECTORY_LIST_FILES'
          EXPORTING
            directory  = text1
            filter     = '*.*'
          IMPORTING
            file_count = file_count
            dir_count  = dir_count
          TABLES
            file_table = file_table
            dir_table  = dir_table
          EXCEPTIONS
            cntl_error = 1
            OTHERS     = 2.
        IF sy-subrc = 0.
          LOOP AT file_table.
            CONCATENATE text2 file_table-pathname
            INTO destination.
            CONCATENATE text1 file_table-pathname
            INTO source.
            CALL FUNCTION 'WS_FILE_COPY'
              EXPORTING
                destination = destination
                SOURCE      = SOURCE
              importing
                return      = return.
            CALL FUNCTION 'WS_FILE_DELETE'
              EXPORTING
                file   = source
              IMPORTING
                return = return.
          ENDLOOP.
          CALL FUNCTION 'TMP_GUI_DIRECTORY_LIST_FILES'
            EXPORTING
              directory  = text1
              filter     = '*.*'
            IMPORTING
              file_count = file_count
              dir_count  = dir_count
            TABLES
              file_table = file_table
              dir_table  = dir_table
            EXCEPTIONS
              cntl_error = 1
              OTHERS     = 2.
          IF file_count > 0.
            CONCATENATE 'Error copying' source 'to' destination
            INTO i_error SEPARATED BY space.
            APPEND i_error.
          ENDIF.
        ENDIF.
      ENDIF.
    Create a folder named tes1 and test2 in C drive and place a dummy file 1.txt and check the code.
    Text 1---  C:\test1\1.txt
    Text 2 -- C:\test2\1.txt
    K.Kiran.

  • Want to move data from 1 internal table to other?

    Hi,
    i have values in one internal table like in 1 st column 13 value..in second column first 13 value blank &
    from 14 value starts.....so i want such internal table in another internal table having no blank values ....means in 2nd column value starts from 1st no.
    Thanks,
    Sagar

    show an example how is ur data is currently and how shud it look.
    are u trying to say smthing like this.
    col1        col2
    1
    2
    3
    4              
    .                 .5
    .                 .6
    .                 .7
    like this?
    and want second column to be shifted upwards unconditional;ly or sm matching shud be thr?
    Edited by: kartik tarla on Dec 10, 2008 2:24 PM
    Edited by: kartik tarla on Dec 10, 2008 2:25 PM

  • Migrating Interface from Global to VRF

    Hi All,
    We are trying to move interfaces from global routing table to VRF interface and during that process we are trying to move eigrp belonging to that interface from Global configuration to Address-family ipv4 instance of the eigrp under the VRF .
    We are trying to figure out to populate passive-interface command under the address-family ipv4 vrf .But couldn't find the command supported in 12.2(18)SXF15 for Cisco 7600 router. Do we have to configure the passive-interface command alone in the global eigrp instead of address-family ?. Any help would be really appreciated.
    Thanks
    Regards
    Anantha Subramanian Natarajan

    Anantha,
    "passive-interface" under the "address-family" is only available starting with 12.2(33)SRB.
    In the version you are currently running, configuring "passive-interface" globally will take effect even for specific VRF interfaces though.
    Regards

  • Moving activity codes from global to project level

    I'm relatively new to using P6 so feel free to tell me if i'm stupid.
    I began adding activity codes in the EPS level and eventually moved them to the Global level. later i was instructed to move them all to the Project Level, and the only way i could find to do it was to CUT and PASTE from Global to Project.
    This have presented several issues with adding codes to new activities as well as modifying the codes.
    1 I cannot add any values to my codes which were in global and moved to project level. actualy i just have to move them back to global, add values, move them back to project
    2. The only way i can add these codes to new activities is to add a column for the code and use Filldown.
    I can manage with adding codes to activities but not being able to create new values is becoming an issue.
    I starting to think that P6 still considers them global codes even though they are represented on a project level.
    Is there a better way to move codes from global to project? any solutions other than just working around the issues? or am I stuck?
    Thanks

    Thank you for your response,
    At the project level the default Security Profile is Project Manager, so i suppose this would be the level i am on. All of the privileges are turned on.
    I am not sure if i was clear enough above, but i am able to add codes at the project level. My issue is that we added hundreds or more codes at the global level and were then instructured to move them to the project level. Rather than rebuilding everything I used Cut and Paste to move them to the project level. Since doing this, adding codes to new activities as well as modifying the codes mentioned above has become problematic.
    At first it seemed to work, but I think that even though they are represented in the project level, they are still considered global codes. When adding columns, the codes are still represented under a heading named Activity Codes - Global, rather than Activity Codes - Project. everywhere else they are shown as global.
    Anymore advice?
    Thank you!

  • How do I move pictures from iphoto library to my desktop so I can these use them to sell on ebay?

    I recently moved pictures from my ipad to my iphoto library on my Macbook Pro computer. I want to now use these photos to sell on EBay. What are the steps I need to do to move these from one place to the other. This needs to be in laymans terms as my husband and I are new to this. Thanks for help.

    Put the photos in an iPhoto album.  Use the File ➙ Export ➙ File export menu option and export them to a folder on the Desktop.  From there you can upload them to Ebay via your browser.
    OT

  • How to move photos from one library to another?

    Hi,
    I currently have 2 libraries and I want to move photos from one library into the other.
    How do I have to proceed?
    Thx
    A

    We're thinking of adding a library copy feature soon.  Hoping you can share some info here to help us understand how this might best work fo you.   Here's a few questions I have:
    - What do you use the 2 libraries for?
      - Why do you want to copy?
      - Do you have albums, favorites, and comments associated with the photos?  Do you want them copied?
    Anything else that you are hoping to accomplish here?
    Thanks in advance,
    Peter

Maybe you are looking for