Recon creates several resources

Hi all

Have an interesting situation.

We have 1 object of resource, but we have 2 different sources acknowledged. When we run the first recon for this resource, it fits well.
When we run the second recon for the same resource, it creates duplicate resource objects.

the only difference in the Recon is a flat file and a DB. the resource has about 7 required fields with only 1. the db recon uses only the necessary
field. I'm not sure if this is what the origin of this problem or not.

any help would be appreciated.

Thanx
Fred

Hi Fred

Nice to see again you.

As far as I know, there is no way 9as) to the IOM to ignore case. What you can do is to ensure that all channels are in the same case.

In the GTC connectors, there is a transformer case and in some of the "no TAG" connectors there is an option to add the logic of transformer or specific options allowing you to business transformation.

If the connector does not support the transformation, you need to write a custom connector that supports the changes.

Best regards
/ Martin

Tags: Fusion Middleware

Similar Questions

  • Problem with access policies (create several resources)

    I'm having a problem with access policies:

    The first policy must create a resource.
    And the following policies should create childs on the resource.

    The problem here is that when the policies will add the childs, the resource is not configured yet.
    And then each will create a resource but I want just a single resource of the childs.


    When the resource is already deployed, policies to update this resource correctly.

    How can I fix?

    TKS

    Ricardo,

    I had a similar problem. In a post processing Manager, I managed the membership of the user to specific through the removeMemberUser roles and the addMemberUser of the tcGroupOperationsIntf class.
    The last parameter of this method is a Boolean value that, if true, would automatically trigger access by programming strategies in post processing.
    The problem is that there also is an OOTB handler for triggering access rules, so I was basically triggering twice access policies and duplicate resources appear.

    I hope this helps.

    See you soon

  • Create several clones at a time

    Hello

    I want to prepare the number of virtual machines (i.e. clones or pictures) of the gold statue.

    I develop my own UI where I'll be selecting one of the images existing gold. I will mention a number of clones that I need. When I click on the button, I'll be citing vSphere appropriate web services API to create clones.

    Can someone tell me what do I want to accomplish is feasible or not? Can we create several clones at a time? And that too the use of web services?

    Take a look at CloneVM_Task() , you can certainly deploy several clones at the same time, but you probably want it saving 3-4 as it's pretty resource, especially against your storage space.

    =========================================================================

    William Lam

    VMware vExpert 2009

    Scripts for VMware ESX/ESXi and resources at: http://engineering.ucsb.edu/~duonglt/vmware/

    repository scripts vGhetto

    VMware Code Central - Scripts/code samples for developers and administrators

    150 VMware developer

    Twitter: @lamw

    If you find this information useful, please give points to "correct" or "useful".

  • Create 2 resources in the console of administration of OIM 11 g

    Hello
    I created THIS type of resource definition in console design named "MyLDAP" & then created
    Resource in the management console where I gave "MyLDAP" resource type field inside & got
    created, but when I tried to create another resource in the administration console with even
    Definition of COMPUTING resource type i.e. MyLDAP is for me the following message on the administration console
    as "DOBJ. SVR_CANT_MAKE_MUTI_IT_TYPE cannot create multiple instances of this type", so I
    think that we cannot create resource that is already created with a TI resource type definition, in my
    case "MyLDAP.
    Can someone provide some guidance on this issue?

    Thank you
    Rahul Shah

    Open the Console Design and find the definition of COMPUTING resource, you want to use (MyLDAP in your case).
    You will see that when you do not check the flag below:

    * Insert several [] *.

    You just have to enable the check and save it.

  • Create several virtual machines from the same base image

    Hi all

    Is there any vi api sdk by which I can create several virtual machines form same base vmdk file?

    All create the VM from the base VMDK file will have their own delta vmdk file that will refer to the same base VMDK file. Only changes that are performed on each virtual machine are saved on their respective delta vmdk files.

    Thanks in advance...

    Hello

    What you are referring is called Clones related, in the current VI API, there is no method that supports this feature. You can take a look at CloneVM_Task() http://www.vmware.com/support/developer/vc-sdk/visdk25pubs/ReferenceGuide/vim.VirtualMachine.html#clone if you want to implement a full clone and this will require you to have access to vCenter.

    In the next version of vSphere, vSphere SDK THAT will provide a way to implement the related Clones and it will be a parameter you can specify CloneVM_Task() , more precisely in the VirtualMachineRelocateSpec where you will specify diskMoveType to createNewChildDiskBacking

    You can find more information once vSphere of GA and the new QAnywhere VI documents are released, but if you are looking to implement related Clones today, you can take a look at the product of VMware View 3, which provides support for linked Clones or you can take a look at two scripts that I wrote which creates linked Clones similar to that of the view :

    Clones related to ESX

    CLones related to ESXi

    =========================================================================

    William Lam

    VMware vExpert 2009

    Scripts for VMware ESX/ESXi and resources at: http://engineering.ucsb.edu/~duonglt/vmware/

    repository scripts vGhetto

    http://Twitter.com/lamw

    If you find this information useful, please give points to "correct" or "useful".

  • Problem in creating several attributes XML with the same name of the attribute

    I am trying without success trying to create several attributes XML with the same name, as shown here in a Microsoft example configuration file:



      
         
         
         
      

    I'm calling the NewDocument GetRootElement functions and then "newelement" (appSetting), "newelement" (add)

    Then I call AddAttribute with add, key & Key0, then with add, value & 0.  This seems to work fine but when I try to add the second pair of key & Key1 and value attributes & 1 for item "Add" replaces ""and I find myself with"" only.

    I do something wrong or CVI is not able to create an XML of this type?

    Thank you

    Here's how you do it. I show not to keep things simple error checking.

    #include

    public static void CreateAddElement (mother of CVIXMLElement, const char * key, const char * value)
    {
    Add the CVIXMLElement;
    CVIXMLNewElement (parent, -1, 'Add', &add);)
    CVIXMLAddAttribute (add, "touch", key);
    CVIXMLAddAttribute (add, "value", value);
    CVIXMLDiscardElement (add);
    }

    void main (void)
    {
    CVIXMLElement root, and appSetting;
    Doc CVIXMLDocument.
     
    CVIXMLNewDocument ("configuration", &doc);)
    CVIXMLGetRootElement(doc, &root);)
    CVIXMLNewElement (root,-1, "appSetting", and appSetting);
    CreateAddElement (appSetting, "Key0", "0");
    CreateAddElement (appSetting, "Key1", "1");
    CreateAddElement (appSetting, "Key2", "2");
    CVIXMLDiscardElement (appSetting);
    CVIXMLDiscardElement (root);
    CVIXMLSaveDocument (doc, 1, "c:\\temp\\temp.xml");
    CVIXMLDiscardDocument (doc);
    }

  • How can I create several rectangles with a draw rect.vi

    How can I create several rectangles with a fire rect.vi? Thank you

    Like this...

    -DP

  • Create several folders with several folders in the rapids

    How can I quickly create several folders with a specific set of folders in each of them?

    for example:
    Folder1-> test1, test2, test3...
    Folder2-> test1, test2, test3...
    Folder3-> test1, test2, test3...
    etc.
    I want to create several folders named specifically with an ID I'll specific, and in each of these cases, I would like to have a set of folders.
    Thank you for your help.

    Hello

    Check out the steps suggested by Steve Winograd and TechHead74 in http://answers.microsoft.com/en-us/windows/forum/windows_xp-files/how-or-can-i-create-numerous-new-folders-instaed/a2a67066-7e97-47b3-aba4-8e8a1a460ca3

    Hope this helps you.

  • How to create several classes of cascade?

    Goal: Create the button to start and stop the service.

    Situation: One button works.

    However, whenever I click on another button, the button does not work.

    Question: how to create several classes of cascade?

    or something wrong in my code?

    Mini code:

    Calls a CPP QML.

    ApplicationUI::ApplicationUI (bb::cascades:Application * app): QObject (app)

    {
    QmlDocument * qml = QmlDocument::create("asset:///main.qml").parent(this);

    CameraWrapper * wrapper = new CameraWrapper();

    QML-> setContextProperty ('wrapper', wrapper);

    AbstractPane * root = qml->() createRootObject;
    App-> setScene (root);
    }

    And then, QML calls another RPC.

    import bb.cascades 1.0

    {Page}
    {Of container
    layout: {DockLayout}
    }
    Button {}
    text: qsTr ("Start")
    onClicked: {}
    wrapper.startRec ();
    }
    }
    Button {}
    text: qsTr ("Stop")
    onClicked: {}
    wrapper.stopRec ();
    }
    }
    }
    }

    The main CPP:

    #include "cam.hpp".

    using namespace bb::cascades;

    {CameraWrapper::CameraWrapper()}

    int CameraWrapper::startRec() {}

    This button works.

    }

    int CameraWrapper::stopRec() {}

    This button does not work.

    }

    The main.hpp

    Class CameraWrapper: public QObject
    {
    Q_OBJECT
    public:
    CameraWrapper();
    Virtual ~ CameraWrapper() {}

    Q_INVOKABLE
    int startRec();
    int stopRec();
    };

    Thank you for your attention,

    Finally, we use the thread to solve the problem.

    Solution:

    loopWrapper (void * test) {void *}
    CameraWrapper * a = (CameraWrapper *) test;
    a-> startRec();
    return null;
    }

    setFlagWrapper (void * test) {void *}
    CameraWrapper * b = (CameraWrapper *) test;
    b-> setFlagFalse)
    return null;
    }

    void * CameraWrapper::setFlagFalse (void * arg) {}
    exit_application = false;
    fprintf (stderr, "Flag changed to false\n");
    return arg;
    }

    void CameraWrapper::runLoop() {}
    pthread_create (& thread_a, NULL, & loopWrapper, (void *) this);
    }

    void CameraWrapper::runSetFlag() {}
    pthread_create (& thread_b, NULL, & setFlagWrapper, (void *) this);

  • How to create several site VPN on Cisco 2801

    Hello

    We use 2801 to our VPN needs. We have already configured a VPN site-to site inside. My current scenario is to create several VPN IE at different sites and a remote client VPN server for our road warriors (they use a cisco VPN client to connect).

    Let me know how can I achieve that scenario. Currently we have in VPN profiling in place. can I fill the script using VPN profiles, how it can be used. Kindly advice me at the earliest.

    Please find attached the 2801 direct configuration file, which is quite works very well

    Thanks in advance.

    Djamel.

    Djamel

    As much as I know it does no harm to have political isakmp 9 and isakmp 10 with the same parameters in each of them. But it also is not good. Others that extra isakmp policy I don't see anything that seems problematic in the config you have posted.

    HTH

    Rick

  • Cisco ASA cannot create several tunnels at the same address in hand?

    We have several remote sites with Linksys WRVS4400N and Smoothwall firewall/vpn devices.  I need these sites to be able to connect to several tell-contiguous subnets to our main office.  This was done easily with smoothwall and linksys.  You create a separate tunnel for each subnet, and voila, you're done.  However, when I tried this with our ASA newly installed, it won't let me create several tunnels at the same address of the remote peer.  It is a problem because these sites have only a single IP address public static.  Did I miss something or ASA not allow connections to and from multiple subnets form a site with a unique address peer?

    Resembles the limitation on the WRVS4400N as Cisco ASA supports several subnets by tunnel.

    Is there anyway that you can configure a subnet more instead of specific subnets on the ACL?

    For example:

    If you 192.168.0.0/24 and 192.168.1.0/24, instead of having 2 subnets configured, you can combine them into 1 subnet 192.168.0.0/23

  • Is Adobe Muse create several versions of a site?

    1 adobe Muse create several versions of a site, then use the correct version based on the width of the device? I know that reactive design uses the same pages for all sizes of device, from a mobile phone on the desk. Muse Adobe do this? I was expecting to export a mobile/tablet application files and worry about duplication of content.

    2. I've seen in a video tutorial Adobe Muse where a mobile version of landscape was momentarily shown and the content is okay; good size for portrait image expanded to fill the screen to the landscape, making it a gigantic. Could it be customized resized in the landscape to look 'right '?

    Thank you. Excited by the use of this program.

    Steve

    This tutorial answered question 1! Create a sensitive site with Adobe Muse | Adobe Muse CC tutorials

    It seems that you can set breakpoints and resize and move items in function. Once again, the tutorial answers above question 2!

  • Why we cannot create more than one primary key on a table. Why we create several unique key on a table. Please explain if anyone have details of this.

    Why we cannot create more than one primary key on a table. Why we create several unique key on a table. Please explain if anyone have details of this.

    «a primary key has semantic meaning, it is to be immutable (never change of value), unique and not null.»

    a unique constraint is simply "at any time, these values are unique - they can change and they can be null.

    You use a unique when constraint

    (a) you do not already have a primary key for a table can have only one
    (b) you allow NULL values in attributes
    "(c) to allow you to update the values in the attributes.

    https://asktom.Oracle.com/pls/Apex/f?p=100:11:0:P11_QUESTION_ID:5541352100346689891

  • How to create a resource of query using CS component?

    Hi all

    Can someone please let me know how we can create a resource request (OOTB assettype WCS) using the option element CS?

    Assettype - Query, OOTB assets can be created using two methods: 1) using the SQL query and 2) using CS elements.

    I searched a lot of guides and has been unable to find even a small example or a snippet of code that must be used in an element cs while creating a resource request.  Even guide the developer gives example of using only one SQL query when creating a resource request and did not mention anything on the assets of the query to the CS elements.

    It would be very very useful for me and most of them if an example can be provided. Thanks in advance.

    Kind regards

    Praveen

    Hi Praveen,

    In the attribute menu editor drop-DOWN using a resource request, you need the following:
    -The SQL code in the assets of the query should return a column 'value '. For example:select name as value from shippingtype

    -If the data type of the attribute using the attribute Editor is 'good', the query should also return property IDs. For example:select name as value, id as assetid from Product where...

    See Designing Attribute Editors - 11g Release 1 (11.1.1.8.0)

    Your original CallQuery was essentially correct except that you must

    1. return a value column (and possibly an id column)

    2. no loop on the results. The attribute editor will loop on the results.

    3. set the name of the list the variable 'list '.

    For example

    <%
      String sqlQuery = "select name as value from Query";
    %>
    
    

    Note that this will return a list of the names of the assets of the query, which may or may not be what you need.

    I hope this helps.

    Kind regards

    Stephan.

  • Can FrameMaker to create several Master Pages with sizes different pages in a single file of FM?

    Can FrameMaker to create several Master Pages with sizes different pages in a single file of FM?

    N °

    You must break your content between files and use the book feature to apply numbering to make look it seamless. Sometimes, if you can, re - organize the content so that all oversize pages come at the end of a chapter/file makes it easier to manage a such split files in the book.

Maybe you are looking for