How to dereference objects during export flow

Hello!
I would like to export information from a referenced object during export flow but the referenced object is not part of the connector space object of the affected management agent. This is my demo configuration:
testEmployeeData:
- employeeId (anchor)
- personId (reference to testPerson object)
- telephoneNumber
- uid
testPerson:
- displayName
- givenName
- sn
- uid (anchor)
- employeeData (multi-value reference to testEmployeeData recors; can be null)
I have an SQL agent ("HR") that imports person and employeeData objects into the metaverse. The references seem to work as I can see them in the Sync Service Manager and they point to the right objects too. Now I would like to access some of the
referenced objects' data during export attribute flow. I have configured an export-only "Persons" agent that should export the personal data into an attribute-value file. This is what I would like the export flow to look like:
displayName <- testPerson.displayName
employeeId (multi-value) <- testEmployeeData.employeeId (*)
firstName <- testPerson.firstName
lastName <- testPerson.sn
uid <- testPerson.uid
The problem is now the advanced attribute flow marked with (*). The testPerson.employeeData field contains a multi-valued reference to all matching employeeData records which contain the employeeId. The output file should contain all matching employeeIds
instead of the reference values (GUIDs) but I can't get this to work. When I try to configure an advanced export flow rule flowing testPerson.employeeData to person.employeeId I just receive an error message stating that metaverse reference attributes cannot
be defined as source attributes.
Do I have to create an appropriate connector space object for this to work? Or is there some other way to dereference objects in order to get certain attributes? By the way, the person connector space object in the "Persons" agent is created by
provisioning code based on testPerson metaverse objects.
Regards,
Philipp

Philipp,
What you are trying to do cannot be accomplished the way you are trying to do.
Here are your options:
Use classic provisioning using rules extensions or
Use a workflow to deference attributes in FIM Service and flow flattened data into the target connector space.
My recommendation is to use the second option to accomplish what you are trying to do as I prefer to stay away from classic code for maintenance and support reasons.
Good Luck.
Thanks,
Jameel Syed |
Identity & Security Strategist | [email protected] |
Simplified Identity and Access Management

