GTC connectors and SPML compliant

Hi
I am trying to integrate a target application using GTC connector transport providers as web services and Format providers as SPML and even i have to create a dummy web service which is compliant with SPML so that it can be integrated with OIM.
can any one pl help me to create a Dummy webservice compliant OIM SPML?
Web services shud be created using Java.The web service needs to store data the in txt file and send a response to OIM.

Make sure you are exporting the Generic Connector type object, and not the Resource Object. There are configurations that only come when you export this way. Otherwise you only get the resource and process definition workflow, and none of the configurations.
You might also need to export the provider definition as well and import.
-Kevin

Similar Messages

  • GTC Connector using SPML Format Provider and Web Services Transport Provide

    Hello All,
    Did any body create a GTC connector which uses SPML Format for Format Provider and Web Services format for Transport Provider?
    Is there any doc which talks about the same?
    I need to provision to a system over web services and I thought GTC using the above formats should be an easy approach. Am I right?
    I was trying to follow:
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e14309/devgtc.htm#BABDFDFE
    But Iam getting lost in the immerse details.
    Thanks in advance.

    Hi ,
    I tried creating one and am getting the following error while provisioning:
    SPML Response failed V2 schema validation
    Th eoracle document says :Ensure that the SPML response returned by the target system conforms to the SPML V2 standard specification
    Please help me with the same. What is it that needs to be done here.
    Thanks
    WIP

  • Error obtained while provisioning using a GTC connector through SPML

    Hi,
    I am getting the following error while provisioning a resource using GTC and SPML... have created GTC and provisioning process ..is working for 1 instance (workflow) but have created a new instance with the same connector which is failing during the provisioning process and I am getting the below error.pLZ HELP. .
    WARN,21 Apr 2010 20:02:06,039,[XELLERATE.GC.PROVIDER.PROVISIONINGFORMAT],SPML Request validation result w.r.t SPML v2 CORE schema(pstc_spmlv2_core.xsd)-->true
    DEBUG,21 Apr 2010 20:02:06,039,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoader/getClassLoader entered.
    DEBUG,21 Apr 2010 20:02:06,039,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoader/getClassLoader left.
    WARN,21 Apr 2010 20:02:07,336,[XELLERATE.GC.PROVIDER.PROVISIONINGTRANSPORT],SPML Response validation result w.r.t SPML v2 CORE schema(pstc_spmlv2_core.xsd)-->true
    WARN,21 Apr 2010 20:02:07,352,[XELLERATE.GC.PROVIDER.PROVISIONINGTRANSPORT],1. <errorMessage> present in SPML response is -->errorMessage=Retrieving the COM class factory for component with CLSID {BC8E841F-B86D-49E9-9422-3426C9B99FAF} failed due to the following error: 8000401a.
    ERROR,21 Apr 2010 20:02:07,352,[XELLERATE.GC.PROVIDER.PROVISIONINGTRANSPORT],WSProvisioningTransportProvider.sendData :problem with private methods
    com.thortech.xl.gc.exception.ProvisioningTransportException: SPML_RESPONSE_ERRORCODE_CUSTOM
         at com.thortech.xl.gc.impl.prov.WSProvisioningTransportProvider.checkSPMLRespoenseError(Unknown Source)
         at com.thortech.xl.gc.impl.prov.WSProvisioningTransportProvider.getSOAPMessage(Unknown Source)
         at com.thortech.xl.gc.impl.prov.WSProvisioningTransportProvider.sendData(Unknown Source)
         at com.thortech.xl.gc.runtime.GCAdapterLibrary.executeFunctionality(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:618)
    Edited by: user9340488 on 21/04/2010 23:05

    Got the errors.
    1) DB_STATUS.. error was coming since the lookup I gave there was not actually created in the database due to a refresh I did while creating it effectively deleting all the entered data.
    2) The error in logs was coming due to wrong input of the GTC database provider during the creation of IT Resource.

  • Generic technology connector and SPML problems

    I'm having some trouble finding docs for my problem. What I'm trying to do is create my own spml web service (employing the new Java 6 JWS technology), which can be used by OIM by means of a generic technology connector . But no matter what I do, I can't seem to make the two communicate. I can't find any documentation explaining how to create a SOAP web service for SPML: what methods should be created, their signature, whether there is any specific WSDL that I should use to generate the Java classes and methods for the web service, etc...
    I actually don't even know whether the new JWS can be used at all. Perhaps I should be using Apache Axis (or Axis2) or something else.
    Thanks.

    This is what I've found in the docs:
    "Each SPML request is sent in a SOAP message. The SOAP header carries authentication information for the request. The actual SPML request data is the SOAP message body. "
    All I'm trying to do is create a SOAP web service (in this case with Java 6, but that's not fundamental) that can intercept that message and grab the SPML request (and then do what I have to do).
    I tried with something like the following code:
    package wsspml;
    import javax.jws.WebService;
    import java.io.IOException;
    import java.util.logging.*;
    @WebService
    public class SPMLServer {
         public String processRequest(String requestData) {
    but it won't work. It's like the exposed SOAP method "processRequest" is invisible. It's not being called. Perhaps the signature is wrong. I don't know what to make of it. I'm trying to understand how to grab that SPML request that's coming from OIM through the custom generic technology connector that I configured.

  • Generic connector with webservice and SPML provider

    Hi,
    I have created a Generic connector in Oracle Identity server successfully with Webservice transport porvider and SPML payload provider. But when I am trying to create a user using this connector I am getting following error in OIM server log:
    AJPRequestHandler-RMICallHandler-20 XELLERATE.WEBAPP - Setting the response code as GCPROV.ProvTransportProvider.WebServices.Caught exception while handling request: malformed array t
    Can anyone please help me regarding this? I am even not able to identify where it is getting failed.
    Thanks in advance

    This is what I've found in the docs:
    "Each SPML request is sent in a SOAP message. The SOAP header carries authentication information for the request. The actual SPML request data is the SOAP message body. "
    All I'm trying to do is create a SOAP web service (in this case with Java 6, but that's not fundamental) that can intercept that message and grab the SPML request (and then do what I have to do).
    I tried with something like the following code:
    package wsspml;
    import javax.jws.WebService;
    import java.io.IOException;
    import java.util.logging.*;
    @WebService
    public class SPMLServer {
         public String processRequest(String requestData) {
    but it won't work. It's like the exposed SOAP method "processRequest" is invisible. It's not being called. Perhaps the signature is wrong. I don't know what to make of it. I'm trying to understand how to grab that SPML request that's coming from OIM through the custom generic technology connector that I configured.

  • Problem with using GTC connector

    Hi All,
    we are using data base table connector for the trusted recon from oracle database to oim. I have an entity adapter which i attached to the pre-insert updates the Organization depends on the attribute. This is working fine when i do the first time recon , the organization is updating properly. But if i updates any field in the database and reconcile, the Organization is updating as Xellerate Users.The old value is wiped out.
    How can i solve this problem.
    Is this solved by using attaching the adapter to the post-update also.
    Thanks,
    KK

    Are you using GTC connector for this ?
    I think you connector is brining Organization as Xellerate Users but at pre insert you are updating it with your org name.
    But on updating you haven't put your entity adapter i.e. on Pre Update that's why it is updating org as Xellerate Users. Put your adapter on pre update too.

  • Question on GTC Connector

    Hi All,
    I have a question regarding GTC Connector working. Let say, I have a flat file "Storage.txt" with following strucutre:
    UserName|FirstName|LastName|Mail|Manager
    SAjmera|Sunny|Ajmera||Smith
    NJoshi|Nitin|Joshi||Ssaini
    I create a GTC Connector, do the configuration mapping, create a Recon Rule and then ran the schedule task. The user in flat file got linked to OIM User as per the recon rule.
    Now, suppose the structure of my flatfile changes to:
    EmployeeNumber|MiddleName|AccountDisabled|Address.
    If I Click on my GTC Connector now, I dont see the updated strucutre of my file in the Configuration Mapping. I deleted all the old attributes and created the new
    attributes. I checked in design console, the Process form got updated. I created a new recon rule and ran the schedule task. I checked the Reconcilation Manager
    in design console to see the Recon event. Although, the recon event were there but there was no value aganist any of the attribute. I have tried this several times
    but nth helps nor I could see any error in the logs.
    So, my question is: Do I have to create a new GTC Connector every time the structure of my FlatFile changes or updating GTC Connector actually works?
    Cheers,
    Sunny

    Hi All,
    Got the Answer. Update of GTC Connector also works.
    Cheers,
    Sunny

  • OIM GTC Connector

    Hi All,
    I have a requirement where I need to provision and reconcile into multiple flat files and metadata in each of them may differ.
    So I was planning to create custom GTC connector each for provisioning and reconciliation respectively.
    Can anyone please suggest me the best possible solution for this.
    Is Oracle planning to launch a connector for flat file in near future which can help in such scenarios?

    I have tried using default GTC connector for reconciliation (without trusted source reconciliation). I have three fields in the file UserName,FirstName,LastName and have mapped them to account profile for OIM, a reconciliation rule has been created which looks for equality of User Id in both OIM and flat file. The User ID is present in both flat file and OIM and is same.
    I have done configuration on both OIM 9100 and also on OIM 9101.
    It is working in OIM 9100 but not on 9101 and giving me null pointer exception. Any idea why it is not working on 9101.
    When I have a new entry in flat file that exists in OIM the connector link the two and creates the resource form. But when I try to update/delete any existing value in flat file it is showing me a strange behaviour.
    For update it links the same profile again to different resource form (basically it link the account using "one entity match found" however it should be "one process match found")and for delete it is not working. I am assuming that it is not able to call process tasks.
    Can anyone tell me why it is doing so. My reconciliation rule is working fine.

  • GTC Connectors migration in OIM11gR2

    Hi
    We had exported entire GTC resource object and when we tried to import in another env, we see dependency errors on GTC Schedulers even though the schedulers exists in the xml.
    What are the steps to migrate GTC Connectors(Flatfile and DBAPP) from one environment to another?
    Do I have to import GTC Schedulers first and then Resource Object,Process Form and Process Definition? Does the reconciliation and provisioning work after import without issues?
    Pls share ur ideas.

    Make sure you are exporting the Generic Connector type object, and not the Resource Object. There are configurations that only come when you export this way. Otherwise you only get the resource and process definition workflow, and none of the configurations.
    You might also need to export the provider definition as well and import.
    -Kevin

  • GTC connector,user not created...

    Hi All,
    I am new to OIM n just aware of the few terminologies of OIM.
    I created a GTC connector for flat file reconcilation then run the scheduled task.In the flat file I added two new users.After the process ,,the details of the two new users must have been added to the OIM DB,but it did not.
    When i tried searching dese users I was unable to find them there,although the file was copied from the parent directory to the archiving directory.
    What could be the possible error?????
    TIA

    When you compile your adapters , OIM actually compiles the java code of adapters and put them in to OIM_HOME/xellerate/adapters/..
    Check this folder if it has all the class files of the adapters , if not there , just compile them again and restart your server .
    Thanks
    Suren

  • GTC Connector 11g R2 -Multiple Feeds

    Hi,
    We have three HR flat file feed, we need to reconcile data from these using GTC into OIM 11g R2. What should be the approach here provided:
    1. Attribute names are same across these HR feed
    2. Attribute names are different
    Thanks in advance

    It does not matter whether you have 3 different HR flat files having same or different attribute names...
    As long as the attributes they supply are independent and mutually exclusive (except some common identifier, say User Login) we should be fine...
    It is just case of multiple trusted sources... That's all...
    And in case of multiple trusted sources, if we were writing our custom code, we could have managed everything in a single scheduler...
    Since, in GTC connector, we won't have control over the code as per se, we anyway can create 3 separate Trusted Source type Workflows, say HR_GTC_1, HR_GTC_2 and HR_GTC_3
    Say, files are like this:-
    #HR GTC Connector 1
    UserID,FirstName,LastName,Organization,Role,UserType
    A000001,John,Galt,Xellerate Users,EMP,End-User
    And second file controls their mobile number... Also, in second file the spelling of the common identifier UserID too is a bit different, say it is User_ID:-
    #HR GTC Connector 2
    User_ID,Mobile
    A000001,+1732987654
    And the 3rd file controls their home address and in this case too common unique identifier is a bit different, say UserID is called UID:-
    UID,City,State
    A000001,Edison,New Jersey
    So, create 3 separate Trusted Source type Workflows, say HR_GTC_1, HR_GTC_2 and HR_GTC_3... Also, with the help of Custom Transformation, we can control the attribute values to some extent... I think Custom Transformation is the compensation of the fact that we don't have control over Source code... For simpler use cases, we will not need any Custom Transformation....
    Once everything is in place, 1st Scheduler for HR_GTC_1 executes and creates the OIM user A000001... Second Scheduler provides the mobile number and 3rd one provides Address info..
    In the start, I mentioned something about being independent and mutually exclusive... It is very important... Say, both File2 and File3 provide Mobile numbers and you configure in your HR_GTC_2 and HR_GTC_3 for Mobile from both of them respectively. Result, in case of File2 giving +1732987654 and File3 giving +1890098649, there will definitely be information losses... So, such things must be clear from the start of the project that which one (File2 or File3) is the true authoritative source for Mobile number... So, if File2 is the one for mobile, even if File3 too provides Mobile, while creating HR_GTC_3, simply ignore this field in the Reconciliation Staging... DO NOT MAP MOBILE TO OIM USER PROFILE WHILE CREATING HR_GTC_3
    Hope I have answered all your queries...

  • GTC Connector Future Dated Recon

    Does GTC Connector support future/effective dated reconciliation. If it does, what is the configuration that needs to be done.

    If I well understood your question, you need to reconcile user with start/effective data as future date. then yes, it is supported.User will be created in OIM with "Disable Until Start Date" status. Only issue I notice is " It won't fire access policy". Once the start date = sys date then access policy will fire and status also become "Active"
    You can implement it by modifying where clause in the sql query.
    ie: DBAT connector. modify query property file. update the where clause of current user recon query in such way that it return curren user+ future dated user
    --nayan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • OIM 11g : Flat-File Reconciliation using GTC Connector : Urgent

    Hi,
    Can you pls. help in creating an GTC for flatfile reconciliation.
    I am using OIM 11g version, and i am struck when i create a try to insert a record into OIM.
    Provided a flatfile in the below format:
    #GTC Trusted Source
    login,firstName,lastName,eMail,organization
    TESTACC,TESTFN,TESTLN,[email protected],Xellerate Users
    and while creating GTC did the below settings:
    Name FFRecon
    Reconciliation check box [selected]
    Transport Provider Shared Drive
    Format Provider CSV
    Trusted Source Reconciliation check box [selected]
    Staging Directory (Parent identity data) C:\stage\External Files
    Archiving Directory C:\stage\External Files\archive
    File Prefix identities
    specified Delimiter ,
    File Encoding UTF8
    Source Date Format yyyy/MM/dd hh:mm:ss z
    Reconcile Deletion of Multivalued Attribute Data check box [cleared]
    Reconciliation Type Full
    Performed the mapping of data in the below format
    login -> User Login
    firstName -> First Name
    lastName -> Last Name
    eMail -> Email
    organization -> Organization
    password -> Password Generator
    Also did the configuration on the OIM design console end.
    I have taken guidance from the OIM release 9.1.0,
    http://st-curriculum.oracle.com/obe/fmw/oim/10.1.4/oim/obe12_using_gtc_for_reconciliation/using_the_gtc.htm
    Now when i run the GTC connector, the job moves to running state and remains there for a long duration. The account is also not gettting created on the OIM end.
    Pls. let me is there any issue in configuration.
    It would be greatful, if you can provide the steps for the same.
    Also let me know any details required from my end.
    Regards,
    Karan

    Thanks for your quick response.
    We have tried the option, of creating a new GTC, but that too didn't helped in solving the issue.
    When we schedule the job, it moves to RUNNING state for a long duration and the below error is encountered. Can you pls provide some suggestion on the below error.
    Regards,
    Karan
    ==================================================================================
    Caused by: oracle.iam.reconciliation.exception.ReconciliationException: Matching rule where clause is null
         at oracle.iam.reconciliation.impl.ReconOperationsServiceImpl.getMatchingRule(ReconOperationsServiceImpl.java:476)
         at oracle.iam.reconciliation.impl.ReconOperationsServiceImpl.ignoreEvent(ReconOperationsServiceImpl.java:376)
         ... 48 more
    [2011-01-18T23:00:23.696+05:30] [oim_server1] [WARNING] [] [XELLERATE.GC.FRAMEWORKRECONCILIATION] [tid: OIMQuartzScheduler_Worker-6] [userId: xelsysadm] [ecid: 0000IqQ6XOI4mniNd6T4i51DDSFi00000k,0] [APP: oim#11.1.1.3.0] [dcid: 8319cc259f6c13fc:4b9b7450:12d9a0d8ae4:-7ffd-0000000000000040] Though Reconciliation Scheduled task has encountered an error, Reconciliation Transport providers have been "ended" smoothly. Any provider operation that occurs during that "end" or "clean-up" phase would have been executed e.g. Data archival. In case you want that data to be a part of next Reconciliation execution, restore it from Staging. Provider logs must be containing details about storage entities that would have been archived
    [2011-01-18T23:00:23.696+05:30] [oim_server1] [WARNING] [] [XELLERATE.GC.PROVIDER.RECONCILIATIONTRANSPORT] [tid: OIMQuartzScheduler_Worker-6] [userId: xelsysadm] [ecid: 0000IqQ6XOI4mniNd6T4i51DDSFi00000k,0] [APP: oim#11.1.1.3.0] [dcid: 8319cc259f6c13fc:4b9b7450:12d9a0d8ae4:-7ffd-0000000000000040] FILE SUCCESSFULLY ARCHIVED : C:\Sudhan\Project Related\COE\Installation\Flatfile\Stage\identities20110112.txt
    [2011-01-18T23:00:25.259+05:30] [oim_server1] [NOTIFICATION] [IAM-1020005] [oracle.iam.scheduler.impl.quartz] [tid: OIMQuartzScheduler_Worker-6] [userId: xelsysadm] [ecid: 0000IqQ6XOI4mniNd6T4i51DDSFi00000k,0] [APP: oim#11.1.1.3.0] [dcid: 8319cc259f6c13fc:4b9b7450:12d9a0d8ae4:-7ffd-0000000000000040] [arg:  QuartzJobListener.jobWasExecuted Description null FullName DEFAULT.FFRECONLT_GTC Name FFRECONLT_GTC] Job Listener, Job was executed QuartzJobListener.jobWasExecuted Description null FullName DEFAULT.FFRECONLT_GTC Name FFRECONLT_GTC
    [2011-01-18T23:04:11.618+05:30] [oim_server1] [NOTIFICATION] [IAM-1020004] [oracle.iam.scheduler.impl.quartz] [tid: OIMQuartzScheduler_Worker-7] [userId: xelsysadm] [ecid: 0000IqQ6Y4F4mniNd6T4i51DDSFi00000l,0] [APP: oim#11.1.1.3.0] [dcid: 8319cc259f6c13fc:4b9b7450:12d9a0d8ae4:-7ffd-0000000000000041] [arg: Description null FullName DEFAULT.Issue Audit Messages Task Name Issue Audit Messages Task] Job Listener, Job to be executed Description null FullName DEFAULT.Issue Audit Messages Task Name Issue Audit Messages Task
    [2011-01-18T23:04:12.290+05:30] [oim_server1] [NOTIFICATION] [IAM-1020014] [oracle.iam.scheduler.impl.quartz] [tid: OIMQuartzScheduler_Worker-7] [userId: xelsysadm] [ecid: 0000IqQ6Y4F4mniNd6T4i51DDSFi00000l,0] [APP: oim#11.1.1.3.0] [dcid: 8319cc259f6c13fc:4b9b7450:12d9a0d8ae4:-7ffd-0000000000000041] [arg:  Method details: executeJob] Method details Method details: executeJob
    Edited by: user8674642 on Jan 18, 2011 11:06 AM

  • GTC connector Error

    Hello All,
    I faced the following Error While I've run the first scheduled job to reconcile Data form db application , I've created GTC connector for reconciliation Only. 
    [2013-07-28T16:36:21.830+02:00] [oim_server1] [NOTIFICATION] [IAM-1010010] [oracle.iam.platform.authz.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] ********** Entering the Authorization Segment with parameters:: LoggedInUserId = 5, target resourceID = null, Feature = RECONCILIATION_MANAGEMENT, Action = IGNORE **********
    [2013-07-28T16:36:21.831+02:00] [oim_server1] [NOTIFICATION] [IAM-1010033] [oracle.iam.platform.authz.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] OES Results are not found in cache with Key F: RECONCILIATION_MANAGEMENTS: 5P: IGNOREOESDefinition
    [2013-07-28T16:36:21.835+02:00] [oim_server1] [NOTIFICATION] [IAM-1010021] [oracle.iam.platform.authz.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Validating the Internal Obligations: [InternalObligation: name: noop, values: [true], convertToObligation: false, InternalObligation: name: noop, values: [true], convertToObligation: false]
    [2013-07-28T16:36:21.835+02:00] [oim_server1] [NOTIFICATION] [IAM-1010022] [oracle.iam.platform.authz.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] ---------- The list of Internal Obligation is satisfied, returning TRUE ----------
    [2013-07-28T16:36:21.835+02:00] [oim_server1] [NOTIFICATION] [IAM-1010026] [oracle.iam.platform.authz.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] ********** Exiting the Authorization Segment with result Decision :PERMIT[[
    Obligations from policy:  **********
    [2013-07-28T16:36:21.867+02:00] [oim_server1] [NOTIFICATION] [IAM-5011034] [oracle.iam.reconciliation.utils] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] User 5 is granted access to operation IGNORE
    [2013-07-28T16:36:21.878+02:00] [oim_server1] [NOTIFICATION] [IAM-5010000] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Generic Information: ignoreEvent Input Data : {SIEBEL_USER_NAME=hamsa.said, FULLNAME=, CSS User=Yes, EMAIL=, DAILYLIMIT=, TRANSACTIONLIMIT=, IS_ADMIN=, USERNAME=hamsa.said, USER_STATUS=A, MOBILE_NUMBER=, PASSWORD=fCIvspJ9goryL1khNOiTJIBjfA0=, EMPLOYEE_ID=} dateFormat : yyyy/MM/dd HH:mm:ss z
    [2013-07-28T16:36:22.088+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on eBusiness Person
    [2013-07-28T16:36:22.178+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on SMT1_GTC
    [2013-07-28T16:36:22.230+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on SMT1_GTC
    [2013-07-28T16:36:22.281+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on CSS_GTC
    [2013-07-28T16:36:22.345+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on CSS_GTC
    [2013-07-28T16:36:22.449+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on AD User
    [2013-07-28T16:36:22.499+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on AD User
    [2013-07-28T16:36:22.621+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on TELEPIN_GTC
    [2013-07-28T16:36:22.722+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on SM1_GTC
    [2013-07-28T16:36:22.786+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on WINCSH1_GTC
    [2013-07-28T16:36:22.818+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on WINCSH1_GTC
    [2013-07-28T16:36:22.859+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on SM11_GTC
    [2013-07-28T16:36:22.881+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on SM11_GTC
    [2013-07-28T16:36:22.896+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on Xellerate Organization
    [2013-07-28T16:36:22.911+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on Xellerate Organization
    [2013-07-28T16:36:22.931+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on AD User Trusted
    [2013-07-28T16:36:23.061+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on HPSMGR_GTC
    [2013-07-28T16:36:23.195+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on SM_GTC
    [2013-07-28T16:36:23.341+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on SM_GTC
    [2013-07-28T16:36:23.449+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on PPM1_GTC
    [2013-07-28T16:36:23.507+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on AD Group
    [2013-07-28T16:36:23.556+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on AD Organizational Unit
    [2013-07-28T16:36:23.625+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on HPSM_GTC
    [2013-07-28T16:36:23.679+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on HPSM_GTC
    [2013-07-28T16:36:23.759+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on HPM_GTC
    [2013-07-28T16:36:23.824+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on HPM_GTC
    [2013-07-28T16:36:23.882+02:00] [oim_server1] [NOTIFICATION] [IAM-5012131] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Performing XML schema validation on PPM1_GTC
    [2013-07-28T16:36:23.889+02:00] [oim_server1] [NOTIFICATION] [IAM-5010000] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Generic Information: CSS_GTC from cache
    [2013-07-28T16:36:23.901+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is CSS user and value is Yes
    [2013-07-28T16:36:23.902+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is Email and value is
    [2013-07-28T16:36:23.902+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is TRANSACTIONLIMIT and value is
    [2013-07-28T16:36:23.902+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is FULLNAME and value is
    [2013-07-28T16:36:23.903+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is USERNAME and value is hamsa.said
    [2013-07-28T16:36:23.903+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is DAILYLIMIT and value is
    [2013-07-28T16:36:23.903+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is IS_ADMIN and value is
    [2013-07-28T16:36:23.904+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is PASSWORD and value is fCIvspJ9goryL1khNOiTJIBjfA0=
    [2013-07-28T16:36:23.904+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is SIEBEL_USER_NAME and value is hamsa.said
    [2013-07-28T16:36:23.904+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is MOBILE_NUMBER and value is
    [2013-07-28T16:36:23.904+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is EMPLOYEE_ID and value is
    [2013-07-28T16:36:23.904+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is USER_STATUS and value is A
    [2013-07-28T16:36:23.905+02:00] [oim_server1] [ERROR] [IAM-5010000] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Generic Information: {0}[[
    oracle.iam.reconciliation.exception.ReconciliationException: Matching rule where clause is null
      at oracle.iam.reconciliation.impl.ReconOperationsServiceImpl.getMatchingRule(ReconOperationsServiceImpl.java:491)
      at oracle.iam.reconciliation.impl.ReconOperationsServiceImpl.ignoreEvent(ReconOperationsServiceImpl.java:391)
      at oracle.iam.reconciliation.impl.ReconOperationsServiceImpl.ignoreEvent(ReconOperationsServiceImpl.java:356)
      at Thor.API.Operations.tcReconciliationOperationsIntfEJB.ignoreEventx(Unknown Source)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
      at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
      at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
      at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
      at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
      at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
      at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
      at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
      at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
      at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
      at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
      at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
      at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
      at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
      at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
      at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
      at $Proxy338.ignoreEventx(Unknown Source)
      at Thor.API.Operations.tcReconciliationOperationsIntfEJB_troehf_tcReconciliationOperationsIntfRemoteImpl.__WL_invoke(Unknown Source)
      at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
      at Thor.API.Operations.tcReconciliationOperationsIntfEJB_troehf_tcReconciliationOperationsIntfRemoteImpl.ignoreEventx(Unknown Source)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:85)
      at $Proxy168.ignoreEventx(Unknown Source)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
      at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:198)
      at $Proxy329.ignoreEventx(Unknown Source)
      at Thor.API.Operations.tcReconciliationOperationsIntfDelegate.ignoreEvent(Unknown Source)
      at com.thortech.xl.gc.runtime.GCScheduleTask.execute(GCScheduleTask.java:145)
      at com.thortech.xl.scheduler.tasks.SchedulerBaseTask.execute(SchedulerBaseTask.java:384)
      at oracle.iam.scheduler.vo.TaskSupport.executeJob(TaskSupport.java:145)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at oracle.iam.scheduler.impl.quartz.QuartzJob.execute(QuartzJob.java:196)
      at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
      at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:529)
    [2013-07-28T16:36:23.934+02:00] [oim_server1] [ERROR] [] [XELLERATE.GC.FRAMEWORKRECONCILIATION] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Reconciliation Encountered error: [[
    Thor.API.Exceptions.tcAPIException: oracle.iam.reconciliation.exception.ReconciliationException: Matching rule where clause is null
      at oracle.iam.reconciliation.impl.ReconOperationsServiceImpl.ignoreEvent(ReconOperationsServiceImpl.java:474)
      at oracle.iam.reconciliation.impl.ReconOperationsServiceImpl.ignoreEvent(ReconOperationsServiceImpl.java:356)
      at Thor.API.Operations.tcReconciliationOperationsIntfEJB.ignoreEventx(Unknown Source)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
      at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
      at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
      at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
      at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
      at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
      at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
      at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
      at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
      at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
      at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
      at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
      at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
      at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
      at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
      at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
      at $Proxy338.ignoreEventx(Unknown Source)
      at Thor.API.Operations.tcReconciliationOperationsIntfEJB_troehf_tcReconciliationOperationsIntfRemoteImpl.__WL_invoke(Unknown Source)
      at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
      at Thor.API.Operations.tcReconciliationOperationsIntfEJB_troehf_tcReconciliationOperationsIntfRemoteImpl.ignoreEventx(Unknown Source)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:85)
      at $Proxy168.ignoreEventx(Unknown Source)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
      at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:198)
      at $Proxy329.ignoreEventx(Unknown Source)
      at Thor.API.Operations.tcReconciliationOperationsIntfDelegate.ignoreEvent(Unknown Source)
      at com.thortech.xl.gc.runtime.GCScheduleTask.execute(GCScheduleTask.java:145)
      at com.thortech.xl.scheduler.tasks.SchedulerBaseTask.execute(SchedulerBaseTask.java:384)
      at oracle.iam.scheduler.vo.TaskSupport.executeJob(TaskSupport.java:145)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at oracle.iam.scheduler.impl.quartz.QuartzJob.execute(QuartzJob.java:196)
      at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
      at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:529)
    Caused by: oracle.iam.reconciliation.exception.ReconciliationException: Matching rule where clause is null
      at oracle.iam.reconciliation.impl.ReconOperationsServiceImpl.getMatchingRule(ReconOperationsServiceImpl.java:491)
      at oracle.iam.reconciliation.impl.ReconOperationsServiceImpl.ignoreEvent(ReconOperationsServiceImpl.java:391)
      ... 50 more
    [2013-07-28T16:36:23.936+02:00] [oim_server1] [WARNING] [] [XELLERATE.GC.FRAMEWORKRECONCILIATION] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Though Reconciliation Scheduled task has encountered an error, Reconciliation Transport providers have been "ended" smoothly. Any provider operation that occurs during that "end" or "clean-up" phase would have been executed e.g. Data archival. In case you want that data to be a part of next Reconciliation execution, restore it from Staging. Provider logs must be containing details about storage entities that would have been archived
    [2013-07-28T16:36:23.956+02:00] [oim_server1] [NOTIFICATION] [IAM-1020005] [oracle.iam.scheduler.impl.quartz] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] Job Listener, Job was executed  QuartzJobListener.jobWasExecuted Description null FullName DEFAULT.CSS_GTC Name CSS_GTC
    [2013-07-28T16:37:06.391+02:00] [oim_server1] [ERROR] [] [org.quartz.impl.jdbcjobstore.JobStoreCMT] [tid: QuartzScheduler_OIMQuartzScheduler-caisvoim011375021985807_MisfireHandler] [userId: oiminternal] [ecid: 0000K0_gAu2B_65LRQw0yd1HxIgb000002,0] [APP: oim#11.1.1.3.0] MisfireHandler: Error handling misfires: Unexpected runtime exception: null[[
    org.quartz.JobPersistenceException: Unexpected runtime exception: null [See nested exception: java.lang.NullPointerException]
      at org.quartz.impl.jdbcjobstore.JobStoreSupport.doRecoverMisfires(JobStoreSupport.java:3042)
      at org.quartz.impl.jdbcjobstore.JobStoreSupport$MisfireHandler.manage(JobStoreSupport.java:3789)
      at org.quartz.impl.jdbcjobstore.JobStoreSupport$MisfireHandler.run(JobStoreSupport.java:3809)
    Caused by: java.lang.NullPointerException
      at org.quartz.SimpleTrigger.computeNumTimesFiredBetween(SimpleTrigger.java:800)
      at org.quartz.SimpleTrigger.updateAfterMisfire(SimpleTrigger.java:514)
      at org.quartz.impl.jdbcjobstore.JobStoreSupport.doUpdateOfMisfiredTrigger(JobStoreSupport.java:944)
      at org.quartz.impl.jdbcjobstore.JobStoreSupport.recoverMisfiredJobs(JobStoreSupport.java:898)
      at org.quartz.impl.jdbcjobstore.JobStoreSupport.doRecoverMisfires(JobStoreSupport.java:3029)
      ... 2 more
    Thanks

    Thank You soo much Pallavi the issue has been solved and the issue is disappeard from Log file  !! after creating the Reconciliation profile ,,  but the field that i mapped from the application to OIM didnt Reconcilied smaple  Kindly find the Log File after Run the Reconciliatin :
    [2013-07-31T11:13:57.842+02:00] [oim_server1] [NOTIFICATION] [IAM-5011034] [oracle.iam.reconciliation.utils] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] User 5 is granted access to operation CREATEEVENT
    [2013-07-31T11:13:57.842+02:00] [oim_server1] [NOTIFICATION] [IAM-5010000] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Generic Information: CSS_GTC from cache
    [2013-07-31T11:13:57.842+02:00] [oim_server1] [NOTIFICATION] [IAM-5010000] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Generic Information: createEvent Input Data : {SIEBEL_USER_NAME=mgalal, FULLNAME=Mohamed Galal, CSS User=Yes, EMAIL=, DAILYLIMIT=1000, TRANSACTIONLIMIT=100, IS_ADMIN=Y, USERNAME=mgalal, USER_STATUS=A, MOBILE_NUMBER=, PASSWORD=fCIvspJ9goryL1khNOiTJIBjfA0=, EMPLOYEE_ID=91026}[[
    eventAttribs : serialVersionUID:1357809523267688155 dateFormat:yyyy/MM/dd HH:mm:ss z changeType:CHANGELOG eventFinished:false actionDate:null
    [2013-07-31T11:13:57.842+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is CSS user and value is Yes
    [2013-07-31T11:13:57.842+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is Employee Number and value is 91026
    [2013-07-31T11:13:57.842+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is Email and value is
    [2013-07-31T11:13:57.842+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is TRANSACTIONLIMIT and value is 100
    [2013-07-31T11:13:57.842+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is FULLNAME and value is Mohamed Galal
    [2013-07-31T11:13:57.842+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is USERNAME and value is mgalal
    [2013-07-31T11:13:57.842+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is DAILYLIMIT and value is 1000
    [2013-07-31T11:13:57.842+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is IS_ADMIN and value is Y
    [2013-07-31T11:13:57.842+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is PASSWORD and value is fCIvspJ9goryL1khNOiTJIBjfA0=
    [2013-07-31T11:13:57.842+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is SIEBEL_USER_NAME and value is mgalal
    [2013-07-31T11:13:57.842+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is MOBILE_NUMBER and value is
    [2013-07-31T11:13:57.842+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is USER_STATUS and value is A
    [2013-07-31T11:13:57.867+02:00] [oim_server1] [NOTIFICATION] [IAM-5012206] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Reconciliation event 210,829 completed successfully
    [2013-07-31T11:13:57.889+02:00] [oim_server1] [NOTIFICATION] [IAM-1010010] [oracle.iam.platform.authz.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] ********** Entering the Authorization Segment with parameters:: LoggedInUserId = 5, target resourceID = null, Feature = RECONCILIATION_MANAGEMENT, Action = IGNORE **********
    [2013-07-31T11:13:57.889+02:00] [oim_server1] [NOTIFICATION] [IAM-1010029] [oracle.iam.platform.authz.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] OES Results found in cache with Key F: RECONCILIATION_MANAGEMENTS: 5P: IGNOREOESDefinition
    [2013-07-31T11:13:57.889+02:00] [oim_server1] [NOTIFICATION] [IAM-1010021] [oracle.iam.platform.authz.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Validating the Internal Obligations: [InternalObligation: name: noop, values: [true], convertToObligation: false, InternalObligation: name: noop, values: [true], convertToObligation: false]
    [2013-07-31T11:13:57.890+02:00] [oim_server1] [NOTIFICATION] [IAM-1010022] [oracle.iam.platform.authz.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] ---------- The list of Internal Obligation is satisfied, returning TRUE ----------
    [2013-07-31T11:13:57.890+02:00] [oim_server1] [NOTIFICATION] [IAM-1010026] [oracle.iam.platform.authz.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] ********** Exiting the Authorization Segment with result Decision :PERMIT[[
    Obligations from policy:  **********
    [2013-07-31T11:13:57.890+02:00] [oim_server1] [NOTIFICATION] [IAM-5011034] [oracle.iam.reconciliation.utils] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] User 5 is granted access to operation IGNORE
    [2013-07-31T11:13:57.890+02:00] [oim_server1] [NOTIFICATION] [IAM-5010000] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Generic Information: ignoreEvent Input Data : {SIEBEL_USER_NAME=sara, FULLNAME=Sara Salem, CSS User=Yes, EMAIL=, DAILYLIMIT=2000, TRANSACTIONLIMIT=200, IS_ADMIN=N, USERNAME=sara, USER_STATUS=A, MOBILE_NUMBER=112091776, PASSWORD=Gk3R5wCOFNCuLW5tTdV83s3V9rE=, EMPLOYEE_ID=0} dateFormat : yyyy/MM/dd HH:mm:ss z
    [2013-07-31T11:13:57.890+02:00] [oim_server1] [NOTIFICATION] [IAM-5010000] [oracle.iam.reconciliation.impl.config] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Generic Information: CSS_GTC from cache
    [2013-07-31T11:13:57.890+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is CSS user and value is Yes
    [2013-07-31T11:13:57.890+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is Employee Number and value is 0
    [2013-07-31T11:13:57.890+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is Email and value is
    [2013-07-31T11:13:57.890+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is TRANSACTIONLIMIT and value is 200
    [2013-07-31T11:13:57.890+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is FULLNAME and value is Sara Salem
    [2013-07-31T11:13:57.890+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is USERNAME and value is sara
    [2013-07-31T11:13:57.890+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is DAILYLIMIT and value is 2000
    [2013-07-31T11:13:57.890+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is IS_ADMIN and value is N
    [2013-07-31T11:13:57.890+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is PASSWORD and value is Gk3R5wCOFNCuLW5tTdV83s3V9rE=
    [2013-07-31T11:13:57.890+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is SIEBEL_USER_NAME and value is sara
    [2013-07-31T11:13:57.890+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is MOBILE_NUMBER and value is 112091776
    [2013-07-31T11:13:57.890+02:00] [oim_server1] [NOTIFICATION] [IAM-5012250] [oracle.iam.reconciliation.impl] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Oim attribute name is USER_STATUS and value is A
    [2013-07-31T11:13:57.890+02:00] [oim_server1] [NOTIFICATION] [IAM-5010001] [oracle.iam.reconciliation.dao.event] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000K0nydJzB_65LRQw0yd1HyDEE000002,0] [APP: oim#11.1.1.3.0] Calling stored procedure - XL_SP_RECON_USR_DATA_MATCH[[
      usrColumnsList = usr_emp_no,usr_email,usr_udf_css_user
      usrDataArray = [0, null, Yes]
      matchingRulesWhereClause = (((UPPER(USR.USR_EMP_NO)=UPPER('0'))))
      dateFormat = MM-DD-RRRR HH24:MI:SS

  • Unknown attribute of the ID GTC connector (Open LDAP).

    Attribute is added automatically when creating a GTC connector (for Open LDAP). Attribute with value SUCCESS is present in OIM. I cannot find anywhere what means attribute in this case.
    The attribute itself is not to be deleted.
    Someone please help if you know!!

    Has been set up connectors Generic Technology, designed to integrate Oracle Identity Manager with the systems that support network access protocol LDAP. Connector sends the user account attributes, for example, gidNumber, uid and among them, upon the attribute ID. Apparently, this attribute contains the official record. It can not be deleted or changed. I want to understand what it means?

Maybe you are looking for

  • ASSET ACCOUNTING TREATMENT

    HI, I created the Asset PO mentioning the asset number and its GL which is assigned during the asset creation with asset class. While doing GR no accounting document available and when posting invoice it is crediting to vendor and debit to that asset

  • My Skype number had been renewed but I'm not getti...

    I have an active subscription at the moment, so I'm expecting my Skype # will get a discount when it renew. However, I was charged full credit, what's going on? Can I arrange to get a refund on the incorrect transaction and re-subscript to my skype n

  • Help me in Lightroom PLEASE!

    I am having problems with Lightroom 3. I shot a wedding and I have around 300 pictures to edit. I have a trial verson I am using of Lightroom 3 that came with my Elements 10. I have edited around 200 pictures in Lightroom but it will not let me put m

  • Trouble with booklet printing -- InDesign CC 2014

    I'm having trouble printing booklet with new CC 2014. I print to postscript, but then PDF is not correct.  I see it's using Acrobat 8 driver;  how do I change that to Acrobat XI?

  • Is there any possibilty making iviews as user specific?

    Hi all,               I had an application on the portal.Is it possible to make it visible only for some users only .I know it can be made it by using 2 different roles.But I want to use the same role  as the rest of the applications are  common for