Query on Reconciliation Tasks

Hi
Can anyone tell me the difference between Reconciliation Insert Received and Reconciliation Update Received. Looks like simpe question. But i am confused.
Thanks in advance.

Hi,
What i can say is that Reconciliation insert means a new entry record has been received in OIM and update means existing record has been updated in OIM
Just take an example
When user is getting created we get Reconciliation insert and when same user data comes with modification it came as update
hope it make sense ..
Other guys can give you more elaborate answer
VM
Edited by: VM02 on Jun 23, 2010 11:37 PM

Similar Messages

  • How do I change the underlying query for the task board (and backlog board) on TFS Preview

    All,
    We work with multi-area projects, each area representing a significant component within the project with its own release/iteration cycle. i.e. Several areas may be active at once, each with different iterations.
    When we look at the task board these take no account of the area being worked on. What I need to do is to be able to change the query behind these boards to point to a particular release/iteration for a particular area.
    Unfortunately there is no drop down selection on these pages to see this automatically so I need to be able to change the underlying query that populates these boards to get the the area and release/iteration that I need.... but I can't find where these
    are.
    Using multiple areas is actually highly frustrating with TFS Preview as it doesn't seem geared up at all to make it easy to switch between them... are we doing something wrong?
    I think I can do this by changing the current iteration - but I can't work out how to do this either once an iteration for a particular area has started.
    Can anybody help?
    Thanks

    It is not possible to modify the query behind the task board. If I understand you correctly, you would like to filter the task board by area path.
    In TFS 2012 we have repurposed the area path field to be the field that determines the team you are working on. We are continuously improving our product and being able to filter your task is one of the improvements that we are thinking of.
    Sorry I can't help you better than this for the moment.
    Please remember to mark the replies as answers if they help.
    Hi Ewald,
    We have a similar problem, see the thread "Best approach for multi-team/multi-projects." on this forum. I'm hopping you can help, since so far the different answers doesn't help.
    Best Regards,
    SYSOTI

  • Set last reconcilaition time in my custom reconciliation task

    Hi everyone,
    I have implemented a custom HR trusted user reconciliation task and job.
    I executed this task successfully and I can get users.
    I have an task attribute, name of this attribute is LastReconciliationTime.
    But I could not set last reconciliation attribute in reconciliation java task.
    I tried to use this:
    HashMap hashmap = new HashMap();
    hashmap.put("Task Scheduler.Key", String.valueOf(schedulerKey));
    hashmap.put("Task Scheduler.Task Attributes.Name", "LastReconciliationTime");
    But I cannot get my new custom task scheduler task key.
    Because there is not my task in TSK or TSH tables.
    How can I set this attribute?
    Thanks.
    Best Regards.

    Try to first search for you sch task:
    hashMap.put("Task Scheduler.Name", scheduleTaskName);
    tcSchOperations.findScheduleTasks(hashMap);
    Get sch key from above results...getLongValue("Task Scheduler.Key")
    and tcSchOperations.getScheduleTaskAttributes(taskSchedulerKey) to get sch task attributes
    Iterate over task attributes by:  .getStringValue("Task Scheduler.Task Attributes.Name")
    and find your attr and get attr key : getLongValue("Task Scheduler.Task Attributes.Key")
    Construct a  update hashmap  with ..put("Task Scheduler.Task Attributes.Name", your attr name);
    Update sch task with : tcSchOperations .updateScheduleTaskAttribute(taskSchedulerKey, attributeKey, updateMap);
    Hope this helps

  • Query for active tasks

    Im trying to query for worklist tasks associated with a running business process. Using the WorkListManager and TaskSelector, I use the TaskSelector method setListeningProcessUri("*", true) and also tried setListeningProcessUri(".+", true). I thought by setting the isPattern to true would return all tasks with a listening business process matching the pattern.
    Has anyone else used this method with a pattern?
    Thanks,
    Paul

    Hi Dinesh,
    Check the below steps for extracting AD users information using powershell,
    - Go to Start -> Open Windows Powershell using Run as Administrator 
    - In the powershell type set-executionpolicy unrestricted (for allowing commands to execute)
    - Type the cmdlet import-moduleactivedirectory (to enable and execute AD cmdlets)
    - Type the cmdlet Get-ADUser -Filter * -properties *  | select * (to get all AD Users, each with all properties)
    - To show only select information such as firstname, lastname etc,you need to replace the
    select * section in the previous command by select firstname, lastname etc.
    - Also to display the result in columns, you can type the command as
    Get-ADUser -Filter * -properties *  | select firstname, lastname | ft
    To run as a powershell script, you can copy the above commands to a notepad and save it as a .ps1 file.
    NOTE: if you wish to run the script from client machines like Windows 7, you need to enable RSAT.
    Checkout the below link on enabling RSAT,
    http://blogs.technet.com/b/heyscriptingguy/archive/2011/08/29/use-active-directory-cmdlets-with-powershell-to-find-users.aspx 
    Regards,
    Gopi
    JiJi
    Technologies

  • Query in Main Task Not Working But it works For BG Task

    Hi All,
    I have a requirement to send work item to different level approvers for that i have to  find final level approver from a table and save the data accordingly ,
    i have a main task and a Background task
    <b> my problem is that the same query that works in back ground task is not working in the Main Task.</b>
      SWC_GET_ELEMENT CONTAINER  'LEVEL' Level. is a macro written in the method  in   BOR in  main task for getting value which is in the WF container and has binded to the task container. it is not picking up the value from the task container to the method.
    Please help me on this
    Thanks & Regards
    Hari Sankar M

    hi Arghadip Kat,
    Thank You for Your Response, i've tried ur Suggestion but it is again not working
    just let me explain again
    i have two tasks,(these two tasks are in a loop.) with one BOR(object) and two Methods
    One Method is for first Main task and another is for second task(which is a background task)
    i need to get a value called final from a table, i've written a query in the method of Back ground task. and i'm getting the value correctly but i'm not able to pass this value to the main task coz the loop exits after executing the subtask and coz loops exit point is the value final.
    So for getting the value of Final in main task i've written the same query in main task but its not working.
    Thanks & regards
    Hari

  • CAML query to get task assigned to current logged in user

    I want to know the CAML query to get tasks assigned to the currently logged in user
    Nour

    Hi,
    This is the query that worked for me
    <Where>
    <And>
    <Or>
    <Membership Type=’CurrentUserGroups’>
    <FieldRef Name=’AssignedTo’ />
    </Membership>
    <Eq>
    <FieldRef Name=’AssignedTo’  LookupId=’TRUE’ />
    <Value Type=’Lookup’>123</Value>
    </Eq>
    </Or>
    <Neq>
    <FieldRef Name=’Status’ />
    <Value Type=’Text’>Completed</Value>
    </Neq>
    </And>
    </Where>
    Regards,
    Nishant Rana
    http://nishantrana.wordpress.com https://twitter.com/#!/nishantranacrm

  • Custom HR Database Reconciliation Task

    Hi everyone,
    I have custom resource.
    I have implemented custom reconciliation task, and I upload this.
    I have implemented custom scheduler config file of this task,then uploaded this to MDS.
    My task has this code :
    reconService.createReconciliationEvent(resourceObject, dataMap, true);
    dataMap is hashMap and have all data that I want to reconcile.
    I want to use a reconciliation attribute map.
    I prepared this recon lookup. I want to execute reconcilation via recon lookup.
    Is there anything that I have to do?
    Thanks.
    Best regards.

    Try to first search for you sch task:
    hashMap.put("Task Scheduler.Name", scheduleTaskName);
    tcSchOperations.findScheduleTasks(hashMap);
    Get sch key from above results...getLongValue("Task Scheduler.Key")
    and tcSchOperations.getScheduleTaskAttributes(taskSchedulerKey) to get sch task attributes
    Iterate over task attributes by:  .getStringValue("Task Scheduler.Task Attributes.Name")
    and find your attr and get attr key : getLongValue("Task Scheduler.Task Attributes.Key")
    Construct a  update hashmap  with ..put("Task Scheduler.Task Attributes.Name", your attr name);
    Update sch task with : tcSchOperations .updateScheduleTaskAttribute(taskSchedulerKey, attributeKey, updateMap);
    Hope this helps

  • GTC incremental reconciliation task.

    Hello,
    In our environment its not possible to have Timestamp Date field in HRIS oracle table.
    Are there any other alternative solution OOTB or customized.
    Environment: OIM 9.1.0.2 , Connector pack 9.0.x
    HRIS has roughly 60K users.
    Thanks a lot.

    For
    psObjName --> Xellerate User
    gives following error:
    14:38:06,437 ERROR [APIS] Class/Method: tcReconciliationOperationsBean/ignoreEventData encounter some problems: No Reconciliation Fields defined
    java.lang.Exception: No Reconciliation Fields defined
         at com.thortech.xl.dataobj.util.tcReconciliationUtil.getORFData(Unknown Source)
         at com.thortech.xl.dataobj.util.tcReconciliationUtil.ignoreEvent(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.tcReconciliationOperationsBean.ignoreEventData(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.tcReconciliationOperationsBean.ignoreEvent(Unknown Source)
         at com.thortech.xl.ejb.beans.tcReconciliationOperationsSession.ignoreEvent(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.jboss.invocation.Invocation.performCall(Invocation.java:359)
         at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:237)
         at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:158)
         at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:169)
         at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)
         at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)
         at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:350)
         at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)
         at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:168)
         at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
         at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:138)
         at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:648)
         at org.jboss.ejb.Container.invoke(Container.java:960)
         at sun.reflect.GeneratedMethodAccessor131.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
         at org.jboss.invocation.local.LocalInvoker$MBeanServerAction.invoke(LocalInvoker.java:169)
         at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:118)
         at org.jboss.invocation.InvokerInterceptor.invokeLocal(InvokerInterceptor.java:209)
         at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:195)
         at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:61)
         at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:70)
         at org.jboss.proxy.ejb.StatelessSessionInterceptor.invoke(StatelessSessionInterceptor.java:112)
         at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:100)
         at $Proxy342.ignoreEvent(Unknown Source)
         at Thor.API.Operations.tcReconciliationOperationsClient.ignoreEvent(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 Thor.API.Base.SecurityInvocationHandler$1.run(Unknown Source)
         at Thor.API.Security.LoginHandler.jbossLoginSession.runAs(Unknown Source)
         at Thor.API.Base.SecurityInvocationHandler.invoke(Unknown Source)
         at $Proxy820.ignoreEvent(Unknown Source)
         at getAllResourcesDetails.execute(getAllResourcesDetails.java:150)
         at com.thortech.xl.scheduler.tasks.SchedulerBaseTask.run(Unknown Source)
         at com.thortech.xl.scheduler.core.quartz.QuartzWrapper$TaskExecutionAction.run(Unknown Source)
         at Thor.API.Security.LoginHandler.jbossLoginSession.runAs(Unknown Source)
         at com.thortech.xl.scheduler.core.quartz.QuartzWrapper.execute(Unknown Source)
         at org.quartz.core.JobRunShell.run(JobRunShell.java:203)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
    Thanks a lot.

  • Query on Scheduling tasks in Portal

    Hi,
    I created a task by following this blog:
    Did you know you can schedule jobs in portal using KM's Scheduler Task?
    It doesnt seem like the task has got executed at the scheduled time.Can anyone provide me with a simple code(using logger class) that i should include so that i can check in the log whether the task is getting executed or not?
    Regards,
    Padmalatha.K

    Hi,
    Check below link, it might help you:
    http://help.sap.com/saphelp_nwce10/helpdata/en/44/03d66015ee10b3e10000000a11466f/content.htm
    Thanks
    Sunny

  • Query in schedule task adapter using FilestreamProvider

    Hi,
    Requirement: I need to use a dynamic file send port which appends the file every 2 hours after which is picked up by an ftp adapter on a daily basis on a fixed time.For
    the above, I am using a scheduled task adapter to pick the from folder path(  send port path) and via FTP adapter send to the destination.
    Flowchart:
    Direct Binding in Orchestration->Map-> Dynaminc File Send port-> File should be appended every two hour(for eg: suppose the file has to be picked up every day at 1pm,3pm: Until 1pm, all the files appended in the folder should be picked and
    sent to the destination via schedule task adapter then the message should be deleted from the folder path then in between 1pm to 3pm how many every files come in should be appended aI have created a schedule task adapter using FileStreamProvider which should
    pick files from a folder path in the interval of 5mins. The file gets appended every 2 hours and is  sent to the destination. The adapter works fine but the file in the folder does not disappears after the schedule is over every 2 hours. Please provide
    a resolution. nd send to the destination via ftp adapter and the file should be deleted from the folder path)->Picked up by schedule task adapter every 1 hour-> sent to the destination via FTP send port.
    Problem:
    I have created a schedule task adapter using FileStreamProvider which should pick files from a folder path in the interval of 2 hours. The file gets appended every 2 hours and is  sent to the destination. The adapter sends the files at scheduled timee
    but the file in the folder(i.e where the file sits after being processed by dynamic send port) does not disappears after the schedule is over every 2 hours and the content of the file is also not visible. Any kind of help would be appreciated.
    Thanks in advance,
    Ranjana

    >
    Arpit Seth wrote:
    > Hi All,
    >
    > We have an interface in which we are inserting data in Oracle server using JDBC Reciever Adapter.
    > The interface ends up in error on adapter engine level whenever the we are sending long data in one of the field of target structure. The error which we get in communication channel monitoring is that "String too long", on googling i found that in oracle they solve such problem by making the field data type as CLOB.
    >
    > Thus can we define target structure field of CLOB type so that while inserting the data in Oracle server we never face the issue of this long string.
    >
    > Thanks
    if the field contains very large data then yes, defining the target field in Oracle as a CLOB will solve your issue.
    http://www.herongyang.com/jdbc/MySQL-CLOB-Overview.html

  • Query about Human task (Management Chain)

    hi'
    I am designing work flow in which Human task is there, where I need a group of users to approve
    one after the other based on there seniority.
    my question is:
    1.) How to determine the seniority, if this is in OID how to do this.
    2.) I mentioned 3 users in management chain "A", "B", "C" the request goes to them
    and then in the work list if I log in to any one of them it ask for "Claim" in stead of approve/ reject
    once I do claim for that user, then approve/reject comes in and and after selecting approve/ reject
    the request goes away from all 3 users.
    I am checking the developers guide for Oracle BPEL, it says some thng else but some thing else is happening.
    please advice
    -yatan

    Hi, please make sure that you select Users not Groups under the option 'Requires sequential approval of all partcipants below'. While designing the humantask, under 'Assignment and routing policy' --> type = Sequential List Of Approvers;
    Label=Your_Label
    Requires sequential approval of all participants below: This has two options:By Name, By expression.
    The option By Name has two options: Users, and Groups.
    Here make sure you select 'Users'.
    Then assign all the users in sequence you want them to approve. Then when you login the worklist application, you would see Approve/Reject.
    If the first/current approver approves, then only second/next approver in sequence can see/approve/reject.
    Regards,
    Help Please.
    Edited by: Help please on Oct 26, 2009 10:47 AM

  • Query about Human task (Sequential list of approvers)

    hi'
    I am designing work flow with Human task, with "Sequential list of approvers",
    where I have given "A", "B", "C" users for approval, it goes for approval in sequence
    i.e. 1st to "A" when "A" approves it goes to "B" when "B" approves it goes to "C"
    the issue is if "B" is rejecting it still goes to "C".
    According to to Develpers guide it should not go further.
    pelase advice where I am wrong.
    thanks
    Yatan

    Need to check "Enable abrupt completion condition".
    -Yatan

  • Query related to task archival utility in OIM 11gR1

    Hi All,
    I am trying to to run task archival utility & i am following below link:
    http://docs.oracle.com/cd/E21764_01/doc.1111/e14308/archival_utilities.htm#CHDHJACC
    I have created separated tablespace for archival tables,
    I have successfully executed cr_taskarchival_ddl_table.sql , Create_TasksArch_Tables.sql & OIM_SP_TASKS_ARCHIVAL.sql scripts.
    Now i want to run OIM_TasksArch.sh, so this file should be executed where we have installed our OIM Database [Correct me if i am wrong]
    OIM_TasksArch.sh is present in <OIM_HOME>/server/db/oim/oracle/Utilities/TaskArchival/ ,but for some reason i am not able to find this file in our OIM Database Env.
    Can anyone please suggest from where OIM_TasksArch.sh needs to be executed ?
    Thanks,
    Rahul

    It needs to be executed in a location that has the database client installed so that it can use sqlplus to connect to the database and run the scripts.  I had to manipulate the scripts a little on my end for this work because how it was putting together the connect statement did not work.
    -Kevin

  • Query on suspended tasks

    HI all
    We have a business process on CE 7.2.
    When the tasks are assigned to users a mail is sent to user with the link to acess the tasks.
    But in a case this task gets esalated . the existing task is getting suspended successfully ,  the task is getting removed from the UWL list and the escalations task is getting created . But when the user clicks on the mail link the task opens up and its only after the user takes action that the error message is displayed .
    Please let me know if there is any better way to handle this scenario. Like display the message as sson as the user clicks on the link, similar to a completed task.
    Regards
    Muku

    Well .. as a workaround you can use a boolean attribute in process context (suspended). When completion deadlne is reached, you can set the value of the attribute as true.
    In your WD application, you can check this attribute and then decide the flow. If the value is true, then display a message that "You have reached the deadline".
    Regards,
    Mahesh

  • Query on administration tasks required for enabling flashback feature

    Hi All,
    I would like to enable FLASHBACK on 4 tables in a schema.
    I know that the RETENTION GUARANTEE clause needs to be set on the UNDO TABLESPACE. But as flashback is required only on few tables, setting RETENTION GUARANTEE will cause a lot of pressure on the tablespace in terms of space.
    Can anyone suggest a solution for this?
    Thanks in advance,
    Annie

    Audit information will appear in the 'Output' panel in the Test View and the Query Plan View after executing if the application is Audit enabled and the audit 'Severity (threshhold) Level' is set such that audit events are generated. (i.e. if you have the Severity Level set to Failure, then audit events will not be generated for events that specify 'Info')
    There is no 'Audit Console' for DSP.

