Moving Active Profile To Another Sub-Org

I am looking for a safe method of moving active service profiles to another Sub-Org without doing any re-confis.
Thanks

Terry,
Yes, the situation has not changed in 2.1, if you move the Service Profile to another Sub-Organization, what you get is a copy of the service profile and it stays unattached (you basically clone the SP).
What I recommend is that, now that you have a exact clone that actually makes reference to the exact same pools defined in UCSM, make sure that:
* You assign the resources (pool's resources) for the blade manually  
OR
* Free up the resources so that they can be assigned again to the new SP
Just the fact of drag and drop to a new sub-organization does not mean any traffic disruption or corruption of data, so it is a safe move.
Let me know if you have any other question.
Please rate ALL helpful answers.
-Kenny

Similar Messages

  • Moving active screen to another monitor - without 3rd party

    Is there anyway of using the keyboard to move a window to another monitor without using a 3rd party app?
    It seems such a simple thing (to be able to move to another monitor)
    Thanks
    Omar

    Terry,
    Yes, the situation has not changed in 2.1, if you move the Service Profile to another Sub-Organization, what you get is a copy of the service profile and it stays unattached (you basically clone the SP).
    What I recommend is that, now that you have a exact clone that actually makes reference to the exact same pools defined in UCSM, make sure that:
    * You assign the resources (pool's resources) for the blade manually  
    OR
    * Free up the resources so that they can be assigned again to the new SP
    Just the fact of drag and drop to a new sub-organization does not mean any traffic disruption or corruption of data, so it is a safe move.
    Let me know if you have any other question.
    Please rate ALL helpful answers.
    -Kenny

  • Is moving all active ports to another VSAN disruptive?..

    Hi! I moved all active ports to another VSAN and this caused a server to failure. I know that this can be because of the small time-out values at the operating system or bad multipathing, but how large a time-out can be in a such reconfiguration?.. What if the server can't survive any storage loss and we move server and storage array ports to another VSAN? I wonder if it can be done without any traffic interruption...

    Hi Artem,
    Changing server from VSAN is a disruptive process for each path you're acting on: that means if you're not having dual fabrics and proper multipathing configuration, the server will lose access to its LUN for a certain amount of time. Depending on the operating system you might expect various behaviors (kernel panic, SCSI errors, CPU in I/O wait until timeouts,...). Consider it even more restrictive when booting on SAN or when swap memory is also on a SAN LUN.
    It's always good practice to work one one fabric at a time by disabling the path attached to it from the OS perspective (if multipath software is not set in a failover mode).
    Changing VSAN membership for a FC port on the MDS9000 means that the initiator HBA has to log (FLOGI) into a new VSAN where the DomainID is different from previous VSAN, so its FCID will change also. It is same effect as moving fibers to another physical SAN from the host perspective.

  • After I have migrated a 'master' profile into another, the browse button (for a download location) in Options, General doesn't work anymore. How can I fix this?

    Hi Supporters,
    I've been struggling with this some time (downloading / saving problems) and tried all kinds of variations. But I'll keep it simple for now.
    As a test .. I've just created a fresh firefox profile. Checked out if could change the download location, through the Browse button, and indeed that worked. I got an explorer dialog to choose a folder.
    Normally I would do the options, manage the search engines, do some layout stuff etc etc in order to get some 'baseline / master' profile I can evolve further into other more extended profiles. So you see this master profile will get copied into another one.
    But, having copied that fresh profile (having done nothing yet) into another seems to disable choosing another download folder. The Browse button in Options > General does not work anymore.
    There's more. If I browse to, say, C:\ as default download location but then enable 'ask me where to save ..' in the fresh profile and then copy this profile to another one .. if I then want to change the download location (which shows C:) it jumps to Desktop and again the Browse button won't work.
    This is driving me mad. Any ideas? Sorry for the long story, hope it helps.

    Hi guys,
    @cor-el: getting rid of not needed parts is what I always do. Besides prefs and localstore, only the search-metadata and permissions / signons are passed along. Oh, forgot to mention the mimetypes.
    No, my point is why is FF looking for those folders when there's no mentioning of these to be found in my options? Not even in de about:config ... When I state C:\ as my downloads location it's absurd to check any other folder first, which FF seems to do before giving me an explorer window showing .. C:\ as a starting point. Like my unrestricted laptop does.
    @jscher2000: Even if there are pointers to those default folders, FF should not be checking those. When I state C: I mean C: (see my answer above).
    No, I'm convinced this is a bug unless someone knows a way to stop that folder checking. And to be honest, the not working Browse button is the least of my problems (I use: ask everytime where). No it's the saving that is the problem. But I guess the underlying problem is the same. Saving / downloading, what's in a name ..
    Guys, thanks for your help ! I can't fix a bug so I'm going to let it be. I'll rebuild my master and will keep checking of saving a website becomes a problem somewhere. Mind you, the solutions offered in kb.mozillazine.org/Unable_to_save_or_download_files didn't work.
    Oh well, I'll keep my fingers crossed :)

  • Drill down logic to capture Sub Org Unit's which doesn't have chief

    Hello Gurus,
    I am wondering to get logic for following scenario. Any ideas are appreciated.
    I have one Cheif Org Unit say '50000000'. This org unit can have two sub Org Units for ex
    55000000 and 56000000 (Here Org unit 55000000 has chief and 56000000 doesn't have a chief). I need to capture only 56000000 which doesn't have a chief. Again, assume 56000000 has three more sub Org Units for ex
    56000001, 56000002 and 56000003 (Here Org Unit 56000002 only has chief and the rest two doesn't have chief). Then I need to capture 56000001 and 56000003.
    so on and so forth drill down to the level where all sub org units have chief's which ends my iteration.
    Result:
    I am interested in only org units which does not have chief...In above example
    56000000
    56000001
    56000003
    and ....
    I know that we can make use of B002 relation in HRP1001 and O-O and to check if org unit has chief, use relation
    B012 in hrp1001 with O-S....but I am unable to put this in iteration..Appreciate any ideas or logic..
    Thanks in advance..
    Kim

    Hi Kim,
    Please follow the logic below:
    *Select all organizational units.
    SELECT * INTO IT1_HRP1000 FROM HRP1000 WHERE OBJTYPE = 'O'.
    LOOP AT IT1_HRP1000.
    *Check if that org unit is sub unit for another one
    SELECT * FROM HRP1001 where rsign eq 'B' and relat eq '002' and objid eq IT1_HRP1000-objid.
    *if true
    if sy-subrc eq 0.
    *check whether that org unit has a chief or not.
    SELECT * FROM HRP1001 where relat eq '012' and objid eq IT1_HRP1000-objid.
    *if false
    if sy-subrc ne 0.
    GET THIS OBJID
    endif.
    endif.
    ENDLOOP.
    ENDSELECT.
    Regards,
    Dilek

  • What is the best practice to migrate files from one profile to another?

    I am increasing having to move from one created local profile machine to an active directory joined mobile account.  What is the best way to migrate the files from one profile to another?

    Some answers below:
    1. Yes, you should use snapshots (right click on t he object and select create snapshot or on the project menu, select Change Manager for a centralized snapshot management).
    2. See above.
    3. Usually you will export the (test/development) design repository to an mdl file, and import it into the other (production) design directory. Then you will deploy the code from the other design directory into the production target (runtime).
    2.1 From 9.2 on, you will have to deploy to file and then use OWB scripting (OMBPlus) to deploy the generated file outside of the deployment manager.
    2.2 Not sure what is asked in this question - can you rephrase?
    2.3 No, but the creation and use of thes will not be managed and audited by OWB (Runtime Audit Browser)
    3.(bis) The target owner.
    Regards:
    Igor

  • Importing profile from another copy of firefox

    I have been working with your files regarding moving Firefox profiles between computers. The instructions listed leave a lot to be desired.
    I want to move a profile from Firefox on a PC to Firefox on MacOS (SnowLeopard).
    At this point, when I open Troubleshooting information, Show in Finder, there are now three files there. Two are default profiles, including the one I moved from the PC:
    023itdk7.default - which is the folder I saved and moved from the PC;
    a0ibrn2u.Me - which is the profile I set up according to what I thought the "Managing Your Profiles" and "Recovering important data from an old profile"was telling me to do; and
    l2usuzu74.default (I don't know where this came from).
    How do I invoke the one I moved from the PC; or get rid of the other two?
    Why have I got so many?
    Your instructions concerning individual actions are fine; but the general ghist of the whole activity leaves a lot to be desired.

    The general gist is that the Profile name can't be changed on the Profile that you are transferring files into. You need to copy the '''contents''' of the old Profile into the new Profile folder, replacing the file that were in there.

  • I need to place my profiles on another drive insted of c:desktop/

    '''I need to place my profiles on another drive insted of c:desktop/.
    so if windows crashes i just start when every thing is installed i just redrict firefox to pickup my profiles, just as was in netscape
    brgds
    fernandes63'''

    There is a new [[what is firefox sync?| sync]] feature available by default with firefox 4, you may be interested in that. There are also other editions of firefox that are [http://en.wikipedia.org/wiki/Mozilla_Firefox,_Portable_Edition portable], and can be installed on a USB stick for instance.
    The default location of the profile will not be ?c:desktop?, and if Windows crashes you will need to recover before you can use firefox.
    It is however sensible to backup your profile, and you can back it up to or use it from almost anywhere see https://support.mozilla.com/en-US/kb/Backing%20up%20your%20information#w_restoring-to-a-different-location you can use the profile from a USB stick for instance, but there are slight problems with the way Windows assigns drive letters as you plug in and unplug drives. The easiest solution may be to leave the profile where it is, or move it to another fixed drive, and make a backup somewhere else.

  • Mac desktop. 10.6.8. Text edit. Not locked. Read and write. Still, documents are locking when they are moved from desktop to another folder on the server. Techies can't figure it out here. What am I not doing?

    Mac desktop. 10.6.8. Text edit. Not locked. Read and write, not read only. Documents are locking when they are moved from desktop to another folder or saved directly into that folder on the server. Not happening with anyone else but me and the boss's computer so has to be in the properties for my text edit software. Techies can't figure it out after trying for two weeks. Boss can do a cut and paste and put into a new document, but that's starting to become a problem.

    Mac desktop. 10.6.8. Text edit. Not locked. Read and write, not read only. Documents are locking when they are moved from desktop to another folder or saved directly into that folder on the server. Not happening with anyone else but me and the boss's computer so has to be in the properties for my text edit software. Techies can't figure it out after trying for two weeks. Boss can do a cut and paste and put into a new document, but that's starting to become a problem.

  • When I click on an active link from another application, it opens the firefox application, but won't open open the page - it just opens Firefox or takes me to Firefox. No new tab or window is opened and the link is not displayed.

    When I click on an active link from another application, it opens the firefox application, but won't open open the page - it just opens Firefox or takes me to Firefox. No new tab or window is opened and the link is not displayed.

    Firefox sent an email to me to confirm that I had asked the above question. The email had a link to click. When I clicked it from Firefox, nothing happened. Then I opened IE, signed into Comcast, opened the email, clicked the link, and it brought me here.

  • How do i move itunes from one profile to another?

    does anyone know how to move my itunes from one profile to another?

    Drag the entire /Music/iTunes/ folder to /Users/Shared/.
    Log into the other user.
    Option drag (this copies instead of moves and sets the correct permissions) the iTunes folder in /Users/Shared/ to your /Music/ folder, replacing what is there.
    You can then delete /Users/Shared/iTunes/ folder.

  • Moving user profiles from Server 2012 with RDS services to User profile disks Server 2012R2

    Hello i have a question about moving my C:\users profiles.
    My current settings on the servers are:
    AD-Server 2012
    SQL-Server 2012
    TS- server with RDS roles (RDwebacces, RDs broker, RD session host) 2012
    everything about user profiles is now in C:\Users
    My new settings for the server will be:
    AD-ActiveDirectory - server
    SQL-Server
    TS1- RDS (RDwebacces, broker, RDS server group management) 2012R2 (I have enabeld userProfileDisks to Filesistem server)
    TS2- RDS(Session host) load balance 2012R2
    TS3- RDS (Session host) load balance 2012
    FileSistem - server ( here i will have on E: partition the new functionality UserProfileDisks) 2012R2
    So is there a way to move profiles from TS - C:\Users to FileSistem - E:\UserProfileDisks
    I am new to this so any idea wil be helpful.

    Hi,
    If the UPD is configured on the server which holds existing user profiles, just select the option:
    store all user settings and data inside the profile disk.
    Since you are moving user profiles between different servers, then user profile contents need to be migrated manually.
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • (final cut pro x 10.0.9 )After numerous troubleshooting tips, I am still getting the dreadful your disk have ran out of space, your events have moved or permissions have changed. This happened after I moved some files to another drive. They won't relink?

    (final cut pro x 10.0.9 )After numerous troubleshooting tips, I am still getting the dreadful your disk have ran out of space, your events have moved or permissions have changed. This happened after I moved some files to another drive. They won't relink eventhough the files are there.

    (final cut pro x 10.0.9 )After numerous troubleshooting tips, I am still getting the dreadful your disk have ran out of space, your events have moved or permissions have changed. This happened after I moved some files to another drive. They won't relink eventhough the files are there.

  • Activity profile for planning does not seem to work..

    Hi,
    All I need is to trigger a custom idoc filled in a custom FM and to be sent when the planning button in vt01n or vt02n is clicked and then save button is clicked. I have everything else setup..
    Message type is SHPMNT
    output type is ZEDI
    have a process code in place
    partner profile in place...
    so i set the activity profile too
    for custom shipment type zout - profile name zxxx and the variant maintained has the message type set as zedi and medium as 6.
    what is missing...output is not triggered  !!
    pl help...

    Hello, Slabby01. 
    Thank you for the question.  Try closing all open applications and power cycle the device.  Test the results after processing these steps.  If the issue persists, try going through the troubleshooting steps in the second article below.
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    iOS: Troubleshooting Siri
    http://support.apple.com/kb/ts4079
    Cheers,
    Jason H.

  • For an Org Unit, how do we get all Reporting Org units (Also employees reporting to the sub org unit) & Employees ?

    Hi Experts,
    I have a very common requirement in SAP HCM ABAP development.
    For an Org Unit, how do we get all Reporting Org units(Also employees reporting to the sub org unit) & Employees ?
    I have tried using RH_STRUC_GET_MULTIPLE_ROOTS and RHPH_STRUCTURE_READ, but the evaluation path is insufficient to get all objects under it. I tried with both O-S-P and O-O-S-P evaluation paths and as per some constraints, I can’t create a customized evaluation path for a reason.
    I am using PNPCE database for user selection screen and user would be advising the Org unit. I even referred the standard transaction ‘S_AHR_61016495’ which is using PCH logical database.
    I would really appreciate if anyone could provide a solution for this. (Rewards guranteed )
    Kindly help.
    Thank you.
    Regards,
    Mahesh Konade

    Hi Alexandre,
    Although I could not respond in time, thank you so much for your prompt reply.
    I had used the same RHPH_STRUCTURE_READ and passed the appropriate values to it, but it did not populate the required results. I cross checked the results manually, may be some relations issue. But later I tried using RH_STRUC_GET_MULTIPLE_ROOTS and it worked fine.
    Meanwhile I had done a workaround with PCH and RH_STRUC_GET and it served the purpose of getting all the Org units, it’s reporting sub-org-units, positions and persons (The deepest structure from the root org unit advised on selection screen).
    The solution I used is, I captured the org-units advised on selection screen by user using PCH logical database and then by looping on sub-org units reporting to the main org-unit I populated related positions and persons holding them and assigned it to the PNPCE logical database.
    Thank you so much for the help.
    Regards,
    Mahesh Konade

Maybe you are looking for