Sending Groups Back to their originating OU

I am setting up to export group changes back to AD.
My question is: Without defining an OU in the sync rule will group updates automatically go to the originating OU?
Since I have defined the containers to include in the ADMA I would assume this is kept somewhere in FIM or the MV.
Unfortunately, all instructions for setting up outbound group syncs point to the test FIMObjects OU and fail to answer this question.

Hi,
i think you should read the "Understanding Inbound and Outbound Synchronization" articles first to get some backgorund on that topic.
http://technet.microsoft.com/en-us/library/ee534911%28WS.10%29.aspx
If objects have a connection from mv to the data source object (AD in this example) all data will flow from and to mv or the connected data source.
FIM maintains an attribute called anchor in the data source as a fixed relationship to the mv.
You only need to set the DN (not OU) attribute in sync rules to either rename the object or move it to another OU.
so in short, yes data will flow from FIM to AD on these groups, once there are connected.
Keep in mind that there are two methods of export data with sync rules in FIM portal.
1. Set/Workflow/MPR based (objects must be in the scope of syncrules, see EREs)
2. outbound sync based on outbound scope filter (no EREs)
Regards
Peter
Peter Stapf - ExpertCircle GmbH - My blog:
JustIDM.wordpress.com

Similar Messages

  • How can I keep apps in the order I prefer?  I've rearranged via iTunes but every time I power cycle the phone, the apps go back to their original positions...

    How can I keep apps in the order I prefer?  I've rearranged via iTunes but every time I power cycle the phone, the apps go back to their original positions...

    Hi kelori617,
    If you are having issues organizing the Apps on your iPhone via iTunes, you may want to double-check the steps in the following article and make sure you are syncing any changes to your device:
    iTunes 11 for Mac: Sync and organize iOS apps
    http://support.apple.com/kb/PH12115
    iTunes 11 for Windows: Sync and organize iOS apps
    http://support.apple.com/kb/PH12315
    If all of the steps are correct and the changes still aren't being retained when you restart your iPhone, you may want to make sure your data is backed up, then try restoring your iPhone to factory settings, restore your data from the backup, then test to see if you can organize your apps via iTunes:
    Use iTunes to restore your iOS device to factory settings
    http://support.apple.com/kb/HT1414
    Regards,
    - Brenden

  • After editing a photo in another program, the photos return to the library at the end of the grid panel instead of at their original loacation.  How do I avoid this or alternatively, is there a quick way of moving them back to their original position inst

    After editing a photo in another program, the photos return to the library at the end of the grid panel instead of at their original loacation.  How do I avoid this or alternatively, is there a quick way of moving them back to their original position instead of clicking and dragging them?

    Sort your photos by File Name or Capture Date
    Use View->Sort

  • I was adding items with the intent of command z 'ing them back to their original when it crashed, autosaved, and my original numbers were lost to the temp numbers plugged in... how can i get back to the previous version? Because it had closed, command z

    I was adding items with the intent of command z 'ing them back to their original when it crashed, autosaved, and my original numbers were lost to the temp numbers plugged in... how can i get back to the previous version? Because it had closed, command z

    Sorry, this happened in CLOUD numbers....

  • How do I export all the photos I imported back to their original folder

    How do I export all the photos I imported back to their original folder just as they were, they haven't been modified, adjusted etc. I imported them by mistake.

    You don't need to worry. You won't lose photos when the 30 day trial expires.
    Lr is different than other photo editing software in that it works with a data base (called the "catalog"). Lr does not write anything into the image pixels but stores everything that you do in Lr into its catalog (=data base). That way, when the trial expires your images will still be there, but - since you cannot access the Lr catalog anymore - your photos will be in the state they were before you imported them into Lr.
    When you work with Lr you have to really understand the concept of the "catalog", if you don't you will come into very frustrating situations. The concept of "catalog" involves above all that you need to think of your images based on two different files that are in different locations on your computer. One is your image file (Raw, JPG, TIFF) and the other is the data entry written for this image into the Lr catalog. Lr constantly updates this catalog (without you having to hit <save>) and constantly combines the image file with the data from the catalog. From this follows the demand that you take care of the Lr catalog as much as you take care for your image files - by knowing where they are located on your computer and by doing regular backups.
    Would it be worth the investment? In my opinion definitively "yes"! I work with Lr since version 1 on a daily basis and would not want to miss it. Lr gives you superior image editing possibilities (in the Develop Module) but - as already said - is also a superb image management tool. Lr will keep track of all of your images irrespective if they are on internal or external hard drives. With Lr you have all of your images available all the time.
    But Lr has also a steep learning curve. You cannot just jump in and do things because you'd create havoc and become frustrated. There are excellent books but for starters I would recommend that you watch the video tutorials on Adobe's website. You learn from them easily because you see on your screen what the instructor does, where he clicks, where the different tools are, etc.
    Here are some links:
    http://tv.adobe.com/product/lightroom/
    http://tv.adobe.com/show/adobe-evangelists-julieanne-kost/
    http://tv.adobe.com/show/learn-lightroom-3/
    If you decide to buy, you can do so on Adobe's website. You will then be e-mailed a serial # that will unlock your trial version for indefinite time.

  • I pressed  some keys in iPhoto and the picture "icons" shrunk. How to get them back to their original larger size?

    I pressed  some keys in iPhoto and the picture "icons" shrunk. How to get them back to their original larger size?
    I read another post about this that suggested restoring preferences, but I don't know how to do this. I don't want to re-install iPhoto for sure.

    My bad. I didn't see the slider lower right (it was mentioned in the reply).
    Now can somebody tell me how to delete questions

  • JInternalFrames  that snap back to their original size and bounce around

    1. How do I make the JInternalFrames not snap back to their original size after I resize them (drag with mouse)?
    2. How do I bet the internal frames(minimized or open) to not bounce around when I add a new one?
    Thanks!!
    here is the code:
    //DM.java
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    public class DM extends JFrame{
    Container contentPane;
    JDesktopPane deskTop;
    int queryCount = 0;
    /////////////////// CONSTRUCTORS ////////////////////
    public DM(){
    super("Data Miner 0.1, Triad Therapeutics, Inc.");
         contentPane = getContentPane();
         deskTop = new JDesktopPane();
    deskTop.setBackground(new Color(0,0,150));
    deskTop.setLayout(new FlowLayout());
    contentPane.add(deskTop, BorderLayout.CENTER);
    ////// MENU BAR ////
              JMenuBar menuBar = new JMenuBar();
    //// Query Menu
         JMenu queryMenu = new JMenu("Query");
         JMenuItem targetQueryItem = new JMenuItem("Target");
    queryMenu.add(targetQueryItem);
    ////// MENU BAR ASSEMBLY ////
    menuBar.add(queryMenu);
    setJMenuBar(menuBar);
    ////// MENU BAR ACTION LISTENERS ////
    targetQueryItem.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e){
    JInternalFrame qc = new JInternalFrame("TEST2",true,true,true,true);
    qc.setPreferredSize(new Dimension(500, 300));
              qc.setNormalBounds(new Rectangle(300,300));
    //qc.setBounds(10, 50, 300, 500);
    //qc.setVisible(true);
    qc.show();
    deskTop.add(qc);
    }// end DM constructor
    ////////////////// MAIN METHOD /////////////////////////
    public static void main(String[] args){
         DM dm = new DM();
                   dm.setBounds(10,100,1000,450);
                   dm.setVisible(true);
                   dm.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
                   dm.addWindowListener(new WindowAdapter() {
                        public void windowClosed(WindowEvent e) {
                                  System.exit(0);
    }//end main
    }// end DM class

    Use the direct select tool to select the image, then set the scale in the scale fields to 100%, and finally, fit frame to content.

  • Recovered files in the trash.  How do I put them back to their original place so that they do not keep being recovered very time I open my Mac?

    I keep getting the same recovered files in the trash.  How do I put them back to their original place so that they do not keep being recovered very time I open my Mac?

    The recovered files are temporary files used by Mac OS X applications. Usually temporary files are deleted by an application when it no longer needs them. If an application quits unexpectedly, the temporary files may not be deleted by the application. When you restart your computer, Mac OS X moves these temporary files to the Trash.
    You can retrieve useful files by dragging them out of the Trash. In most cases, however, the temporary files are not important and it is safe to empty your Trash. Check with the manufacturer of the application if you are not sure.

  • How can I add a response to the end of each item question in an email list of questions and send that back to the originator?

    I have emails that ask for certian items to be addressed such as "please fix leak in bath sink" and then the next line will have another request and on and on. I would like to answer each question at the end of each line with a response (preferably in a different color font to stand out) such as "yes - will fix" or "that can't be done" or "you will have to fix that yourself". Then I want to send that reply back to the original sender.

    ''sfhowes [[#answer-697423|said]]''
    <blockquote>
    I suggest you consider this add-on: [https://addons.mozilla.org/en-US/thunderbird/addon/clippings/ Clippings] ([http://chrisramsden.vfast.co.uk/3_How_to_install_Add-ons_in_Thunderbird.html How to install]).
    </blockquote>
    I did look int this but I need to have each answer different in a lot of cases but i thank you and did get an answer that does help greatly - Thanks

  • I imported to library in iPhoto and now have an album called com.apple.iLifeMediaBrowser which has a lot of my old pics in it....How do I get these back into their original albums?

    I imported to library in iPhoto and now have an album called com.apple.iLifeMediaBrowser which contains a lot of pics that were deleted plus a bunch of other pics......How do I move pics from this album to their original album??? 

    What is your iPhoto version? I can ask this thread to be moved to the appropriate iPhoto forum where you might get more replies.

  • Unable to move objects (They snap back to their original place) and certain menu items don't work

    Using CS5, have been using this version for over a year and have never seen this problem -
    When I try to move any object by selecting and then trying to drag, it won't let me. It allows me to drag while selected maybe half an inch before not moving anymore, and then snaps back to the original position anyway. I CAN move by using transform - move, or selecting and using arrow keys. When I restart my computer everything seems fine, but then it soon gives me this same problem.
    Also, when I'm having the object moving issue I also have problems with dropdown menus. For example when printing, I can see the list of printers, but clicking them has no effect. Another example is the Preferences menu box, clicking "Type" or "Units" has no effect.
    Please help!!

    Win or Mac? Do you have 15.02, if not install the update.
    http://www.adobe.com/downloads/updates.html
    Select All and in transform palette uncheck Align to pixel grid.
    Reset your prefs. After botting hold down these 3 keys
    MAc - Shift Opt Command
    Win - Shift Alt Ctrl
    Do you have any 3rd parts Ilustrator plug ins? If you are on windows can you do a system restore back to a date before this was happening (Win is much more susectible to mallware/trojan horse/virus)

  • Using Lion.  Stamped a project with metadata and all the first pictures in a stack are now square when they were not before.  Any ideas how to get them back to their original shape?

    I created the metadata for a project and lifted the metadata, hit Command A to select over 1000 photos and stamed the entire project.  It rated all the pics with 3 stars and made them all square.  Clearly not my intent.  Can't seem to undo.  Any ideas?

    Let's start with this: do they all show that they have a Crop adjustment applied?
    Are they square in both the Browser and the Viewer?

  • How do I restore files to their original location from the trash bin?

    I accidentally deleted a large number of files. I was trying to delete a certain type of file from a specific folder, but ended up deleting all of the files of that type from the computer and, worse, from the external hard drive docked on my desktop. We are talking about 6000+ files. I could not in five years manually copy these files back into their original locations. I deleted additional files after this before I realized what was happening, so I've used up my one undo. Is there no way in Mac OS X to automatically restore these files back to their original locations? It's worth noting that I have not emptied the trash bin; the files are all still there, and this is a brand new computer, so Time Machine hasn't been configured (even if it had been, the external hard drive I would have used for back up is the one I would need to be restoring these files to). You would think something like spotlight, so proficient at finding the file types I was looking for, would also be able to put them back to their original locations.

    That is a feature available in Windows but not on you Mac. Your only slender hope is Undo, but it only has one go, and you say you've used it.
    If the task of relocating them seems impossible, and you say the machine is brand new, then the quickest thing would be to reinstall the OS and start again, as you would not have personalised/changed it much, so soon.

  • Is it possible to take a mixed and bounced wav and convert it back into the original individual aiff separate tracks?

    Hello.  Is it possible to take a song that has been bounced down to a .wav and is now in itunes, and import it back into logic but as the original seperate tracks that make up the bounced .wav?  I have some songs I recorded when I first started using Logic, and the mix and mastering is horrible.  I have gotten way better since then and I would like to remix and re-master some of these tracks.  Only trouble is I no longer have the original seperate track Logic Aiff files. I know I can obviously import the bounced down stereo .wav file and remaster that,but it would be really cool if Logic had some way of recalling the song back into its seperate tracks.  Is there any way at all to do this? If Logic can't do this maybe there is an app out there that can? 
    Even though I just downloaded Logi X I also decided to keep Logic 9.  So I can run both if that helps.
    Thanks,
    Mike

    That would be like mixing a cake batter and deciding you wanted to start over using the same ingredients, separating the eggs, milk, baking powder, baking soda, flour...etc, back into their original form.
    Can't be done... the instruments share the same frequency ranges.  There is sofware that let's some adjustment to pitch be done but trying to pull out individual instrument/vocal tracks from a mix would leave you with very, very inferior tracks to re-mix with.

  • Can I use my lrdata smart previews file on another Mac and then take the edits back to the original?

    LR5 CC user. I have tried to use Smart Previews for the first time. I followed what seemed the best advice but now not sure since most of the guides feature working with a single computer and offline files. I am away travelling for over a month. I have a Mac Pro with many thousands of images. I exported my 5000 "best" as smart previews in a lrdata file to use with my macbook pro laptop while travelling. i took the lrdata file with me on a hard drive. Not the catalog file. Now it seems I can import these files (by double clicking on the lrdata file) but I am concerned that if I edit them the editing will be lost when I go back to the original. They have different file names. Have I basically lost the chance to do any editing? Or is there a way to edit and then send them back to the original catalog?

    10greenmen wrote:
    import these files (by double clicking on the lrdata file) but I am concerned that if I edit them the editing will be lost when I go back to the original.
    One should not import & edit smart preview files (the lossy dngs with names like 7/7FB5/7FB580F4-00BB-4C39-8DE5-C09490BA6CB8.dng), instead of the photos they "represent".
    But if you do, here's how to transfer settings and/or metadata from imported/edited smart preview files back to the original photos which you should've edited in the first place:
    o Note: you have to import the directly-edited smart previews into your main catalog when you get home (import from travel catalog, or save xmp first and just import files - either way works).
    * Download and install RelativeAntics plugin (free by me).
    * Choose 'Imported Smart Previews' preset (in plugin manager).
    * Select the imported smart preview files.
    * Run 'Relative Antics' (File menu -> Plugin Extras).
    * Deselect all items in 'Define "Related" section, *except* 'Custom Relative'.
    * choose whether to transfer develop setting and/or metadata..
    * and do it - this will copy settings and metadata from the selected imported/edited-smart-preview to the photo which should have been edited in the first place (the "related" photo).
    Example:
    ==========
    Rob

Maybe you are looking for

  • Can't change printer from one account to another

    Hi, I seem to be stuck between the proverbial rock and a hard place. Here's the situation: 1. My old e-mail account used originally to sign in to the HP eprint center has been deleted by the e-mail provider (MSN). It can't be recreated because MSN wi

  • No Advanced Dialogue Option in Stnadard Photo Downloader

    In my old Photoshop Elements 6, I could go to File --- Get Photos----Camera Card Reader and it would access my card reader and show me all the files on it so I could choose which ones I wished to download.  This was done by clicking on an Advanced Di

  • Automatic payment - urgent

    Hi sap guru's, My client has an account with SBI in three states.  How should be the configuration be done for APP. should create one house bank or three house banks for each state. How should the configuration be done for APP in bank determination--

  • Two bapi calls in the same session using PI

    Hi, I have a file to RFC scenario wherein I need to call a BAPI (L_TO_CANCEL) and then again, I need to call another bapi called "BAPI_TRANSACTION_COMMIT" in the same session. My question is, if I use RFC adapter, do I have to call the commit bapi ag

  • Noise reduction not working on Lightroom 5.4 MAC

    I have experienced that the noise reduction that I apply to my pictures is only visible in the develop area of the software. As I switch to library it disappear and the same happen if I export the picture in any kind of format. I post a screenshot wh