Maybe you are looking for

  • Problem crystal report xi with j2ee

    dear all after greeting i have exception that appear when i open report created by crystal report and i didn't know why this exception although the report is successfully opened i am using jrc and the exception is following:: Assertion Failed: Unknow

  • Upload table with a flat file Once - without program

    Hello, I know that it is possible to upload a Z table from a flat file. (without program) I do not have a problem with this table. I manage a  maintenance view (SM30) and I can thus enter one by one a recording in this table and to put it in an trans

  • Answer to an old question

    Rando Wiltchek was kind enough to provide feedback to me on the issue below. I have included his comments and my original post (avec explitives) below them. From Rando, FIRST: All I had to do was add a simple on prepareMovie clearGlobals end prepareM

  • Query to come out the list

    I hope somebody can help me to produce the output as shown below: ID NAME COURSE REC OF R2001 16DAT03F501 NUR ZAYANA BINTI MD YUSOF DAT 2 16DAT03F502 AZLIZA BINTI ZAINAL DAT 1 My problem is, i have no idea to get the output at the last column. I want

  • Java Out of Memory Error

    Hi, I'm running a Java app that's been working perfectly for 12 months. I did the latest Java upgrade from Apple and I now have heap space errors. The result of running Java version is as follows: java version "1.6.0_20" Java(TM) SE Runtime Environme