Similar Messages

  • Connection for added/updated objects during export and import

    Hi,
    Plz help me..
    During export and import of updated/added objects to production,
    do we need to create the dataservers manually or else how can it be managed for an existing object???
    Thanks..

    eg AD_CTX_DDL
    APPS_ARRAY_DDL
    APPS_DDL
    ORA-20000 APPS_DDL/APPS_ARRAY_DDL package(s) missing or invalid in schema CTXSYS (Doc ID 944150.1)
    CS_KB_CTX_PKG. I think these are packages.Run the following scripts from $CS_TOP/patch/115/sql directory:
    cskbdstb.pls
    cskbdsts.pls
    Also I am missing certain privileges on packages given to system and application users by sys eg DBMS_SHARED_POOL. I have already executed adgrantsHave you run recreate grants and synonym from adadmin?
    Thanks,
    Hussein

  • Blend2java how i load object which exported by blender with blend2java

    now i'm interesting in blender which is 3D modeling's software. and blend2java is python's script with can help you export your object( model) to xml or gzip for use in java3d. i read and do about this tutorial
    http://blend2java.sourceforge.net/blend2java-howto.html this tutorial show about solution of getting one file into java3d
    but i create object with multiple materials. then get multiple file after export.
    such as i create object with 3 materials. i receive 3 file after export
    problem is :
    how do i get these files for one object into java3d?

    don't know if you're still interested, but if you request help through the sourceforge page for blend2java I can help.

  • How to unlock objects in a transport request

    Hi, can you help me? I don't know how to unlock objects during a transport request. At the moment I have to unlock them one by one manually. I'm looking for a way to do it automatically.
    Thanks..

    Hi Bay,
    goto SE03,on the right side drill down Requests//task
    double click on unlock objects>give your transports request>execute
    Hope this helps
    Regards,
    Venkatesh

  • How do I create multiple objects during runtime?

    I don't know how to create multiple objects during runtime, here's my problem:
    I get a String as input. Then I create an object called newobject. I put the object in a hashtable with the above string as key.
    Then comes the problem, in order to create a new object, I have to rerun the same class, which uses the same name (newobject) to create a 2nd object. Now my hashtable doesn't reference to my 1st object anymore...
    Is there anyway I can fill up the hashtable with different objects, and make each key point to each object it was supposed to?
    For those who want to see a bit of the program:
    public class PlayBalloon{
    public Hashtable ht = new Hashtable();
    for(){
    Balloon pB = newBalloon;
    newBalloon=new Balloon(pB);
    ht.put("Some input from user", newBalloon);
    for(){
    ht.get(s).draw;<= s=string, draw=own meth. in Balloon
    }

    I think i can see the problem that you are having. You have, in effect, duplicate keys in your hashtable - ie, two strings used as keys with the same name.
    The way that a hashtable works is as follows...
    When you ask for a value that is mapped to a key it will go through the table and return the first occurence it finds of the key you asked for. It does this by using the equals() method of whatever object the key is (in your case it is a String).
    If you cant use different Strings for your keys in your hashtable then i would consider writing an ObjectNameKey class which contains the String value that you are trying to put in the hashtable and an occurrence number/index or something to make it unique. Remember to override the equals method in your ObjectNameKey object or else the hash lookup will not work. For example
    class ObjectNameKey {
        private String name;
        private int occurence;
        public ObjectNameKey(String name, int occ) {
            this.name = name;
            this.occurence = occ;
        public String getName() {
            return name;
        public String getOccur() {
            return occurence;
        public boolean equals(Object o) {
            if (!(o instanceof ObjectNameKey)) {
                return false;
            ObjectNameKey onk = (ObjectNameKey)o;
            if (onk.getName().equals(name) && onk.getOccur() == occurence) return true;
            return false;

  • Error during export of xi-objects

    Hi,
    I get an strange error when trying to export objects from the repository and directory using "Transport Using File System". The error says "Error during export".
    First we got the error "Internal error during pvc call: No space left on device" but this error disappeared without any actions from us and there is space left on the server.
    Please help
    Regards
    Claes

    Hi VJ,
    It only says "Error during export".
    /C

  • Auto crop object that is too large during export?

    Is there an option that I can choose to auto crop emitters during export? So that my export doesn't stop and wait for me to click the "ok" pop-up window before continuing?
    Thank you!

    Thanks I'll try that. Also I found out the pop-up windows don’t actually stop the exporting process. They were a warning that the image was going to be cropped during export. They were, and it finished… so everyone is happy.
    Thank you for your advice.

  • How do I stop video freezing during export?

    Video freezes during export to DV camera from imovie HD. Tried updating OS to combined version for 10.3.9. Installed latest updater for imovie 5 with no difference. Can anyone suggest any other solutions?
    Chris

    Chris,
    I found a solution to the freezing problem in one of the answers to another problem here on the discussion forum.
    It solved my problem and it might be helpful to you.
    Convert your iMovie video into a QT film with the same quality (I have a dutch version of iMovie HD, so I don't know the exact menu-wording. Something like >Slect>share).
    Import this QT film into a NEW iMovie project.
    Then export to your camcorder.
    It took my Mac almost 11/2 hour to convert the video to QT (55minutes movie).
    But in the end, it worked.
    I'm no expert, but I think it has to do with the mutilations caused by adding titles, cutting, audio additions etc. which are imparted on the document.
    The original video that frooze was 17.1 GB. The successful copy only 13.6GB.
    Good luck
    Ed van Kapel

  • How can changes happened during the cube activation  be nullified.

    Hi all,
    I was trying to activate some business content infocube in the dev.server. I selectecd data flow before. In the process I collected all infoobjects associated with the cube and all the info-objects which are associated with that info-objects. When I installed the cube some of the customised business content info-objects associated with the cube got over written by the delivered version. We dont have the documentation which provides the information on which are all the infoobjects that were modified and which were not.
    Can any one give some idea how the changes happened during the cube activation can be nullified.Or how can I find out which were the info objects which were customised before business content was again activated and which are those changes.
    Regards,
    Anand

    Hi Anand,
    As long as you did not activate the Cube (= not activate BC, but cube itself)
    you can compare the changed cube with the active cube (Change cube screen, use button Version Comparison)
    Udo

  • Blue-Ray Object: "Menu"; Export File Not Found--Any Clues?

    Trying to build a Blue-Ray DVD in CS3 (version 3.0.1.008). Project has motion menus and previews without errors. Upon trying to build either a disc or image I get the error
    Blue-ray object: "Menu"; Export file not found.
    Where "Menu" is the name of one of the sub menus in my project.
    Has anyone seen this error? What is an Export file? When and how does it get created?
    I have successfully burned this project to a standard DVD format.

    I have the pleasure of closing out my own question. I found the following post that was the clue I needed.
    http://forums.creativecow.net/readpost/145/857374
    It would appear that the Blue Ray build process is a lot more sensitive to file naming. I brought into my project a menu that I used as a starting template, I edited it in Photoshop and then renamed it in Encore. During the Blue Ray build process Encore rendered the menus to the original template names, but when it needed them to build the DVD it looked for the files that had the new names I had given the menus in Encore.
    Here is the fix. I exported the final menus using the Save as Template function in Encore. I then re-imported them as menus and relinked them to the DVD assets. Everything worked fine from that point on.
    The interesting thing is this did not happen when building a standard DVD using the same menus.

  • During export from Discover to Excel, Time Format changes to Number Format

    Hi
    I have a seconds column which is of number datatype. But in my report, I am converting the number in *0HH:MI:SS* format. For example, I have *4952534 seconds*. So my report is showing *1375:42:14* which is a Time Format. It looks good when I view the data in Discoverer Viewer or Plus. But when I try to export the data to Excel, the time format gets converted to *4952534 seconds*, which is creating problems. So can you suggest on how can I preserve the formatting during export to excel from discoverer.
    Thanks
    Sachin

    Hi,
    Excel will not implement the 0HH:MI:SS data format, it just gets the field as a number. You will have to format the field into text using the calculation from my previous post.
    Rod West

  • Stitch lines created in a PDF/X-1a due to transparency flattening during export from InDesign

    Has there been any sure fire methods to avoid the digital stitch lines created in a PDF/X-1a due to transparency flattening during export from InDesign? If I attempt to edit the PDF using the Acrobat Edit Text and Graphics tool the PDF is actually carved into sectors and images are not selectable as a whole. Also contrary to what I have read those white lines do indeed image from time to time. I could export as PDF/X4 to preserve the transparency but on occasion it would be advantageous to flatten it before supplying to the printer. Currently using CC and have done the usual things in an attempt to avoid the lines such as all text above transparent objects on a separate layer and 'Clip-Complex-Region' on export.
    Thanks in Advance!

    If the default High Res flattener preset is stitching make a custom preset that's all rasters and use it in the advanced tab of the PDF/X-1a preset

  • OBIEE 11.1.1.6.12 - value modification during export in tab delimited format

    Hi all,
    we have noticed unproper value modification during export in tab delimited format.
    Please find example below:
    The proper value is 24150170000011615 (it is state register number of enterprise).
    The wrong value is 24150170000011600.
    Correct value:
    http://s12.postimg.org/v2gpqqzgd/obiee_1.png
    How do we export data from obiee:
    http://s23.postimg.org/6k7dwiezf/obiee_2.png
    Wrong value after export:
    http://s22.postimg.org/qdgqgogn5/obiee_3.png
    What should we do to fix it?

    The bigger picture is as follows:
    I have a button on my report that essentially should download the output of report to tab delimited text file. This button is integrated with a custom built class which has a main method. When I click on the button, the logic written in the main method gets executed.
    In this method I generate my internal table and pass to cl_gui_frontend_services=>gui_download method with parameters mention above.
    I try debugging but every thing seems to be working correct when sy-subrc = 0 through executable program and it does not enter into the download method logic when i do it through main method, instead sy-subrc is straight set to 6 (unknown error).
    Regards,
    Pankaj.

  • Getting status as ERROR while instantiating Business Object in work flow?

    Hi,
    Getting status as ERROR while instantiating Business Object in work flow.
    How to rectify it.
    Tahnks in Advance.
    Moderator message: please have a look at the dedicated Workflow forum on SCN.
    Edited by: Thomas Zloch on Jan 19, 2012

    Hi,
    Go to SWDD and create a new workflow. This workflow will have two steps. This is just for test purpose so we are not going to define any triggering event etc.  First step will instantiate (creating a runtime object) a business object and second step will use that runtime object to execute one of its method. We know that to instantiate any BO we need the object key to be passed. Key uniquely identifies a runtime instance of Business Object (henceforth we will refer it as BO or business object interchangeably). 
    use Business Object SYSTEM and method GENERICINSTANTIATE to instantiate any Business Object in workflow

  • 100% CPU Usage in CS5.5 Premiere Pro during export/encoding

    I am wondering why my CPU usage is so high during exporting of my videos.  My counter shoots up to 100% as soon as I start and hovers at 95% throughout the whole process.  This seems dangerous to me so I wanted to bring it up here as I haven't found anyone with this same issue on this website or google.  Here are my system specs:
    i5-2400 CPU @3.10GHz
    6 GB of Ram
    64 bit windows 7
    Geforce 660 ti graphics card (2gb)
    They aren't top of the line but I feel like it should be capable of encoding.  I've cleaned my fans and tried using avi and h.264 formats which both led to the same issues.
    Any help would be greatly appreciated.  I'm new to premiere pro so I'm sure I left some useful information out above.

    "...the same results"
    This means high CPU usage, right?
    Correct
    Are your exported media files ok?
    I've only completed one because I was freaked out but yes they are fine.
    I guess the thing I'm worried about is my temps going up really high because of the 100% usage.  I thought that they were both entertwined as in high usage = high temps.  I'll look for a temperature program to run while encoding and I'll monitor how high the temps get.  You've given me hope here as I may have been making mountains out of mole hills.  If the temperatures are high would you recommend more fans in my desktop?

Maybe you are looking for

  • Creating a Tools Separator in Acrobat X Toolbar

    I have an Acrobat plug-in which, for Acrobat X, creates a custom toolbar with AVToolBarNew and then positions it on the Tools pane with AVAppRegisterToolBarPosition. As I have a lot of tools on this I would like to group them with tools separators ju

  • Filtering recordset with session variable

    This has never happened to me before, but for some reason, my recordset that drives a dynamic table won't filter results based on a session variable. I know session variables are working because I have the session variable echo on the page (dragged-n

  • Error while converting video in iTunes

    So, I'm trying to convert a movie that was not bought on iTunes into an iPhone/iPod version (File > Create New Version > iPhone/iPod) and I get an error similar to this: Error occurred while converting the file "**Insert File Name Here**"  An unknown

  • Thumbnail Filenames in Web Galleries and Filmstrip

    Without file names under Web & Filmstrip thumbnails, it's extremely time-consuming to search 500 images for any given file. Bridge and PS web galleries have gotten this right, so why not Lightroom?

  • File sender  FCC

    Hi all , I have source file ( .csv ) having the following  without any key H_F,Manu output data H_E sr no,098634838 H_E md,78/5262 H_T sample,1hr_excess H_T Date,01/01/1988 11:44:33 P_F_STAT,@,P TT_CL_NO,$,9,$,$,9,7,P TT_CL_LN,@,Dallas TST_P_N,&,C:\B