HR Self-Service Transactions - error notifications

In our HR system we are using Administrator Self Service, allowing staff to make changes to HR records for people they manage.
In quite a few cases, our central admin team are receiving notifications with subject lines like:
Application Error has occurred in your process Change Job and Terms performed on Bloggs, Mr Joseph
When opening the notification, the error message at the top of the page says a range of things, such as:
The changes were not applied because This transaction has failed because the employee's record or eligibility status has changed. Submit a new transaction.
Another user has updated this person's record. Please reject the transaction so the initiator can check whether the change is still valid for the updated record.It would seem that the cause of these is because between the HR Self Service transaction being submitted and the error notification going out, something has changed on the HR record in question.
Is there any way I can work out where that change is being made, or is that too hard?
I can see the HR Self Service Transaction via:
SELECT   hat.creation_date hrss_tx_date
       , wn.notification_id nid
       , wn.begin_date notif_date
       , wn.status
       , wn.item_key
       , REPLACE(
            wn.subject
          , 'Application Error has occurred in your process '
         ) subject
       , fu.user_name originator_uname
       , papf3.full_name hr_record_being_changed
       , fu.description originator_description
       , papf.full_name originator_full_name
       , papf2.full_name manager_full_name
       , fu2.user_name manager_login
       , fu2.description manager_description
    FROM applsys.wf_notifications wn
       , applsys.fnd_user fu
       , applsys.fnd_user fu2
       , hr.hr_api_transactions hat
       , hr.per_all_people_f papf
       , hr.per_all_people_f papf2
       , hr.per_all_people_f papf3
       , hr.per_all_assignments_f paaf
   WHERE hat.item_key = wn.item_key
     AND hat.created_by = fu.user_id
     AND papf2.person_id = fu2.employee_id
     AND hat.creator_person_id = papf.person_id
     AND papf.person_id = paaf.person_id
     AND paaf.supervisor_id = papf2.person_id
     AND hat.selected_person_id = papf3.person_id
     AND SYSDATE BETWEEN papf.effective_start_date AND papf.effective_end_date
     AND SYSDATE BETWEEN papf2.effective_start_date AND papf2.effective_end_date
     AND SYSDATE BETWEEN papf3.effective_start_date AND papf3.effective_end_date
     AND SYSDATE BETWEEN paaf.effective_start_date AND paaf.effective_end_date
     AND recipient_role = 'HRMS_DEV_ROLE'
     AND subject LIKE 'Application Error%'
     AND wn.notification_id = :nid
ORDER BY wn.begin_date DESC;But if I look at e.g. the per_all_people_f or per_all_assignments_f tables to look for changes made to the same HR record that the Self-Service transaction was for, nothing recent is returned:
SELECT   papf.employee_number
       , paaf.assignment_number
       , paaf.object_version_number paaf_ovn
       , papf.creation_date papf_creation_date
       , papf.last_update_date papf_last_update_date
       , paaf.creation_date paaf_creation_date
       , paaf.last_update_date paaf_last_update_date
       , papf.object_version_number papf_ovn
    FROM hr.per_all_people_f papf
       , hr.per_all_assignments_f paaf
   WHERE papf.person_id = paaf.person_id
     AND papf.full_name LIKE :pn
ORDER BY paaf.last_update_date DESC;I have seen stuff on My Oracle Support about "object version number" e.g. 1300998.1 says:
"This is an expected behavior. Since after first approval the object version number of contact's personal details has changed. Now when you try to approve second notification we will compare the OVN in transaction tables to the OVN in database (which got changed). Hence we get an object version mismatch and above error."However, I am still stuck trying to see what has changed. I need to find this so I can go to the functional people who don't understand why they are getting the error notifications, so say "Look, this has changed since the Self-Service transaction was submitted, hence the error".
Any advice would be much appreciated.
Thanks

Hi,
In the end I wrote some SQL which identified the fact that the HR tables had been updated in Core Apps AFTER a Self-Service transaction had been started.
SELECT distinct hat.creation_date workflow_start
       , wn.notification_id nid
       , (SELECT MAX(last_update_date) FROM hr.per_all_assignments_f paaf2 WHERE paaf2.person_id = papf3.person_id) last_assig_update
       , wn.begin_date error_date
       , wn.begin_date - (SELECT MAX(last_update_date) FROM hr.per_all_assignments_f paaf2 WHERE paaf2.person_id = papf3.person_id) dd
       , wn.item_key
             , SUBSTR(
                  wn.subject
                , 48
                , INSTR(SUBSTR(wn.subject, 48 + 2), 'performed on ')
               ) transaction_type
             , CASE
                  WHEN SUBSTR( wn.subject , INSTR(wn.subject, 'performed on ') + 13 , LENGTH(wn.subject) - INSTR(wn.subject, 'performed on ') + 13 ) LIKE '%Miss%' THEN REPLACE( SUBSTR( wn.subject , INSTR(wn.subject, 'performed on ') + 13 , LENGTH(wn.subject) - INSTR(wn.subject, 'performed on ') + 13 ) , ' Miss' , '' )
                  WHEN SUBSTR( wn.subject , INSTR(wn.subject, 'performed on ') + 13 , LENGTH(wn.subject) - INSTR(wn.subject, 'performed on ') + 13 ) LIKE '%Mrs%' THEN REPLACE( SUBSTR( wn.subject , INSTR(wn.subject, 'performed on ') + 13 , LENGTH(wn.subject) - INSTR(wn.subject, 'performed on ') + 13 ) , ' Mrs' , '' )
                  WHEN SUBSTR( wn.subject , INSTR(wn.subject, 'performed on ') + 13 , LENGTH(wn.subject) - INSTR(wn.subject, 'performed on ') + 13 ) LIKE '%Ms%' THEN REPLACE( SUBSTR( wn.subject , INSTR(wn.subject, 'performed on ') + 13 , LENGTH(wn.subject) - INSTR(wn.subject, 'performed on ') + 13 ) , ' Ms' , '' )
                  WHEN SUBSTR( wn.subject , INSTR(wn.subject, 'performed on ') + 13 , LENGTH(wn.subject) - INSTR(wn.subject, 'performed on ') + 13 ) LIKE '%Mr%' THEN REPLACE( SUBSTR( wn.subject , INSTR(wn.subject, 'performed on ') + 13 , LENGTH(wn.subject) - INSTR(wn.subject, 'performed on ') + 13 ) , ' Mr' , '' )
                  ELSE SUBSTR( wn.subject , INSTR(wn.subject, 'performed on ') + 13 , LENGTH(wn.subject) - INSTR(wn.subject, 'performed on ') + 13 )
               END performed_on      
       , wn.subject
       , papf3.full_name
       , papf3.employee_number empno
       , fu.user_name by_un
       , fu.description by_desc
       , papf.full_name by_name
    FROM applsys.wf_notifications wn
       , applsys.fnd_user fu
       , hr.hr_api_transactions hat
       , hr.per_all_people_f papf
       , hr.per_all_people_f papf3
       , hr.per_all_assignments_f paaf
   WHERE hat.item_key = wn.item_key
     AND hat.created_by = fu.user_id
     AND hat.creator_person_id = papf.person_id
     AND papf.person_id = paaf.person_id
     AND hat.selected_person_id = papf3.person_id
     AND SYSDATE BETWEEN papf.effective_start_date AND papf.effective_end_date
     AND SYSDATE BETWEEN papf3.effective_start_date AND papf3.effective_end_date
     AND SYSDATE BETWEEN paaf.effective_start_date AND paaf.effective_end_date
     AND subject NOT LIKE '%Phone Numbers%'
     AND recipient_role = 'HRMS_DEV_ROLE'
     AND subject LIKE 'Application Error%'
     AND papf.current_employee_flag = 'Y'
     AND paaf.assignment_type = 'E'
ORDER BY 1 DESCIt helped compare things in the background and prove in our case that there wasn't a system problem.
Thanks

Similar Messages

  • How to Identity Self service transactions in HRMS.

    Hi,
    I wanted to create the sql report only for the transactions which are being updated or corrected by self service page only. I would like to know how can I capture only self service transactions when I modify personal Information in HRMS self service page.
    Thanks in Advance,
    Mangesh

    Try with the below tables:
    There are 3 temporary tables that hold data for entries made in SSHR until the approval cycle is complete
    1) HR_API_TRANSACTIONS
    2) HR_API_TRANSACTIONS_STEPS
    3) HR_API_TRANSACTIONS_VALUES
    But the data from the above tables are deleted once the transaction is complete.
    The data is moved to these tables.
    1.pqh_ss_transaction_history
    2.pqh_ss_step_history
    3.pqh_ss_value_history

  • R1208 Self Service Timecard Error ORA-01422 HXC_TIMECARD line 830 HXC_LOCKS

    Hi,
    After applying HRMS RUP 8 on 12.0 we are intermittently seeing this error when an employee is trying to update an existing timecard (usually a timecard that was previously submitted). The user just gets the generic unexpected error page, but FND_LOG_MESSAGES shows the error:
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = java.sql.SQLException: ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "APPS.HXC_TIMECARD", line 830
    Somehow there are sometimes rows in HXC_LOCKS that are not being released when the timecard is submitted, so the row in HXC_LOCKS has the old time_building_block_ovn, and when the employee goes to update the timecard then it inserts a new row in HXC_LOCKS with the latest OVN (without clearing the HXC_LOCKS row with the old OVN), so when they try to save the changes to the timecard then the query at "APPS.HXC_TIMECARD" line 830 selects both rows and throws the ORA-01422.
    We can't reproduce this on demand, but it's happening in production several times a week. We first started seeing this immediately after applying the HRMS RUP 8 patch 9301208. Our SR seems to be going nowhere without a reproducible test case.
    I was wondering if anyone else is seeing this error.
    The query below tells us where we have these old hxc_locks, and if we try to update one of these timecards then it will produce the error.
    Would anyone mind running this in your instance to see if any rows come up?
    select *
    from apps.hxc_locks hl,
    apps.hxc_time_building_blocks ht
    where ht.time_building_block_id = hl.time_building_block_id
    and hl.time_building_block_ovn < (select max(hb.object_version_number)
    from apps.hxc_time_building_blocks hb
    where hb.time_building_block_id = ht.time_building_block_id)
    and ht.object_version_number = (select max(hb.object_version_number)
    from apps.hxc_time_building_blocks hb
    where hb.time_building_block_id = ht.time_building_block_id);
    The workaround we have found is to create a new timecard for the same period instead of trying to update the existing timecard, when you do this then it removes the old row from HXC_LOCKS.
    Any other thoughts?
    Thanks for reading this long post
    Thomas

    It definitely looks like code issue. Best option is to raise an SR and follow with oracle.
    --Shiv                                                                                                                                                                                                       

  • Oracle apps self service login error

    Hi,
    Apps Version : 11.5.10.2
    DB : 11.1.0.7
    While login we are getting
    Not Found
    The requested URL /oa_servlets/oracle.jsp.JspServlet was not found on this server.
    Ran autoconfig but we are still getting the error
    Regadrs,
    SRK

    Hi Helios,
    I have gone through those documents.Thank you very much for the reply.But i am not able to troubleshoot the issue.can you throw some light please.
    errorlog_
    [Tue Sep 28 09:47:31 2010] [error] [client 192.168.40.50] File does not exist: e:/oracle/prodcomn/portal/prod_tstoraf/oprocmgr-servicetstoraf.xyz.com
    [Tue Sep 28 09:48:08 2010] [error] [client 192.168.40.50] File does not exist: e:/oracle/prodcomn/java//
    [Tue Sep 28 09:48:31 2010] [error] [client 192.168.40.50] File does not exist: e:/oracle/prodcomn/portal/prod_tstoraf/oprocmgr-servicetstoraf.xyz.com
    Regards,
    SRK

  • Reg Self Service Personalization for Termination transaction

    Hi All,
    I am new to self service personalization. User wants to personalize the self servie pages.
    User Requirement: our client has diffetent self service transactions like
    Payroll Name and Subgroup Change
    Termination
    Location Only Changes
    People Group Only Changes etc.
    Whenever user is selecting Termination as transaction, and continued to the next step, calendar shows up to select the date for termination. Here I need to personalize such that user should select last day of the employee as termination date rather than following day.
    Eg: Employee last date is 01-oct-2009, prersently some users are taking 02-oct-2009 as termination date assuming that 01-oct-2009 is the last working day. For payroll process, 01-oct-2009 needs to be last day of the employee and he needs to terminate same date for processing.
    Please advise me.

    You can't do this through personalization. You need to extend the page controller to restrict it.
    Thanks
    --Anil                                                                                                                                                                                                                                       

  • Tracing Termination Workflow attributes from Manager Self Service

    From Self service page on termination, I am setting attributes in a workflow function these attributes are used in the notification that is sent to the users. For a particular scenario I want to trace values of the attributes, is there a way to trace complete flow and attribute values flowing from self service page -> Workflow -> Notification.

    Why don't you try with the Wokflow status monitor. There you can check out the activities and check out the values of the attributes i think

  • Self Service request is going to error after final Approver.

    Hi,
    Here we configured leave system through EIT and we are using self service (EIT) to make leave request. We have 3 level of approver for Annual Leave. Problem here is after final approver (3rd approver) approves the leave then request is going in to error. I traced the item key through Workflow Administrator > Status Monitor.
    The error is Details are given below (Status Monitor)
    Failed Activity     
    Notify HR About Commit Application Error
    Activity Type     
    Notice
    Error Name     
    WFNTF_ROLE
    Error Message     
    3205: '[email protected]' is not a valid role or user name.
    Error Stack     
    Wf_Notification.Send([email protected], HRSSA, HR_EMBED_DEPT_COMMAPPLERR_MSG, WF_ENGINE.CB) Wf_Engine_Util.Notification_Send(HRSSA, 1649471, 195663, HRSSA:HR_EMBED_DEPT_COMMAPPLERR_MSG) Wf_Engine_Util.Notification(HRSSA, 1649471, 195663, RUN)
    I appreciate if someone can help me.
    Regards,
    Jojo George

    Okay, if the $PROFILES$ reference has been working for a long time that doesn't sound like a problem. I would then suggest this is an unusual data scenario where the value the user selected was temporarily available. Don't ask me how - it's your data! The user that submitted it might be able to shed some light. For example, this kind of thing might do it:
    1) Manager logs on to ESS, starts an SIT transaction (the one in question) and Saves for Later. This sets $PROFILES$.PER_PERSON_ID to themself.
    2) Manager then switches to MSS and views one of their employees - this sets $PROFILES$.PER_PERSON_ID to their employee, not themselves.
    3) Manager then navigates to Homepage and continues the Saved for Later transaction from the Worklist (ie, without clicking on the ESS responsibility). Perhaps $PROFILES$.PER_PERSON_ID is still set to their direct report rather than themselves?
    4) Manager then selects one of their employees contracts rather than their own (because of $PROFILES$.PER_PERSON_ID being wrong).
    5) Manager submits the transaction.
    I don't know if that's possible or even if that's how it behaves. But it sounds plausible and is an example of perhaps the weird set of circumstances that might have happened here. Regardless, I'd still maintain that this value was available to the user in the Value Set at the time they submitted it.
    If it's just a one-off data problem and this has been working fine for a while I wouldn't worry about it. Bin the workflow, get the employee to re-submit. Job done.

  • ERRORS: "Create New Requsition Request" (SRQ1) in Manager Self-Service.

    Hello Experts:
    We are experiencing an error when we try to create a requisition in Manager Self-Service to E-Recruiting. The problem is that after we have submitted the form, a notification is suppose to be created except that we are short-dumping and no notification is getting created. When I try to select "Display and Print" of the Form I just submitted, it issues short dumps in the back end system.
    I have a link to a google doc with screen shots. I would be very appreciative for any help on this.
    https://docs.google.com/Doc?docid=0AbAxPuJJqNfWZGNrcjRtamNfMzl0NG5wNG5nNw&hl=en
    Thanks,
    -Tim

    this is the eorror regarding the workflow processings.
    what you need to do is in ISR scenario find the simple requisition scneatio .
    you will find the workflow attached there.
    go to the workflow through SWDD enter the workflow number and then activite the workflow.
    it will solve the issue.  if not then just check the rules on which the workflow is excusting.
    regards
    waqas Anwar

  • Error in self service for my employee - Related Activities in MSS

    Hi,
    NW2004s SP9  EP7.0 ECC 6.0
    we are trying to implement the self service for my employee in related activites functinality from the general information of team workset ( Team --> General informatio --> Related activities --> Self service for my employee ) in MSS which is a replicaiton of ESS in MSS functionality from the previous versions.
    When
    I click on any of the options like Personal data or Addresses it gives me a blank page with no information on it. (It does give a DONE message with error/warning message on the status bar of Internet explorer. The error message says getactivetrackingEntryValue() is null)
    Do I need to do anything to get this page working. I do not see any config related to this.
    Appreciate any inputs.
    regards
    sam

    James,
    I think the note refers to note been able to display the general infromation iView itself. I have implemented the note and am able to see the genral information iView. My issue is I am not able to perform "Self service for my employees" in "related activities" iView.
    Thank for you reply and correct me if I am wrong.
    Sanjay, I have raised the issue with SAP, in the mean while if you can please let me know the patches or a list of them that are requried thyat would be awesome. Sorry for asking you this, but the basis team here asks to tell them what is requried even though I do not have sufficient authorizations to check them.
    Appreciate you help on the same.
    regards
    Sam

  • Error during password reset using self-service portal

    I am working in a poc (proof of concept) using oim with ad, exchange, sap and database application tables connectors. During some tests I noticed that password reset through oim's self-service portal works fine for ad, exchange and sap, but it fires an error for the database application tables connector. The odd part is that i can change the user password using web console as xelsysadmin nicely. Also I can change the password when i retried the failed task.
    Any help is appreciated.
    I'm running OIM 9.1.0.2 with BP05 applied, Weblogic Server 10.3.2, Oracle Database 11.0.7. The OS is Windows 2003.
    Log from oim web console
    Resource Name: SOC_GTC
    Description:
    User: poc cassi17 [POC.CASSI17]
    Status: Rejected
    Response: OIM API Error
    Response Description: An error was encountered in the Oracle Identity Manager API layer.
    Notes:
    wnqAd8gmdAhODUFjs4WMyQ==
    Assigned to Group : SYSTEM ADMINISTRATORS
    Log from Weblogic sdout
    ERROR,22 Feb 2010 20:09:45,187,[XELLERATE.APIS],
    java.lang.NullPointerException
         at com.thortech.xl.ejb.beansimpl.GCOperationsBean.getModelFromConnectorDefinition(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.GCOperationsBean.lookup(Unknown Source)
         at com.thortech.xl.ejb.beans.GCOperationsSession.lookup(Unknown Source)
         at com.thortech.xl.ejb.beans.GCOperations_do1ndy_ELOImpl.lookup(GCOperations_do1ndy_ELOImpl.java:619)
         at Thor.API.Operations.GCOperationsClient.lookup(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:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpSOC_GTC.GENERICADAPTER(adpSOC_GTC.java:125)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpSOC_GTC.implementation(adpSOC_GTC.java:70)
         at com.thortech.xl.client.events.tcBaseEvent.run(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.runMilestoneEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.eventPostInsert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.insert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.dataobj.tcOrderItemInfo.eventPostUpdate(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.update(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.dataobj.tcTableDataObj.save(Unknown Source)
         at com.thortech.xl.adapterfactory.events.tcAdpEvent.updateDataSetValuePost(Unknown Source)
         at com.thortech.xl.adapterfactory.events.tcAdpEvent.updateProcessFormFieldValue(Unknown Source)
         at com.thortech.xl.adapterfactory.events.tcAdpEvent.finalizeProcessAdapter(Unknown Source)
         at com.thortech.xl.adapterfactory.events.tcAdpEvent.finalizeAdapter(Unknown Source)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpSOCSETNEWSENHA.implementation(adpSOCSETNEWSENHA.java:55)
         at com.thortech.xl.client.events.tcBaseEvent.run(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.runMilestoneEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.eventPostInsert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.insert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.client.events.tcTriggerUserProcesses.insertMileStones(Unknown Source)
         at com.thortech.xl.client.events.tcTriggerUserProcesses.trigger(Unknown Source)
         at com.thortech.xl.client.events.tcUSRTriggerUserProcesses.implementation(Unknown Source)
         at com.thortech.xl.client.events.tcBaseEvent.run(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.eventPostUpdate(Unknown Source)
         at com.thortech.xl.dataobj.tcUSR.eventPostUpdate(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.update(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.dataobj.tcTableDataObj.save(Unknown Source)
         at com.thortech.xl.dataobj.tcUSR.changePasswordForSelf(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.changePasswordforSelf(Unknown Source)
         at com.thortech.xl.ejb.beans.tcUserOperationsSession.changePasswordforSelf(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.changeCredForSelf(Unknown Source)
         at com.thortech.xl.ejb.beans.tcUserOperationsSession.changeCredForSelf(Unknown Source)
         at com.thortech.xl.ejb.beans.tcUserOperations_voj9p2_EOImpl.changeCredForSelf(tcUserOperations_voj9p2_EOImpl.java:3325)
         at Thor.API.Operations.tcUserOperationsClient.changeCredForSelf(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 weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.security.Security.runAs(Security.java:41)
         at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(Unknown Source)
         at Thor.API.Base.SecurityInvocationHandler.invoke(Unknown Source)
         at $Proxy59.changeCredForSelf(Unknown Source)
         at com.thortech.xl.webclient.actions.tcChangePasswordAction.changePassword(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.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:280)
         at com.thortech.xl.webclient.actions.tcLookupDispatchAction.execute(Unknown Source)
         at com.thortech.xl.webclient.actions.tcActionBase.execute(Unknown Source)
         at com.thortech.xl.webclient.actions.tcAction.execute(Unknown Source)
         at com.thortech.xl.webclient.actions.tcChangePasswordAction.execute(Unknown Source)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at com.thortech.xl.webclient.security.SecurityFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    ERROR,22 Feb 2010 20:09:45,187,[XELLERATE.APIS],An exception occurred while creating the GenericConenctor Model from the Connector Definition file
    ERROR,22 Feb 2010 20:09:45,187,[XELLERATE.APIS],An exception occurred while generating Generic Connector model from the connector definition xml of the connector 'SOC'
    com.thortech.xl.gc.exception.ConnectorDefinitionOperationsException: An exception occurred while creating the GenericConenctor Model from the Connector Definition file
         at com.thortech.xl.ejb.beansimpl.GCOperationsBean.getModelFromConnectorDefinition(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.GCOperationsBean.lookup(Unknown Source)
         at com.thortech.xl.ejb.beans.GCOperationsSession.lookup(Unknown Source)
         at com.thortech.xl.ejb.beans.GCOperations_do1ndy_ELOImpl.lookup(GCOperations_do1ndy_ELOImpl.java:619)
         at Thor.API.Operations.GCOperationsClient.lookup(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:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpSOC_GTC.GENERICADAPTER(adpSOC_GTC.java:125)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpSOC_GTC.implementation(adpSOC_GTC.java:70)
         at com.thortech.xl.client.events.tcBaseEvent.run(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.runMilestoneEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.eventPostInsert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.insert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.dataobj.tcOrderItemInfo.eventPostUpdate(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.update(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.dataobj.tcTableDataObj.save(Unknown Source)
         at com.thortech.xl.adapterfactory.events.tcAdpEvent.updateDataSetValuePost(Unknown Source)
         at com.thortech.xl.adapterfactory.events.tcAdpEvent.updateProcessFormFieldValue(Unknown Source)
         at com.thortech.xl.adapterfactory.events.tcAdpEvent.finalizeProcessAdapter(Unknown Source)
         at com.thortech.xl.adapterfactory.events.tcAdpEvent.finalizeAdapter(Unknown Source)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpSOCSETNEWSENHA.implementation(adpSOCSETNEWSENHA.java:55)
         at com.thortech.xl.client.events.tcBaseEvent.run(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.runMilestoneEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.eventPostInsert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.insert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.client.events.tcTriggerUserProcesses.insertMileStones(Unknown Source)
         at com.thortech.xl.client.events.tcTriggerUserProcesses.trigger(Unknown Source)
         at com.thortech.xl.client.events.tcUSRTriggerUserProcesses.implementation(Unknown Source)
         at com.thortech.xl.client.events.tcBaseEvent.run(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.eventPostUpdate(Unknown Source)
         at com.thortech.xl.dataobj.tcUSR.eventPostUpdate(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.update(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.dataobj.tcTableDataObj.save(Unknown Source)
         at com.thortech.xl.dataobj.tcUSR.changePasswordForSelf(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.changePasswordforSelf(Unknown Source)
         at com.thortech.xl.ejb.beans.tcUserOperationsSession.changePasswordforSelf(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.changeCredForSelf(Unknown Source)
         at com.thortech.xl.ejb.beans.tcUserOperationsSession.changeCredForSelf(Unknown Source)
         at com.thortech.xl.ejb.beans.tcUserOperations_voj9p2_EOImpl.changeCredForSelf(tcUserOperations_voj9p2_EOImpl.java:3325)
         at Thor.API.Operations.tcUserOperationsClient.changeCredForSelf(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 weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.security.Security.runAs(Security.java:41)
         at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(Unknown Source)
         at Thor.API.Base.SecurityInvocationHandler.invoke(Unknown Source)
         at $Proxy59.changeCredForSelf(Unknown Source)
         at com.thortech.xl.webclient.actions.tcChangePasswordAction.changePassword(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.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:280)
         at com.thortech.xl.webclient.actions.tcLookupDispatchAction.execute(Unknown Source)
         at com.thortech.xl.webclient.actions.tcActionBase.execute(Unknown Source)
         at com.thortech.xl.webclient.actions.tcAction.execute(Unknown Source)
         at com.thortech.xl.webclient.actions.tcChangePasswordAction.execute(Unknown Source)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at com.thortech.xl.webclient.security.SecurityFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.lang.NullPointerException
         ... 92 more
    Edited by: aviana on Feb 23, 2010 5:18 AM

    I changed the privileges as recommended, but it did no solved the problem. So I implemented the task retry as a workaround and it worked.
    Anyway, I increased the adapter's log level to debug. Please check the log below.
    ERROR,23 Feb 2010 19:44:28,531,[XELLERATE.APIS],
    java.lang.NullPointerException
         at com.thortech.xl.ejb.beansimpl.GCOperationsBean.getModelFromConnectorDefinition(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.GCOperationsBean.lookup(Unknown Source)
         at com.thortech.xl.ejb.beans.GCOperationsSession.lookup(Unknown Source)
         at com.thortech.xl.ejb.beans.GCOperations_do1ndy_ELOImpl.lookup(GCOperations_do1ndy_ELOImpl.java:619)
         at Thor.API.Operations.GCOperationsClient.lookup(Unknown Source)
         at com.thortech.xl.gc.runtime.GCAdapterLibrary.executeFunctionality(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor338.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpSOC_GTC.GENERICADAPTER(adpSOC_GTC.java:125)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpSOC_GTC.implementation(adpSOC_GTC.java:70)
         at com.thortech.xl.client.events.tcBaseEvent.run(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.runMilestoneEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.eventPostInsert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.insert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.dataobj.tcOrderItemInfo.eventPostUpdate(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.update(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.dataobj.tcTableDataObj.save(Unknown Source)
         at com.thortech.xl.adapterfactory.events.tcAdpEvent.updateDataSetValuePost(Unknown Source)
         at com.thortech.xl.adapterfactory.events.tcAdpEvent.updateProcessFormFieldValue(Unknown Source)
         at com.thortech.xl.adapterfactory.events.tcAdpEvent.finalizeProcessAdapter(Unknown Source)
         at com.thortech.xl.adapterfactory.events.tcAdpEvent.finalizeAdapter(Unknown Source)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpSOCSETNEWSENHA.implementation(adpSOCSETNEWSENHA.java:55)
         at com.thortech.xl.client.events.tcBaseEvent.run(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.runMilestoneEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.eventPostInsert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.insert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.client.events.tcTriggerUserProcesses.insertMileStones(Unknown Source)
         at com.thortech.xl.client.events.tcTriggerUserProcesses.trigger(Unknown Source)
         at com.thortech.xl.client.events.tcUSRTriggerUserProcesses.implementation(Unknown Source)
         at com.thortech.xl.client.events.tcBaseEvent.run(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.eventPostUpdate(Unknown Source)
         at com.thortech.xl.dataobj.tcUSR.eventPostUpdate(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.update(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.dataobj.tcTableDataObj.save(Unknown Source)
         at com.thortech.xl.dataobj.tcUSR.changePasswordForSelf(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.changePasswordforSelf(Unknown Source)
         at com.thortech.xl.ejb.beans.tcUserOperationsSession.changePasswordforSelf(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.changeCredForSelf(Unknown Source)
         at com.thortech.xl.ejb.beans.tcUserOperationsSession.changeCredForSelf(Unknown Source)
         at com.thortech.xl.ejb.beans.tcUserOperations_voj9p2_EOImpl.changeCredForSelf(tcUserOperations_voj9p2_EOImpl.java:3325)
         at Thor.API.Operations.tcUserOperationsClient.changeCredForSelf(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 weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.security.Security.runAs(Security.java:41)
         at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(Unknown Source)
         at Thor.API.Base.SecurityInvocationHandler.invoke(Unknown Source)
         at $Proxy59.changeCredForSelf(Unknown Source)
         at com.thortech.xl.webclient.actions.tcChangePasswordAction.changePassword(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.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:280)
         at com.thortech.xl.webclient.actions.tcLookupDispatchAction.execute(Unknown Source)
         at com.thortech.xl.webclient.actions.tcActionBase.execute(Unknown Source)
         at com.thortech.xl.webclient.actions.tcAction.execute(Unknown Source)
         at com.thortech.xl.webclient.actions.tcChangePasswordAction.execute(Unknown Source)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at com.thortech.xl.webclient.security.SecurityFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    ERROR,23 Feb 2010 19:44:28,531,[XELLERATE.APIS],An exception occurred while creating the GenericConenctor Model from the Connector Definition file
    ERROR,23 Feb 2010 19:44:28,531,[XELLERATE.APIS],An exception occurred while generating Generic Connector model from the connector definition xml of the connector 'SOC'
    com.thortech.xl.gc.exception.ConnectorDefinitionOperationsException: An exception occurred while creating the GenericConenctor Model from the Connector Definition file
         at com.thortech.xl.ejb.beansimpl.GCOperationsBean.getModelFromConnectorDefinition(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.GCOperationsBean.lookup(Unknown Source)
         at com.thortech.xl.ejb.beans.GCOperationsSession.lookup(Unknown Source)
         at com.thortech.xl.ejb.beans.GCOperations_do1ndy_ELOImpl.lookup(GCOperations_do1ndy_ELOImpl.java:619)
         at Thor.API.Operations.GCOperationsClient.lookup(Unknown Source)
         at com.thortech.xl.gc.runtime.GCAdapterLibrary.executeFunctionality(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor338.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpSOC_GTC.GENERICADAPTER(adpSOC_GTC.java:125)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpSOC_GTC.implementation(adpSOC_GTC.java:70)
         at com.thortech.xl.client.events.tcBaseEvent.run(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.runMilestoneEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.eventPostInsert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.insert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.dataobj.tcOrderItemInfo.eventPostUpdate(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.update(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.dataobj.tcTableDataObj.save(Unknown Source)
         at com.thortech.xl.adapterfactory.events.tcAdpEvent.updateDataSetValuePost(Unknown Source)
         at com.thortech.xl.adapterfactory.events.tcAdpEvent.updateProcessFormFieldValue(Unknown Source)
         at com.thortech.xl.adapterfactory.events.tcAdpEvent.finalizeProcessAdapter(Unknown Source)
         at com.thortech.xl.adapterfactory.events.tcAdpEvent.finalizeAdapter(Unknown Source)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpSOCSETNEWSENHA.implementation(adpSOCSETNEWSENHA.java:55)
         at com.thortech.xl.client.events.tcBaseEvent.run(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.runMilestoneEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.eventPostInsert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.insert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.client.events.tcTriggerUserProcesses.insertMileStones(Unknown Source)
         at com.thortech.xl.client.events.tcTriggerUserProcesses.trigger(Unknown Source)
         at com.thortech.xl.client.events.tcUSRTriggerUserProcesses.implementation(Unknown Source)
         at com.thortech.xl.client.events.tcBaseEvent.run(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.eventPostUpdate(Unknown Source)
         at com.thortech.xl.dataobj.tcUSR.eventPostUpdate(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.update(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.dataobj.tcTableDataObj.save(Unknown Source)
         at com.thortech.xl.dataobj.tcUSR.changePasswordForSelf(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.changePasswordforSelf(Unknown Source)
         at com.thortech.xl.ejb.beans.tcUserOperationsSession.changePasswordforSelf(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.changeCredForSelf(Unknown Source)
         at com.thortech.xl.ejb.beans.tcUserOperationsSession.changeCredForSelf(Unknown Source)
         at com.thortech.xl.ejb.beans.tcUserOperations_voj9p2_EOImpl.changeCredForSelf(tcUserOperations_voj9p2_EOImpl.java:3325)
         at Thor.API.Operations.tcUserOperationsClient.changeCredForSelf(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 weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.security.Security.runAs(Security.java:41)
         at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(Unknown Source)
         at Thor.API.Base.SecurityInvocationHandler.invoke(Unknown Source)
         at $Proxy59.changeCredForSelf(Unknown Source)
         at com.thortech.xl.webclient.actions.tcChangePasswordAction.changePassword(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.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:280)
         at com.thortech.xl.webclient.actions.tcLookupDispatchAction.execute(Unknown Source)
         at com.thortech.xl.webclient.actions.tcActionBase.execute(Unknown Source)
         at com.thortech.xl.webclient.actions.tcAction.execute(Unknown Source)
         at com.thortech.xl.webclient.actions.tcChangePasswordAction.execute(Unknown Source)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at com.thortech.xl.webclient.security.SecurityFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.lang.NullPointerException
         ... 91 more
    ***ERROR,23 Feb 2010 19:44:28,531,[XELLERATE.GC.FRAMEWORKPROVISIONING],An exception occurred while generating Generic Connector model from the connector definition xml of the connector 'SOC'***
    ***DEBUG,23 Feb 2010 19:44:28,531,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/setAdpRetVal entered.***
    ***DEBUG,23 Feb 2010 19:44:28,531,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/getRetValString entered.***
    ***DEBUG,23 Feb 2010 19:44:28,531,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/getRetValString - Data: class - Value: java.lang.String***
    ***DEBUG,23 Feb 2010 19:44:28,531,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/getRetValString - Data: poRetVal.toString() - Value: GCPROV.ADAPTER_OIMAPIERROR***
    ***DEBUG,23 Feb 2010 19:44:28,531,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/getRetValString - Data: Returning:sRetVal - Value: GCPROV.ADAPTER_OIMAPIERROR***
    ***DEBUG,23 Feb 2010 19:44:28,531,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/getRetValString left.***
    ***DEBUG,23 Feb 2010 19:44:28,531,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/setAdpRetVal - Data: Setting Adapter Return Value to GCPROV.ADAPTER_OIMAPIERROR - Value:***
    ***DEBUG,23 Feb 2010 19:44:28,531,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/setAdpRetVal left.***
    ***DEBUG,23 Feb 2010 19:44:28,531,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/finalizeProcessAdapter entered.***
    ***DEBUG,23 Feb 2010 19:44:28,531,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/finalizeProcessAdapter - Data: Mapped to Response Code - Value:***
    ***DEBUG,23 Feb 2010 19:44:28,531,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/updateSchItem entered.***
    ***DEBUG,23 Feb 2010 19:44:28,531,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/updateSchItem - Data: event - Value: adpSOC_GTC***
    ***DEBUG,23 Feb 2010 19:44:28,531,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/updateSchItem - Data: New Status - Value:***
    ***DEBUG,23 Feb 2010 19:44:28,531,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/updateSchItem - Data: SchData - Value: GCPROV.ADAPTER_OIMAPIERROR***
    ***DEBUG,23 Feb 2010 19:44:28,531,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/updateSchItem - Data: Reason - Value:***
    ***DEBUG,23 Feb 2010 19:44:28,609,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/updateSchItem left.***
    ***DEBUG,23 Feb 2010 19:44:28,609,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/finalizeProcessAdapter left.***
    ***INFO,23 Feb 2010 19:44:28,609,[XELLERATE.ADAPTERS],Adapter: adpSOC_GTC has completed for the task: SENHA Updated.***
    ***DEBUG,23 Feb 2010 19:44:28,625,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/updateDataSetValuePost left.***
    ***DEBUG,23 Feb 2010 19:44:28,625,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/updateProcessFormFieldValue left.***
    ***DEBUG,23 Feb 2010 19:44:28,625,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/updateProcessFormFieldValue left.***
    ***DEBUG,23 Feb 2010 19:44:28,625,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/finalizeProcessAdapter - Data: No Response Code specified. Updating milestone status to Completed - Value:***
    ***DEBUG,23 Feb 2010 19:44:28,625,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/updateSchItem entered.***
    ***DEBUG,23 Feb 2010 19:44:28,625,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/updateSchItem - Data: event - Value: adpSOCSETNEWSENHA***
    ***DEBUG,23 Feb 2010 19:44:28,625,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/updateSchItem - Data: New Status - Value: C***
    ***DEBUG,23 Feb 2010 19:44:28,625,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/updateSchItem - Data: SchData - Value:***
    ***DEBUG,23 Feb 2010 19:44:28,625,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/updateSchItem - Data: Reason - Value:***
    ***DEBUG,23 Feb 2010 19:44:28,656,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/updateSchItem left.***
    ***DEBUG,23 Feb 2010 19:44:28,656,[XELLERATE.ADAPTERS],Class/Method: tcAdpEvent/finalizeProcessAdapter left.***
    ***INFO,23 Feb 2010 19:44:28,656,[XELLERATE.ADAPTERS],Adapter: adpSOCSETNEWSENHA has completed for the task: Change User Password.***
    ***INFO,23 Feb 2010 19:44:28,656,[XELLERATE.ADAPTERS],Event: Triggering Processes related to User. has completed.***
    Edited by: aviana on Feb 23, 2010 3:02 PM

  • How To Display Error Message In Self Service Page

    Dear All,
    I am using 11.5.10 Oracle HRMS self Service ,,,
    How can I display error message on the top of the self service page if some action happen ?
    Best Regards

    Time entry rules maybe?

  • In Every Page of Employee Self Service it is displaying this Error.

    Hi All Experts,
    In Employee Self Service i am Getting this Error,overview page is also not displayed.
    The initial exception that caused the request to fail, was:
       com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: ComponentUsage(FPMConfigurationUsage): Active component must exist when getting interface controller. (Hint: Have you forgotten to create it with createComponent()? Should the lifecycle control of the component usage be "createOnDemand"?
        at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.ensureActiveComponent(ComponentUsage.java:773)
        at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.getInterfaceControllerInternal(ComponentUsage.java:348)
        at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.getInterfaceController(ComponentUsage.java:335)
        at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdGetFPMConfigurationUsageInterface(InternalFPMComponent.java:245)
        at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.changeToExceptionPerspective(FPMComponent.java:862)
        ... 60 more
    See full exception chain for details.
    System Environment
    Client
    Web Dynpro Client Type HTML Client
    User agent Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
    Version null
    DOM version null
    Client Type msie7
    Client Type Profile ie6
    ActiveX enabled
    Cookies enabled
    Frames enabled
    Java Applets enabled
    JavaScript enabled
    Tables enabled
    VB Script enabled
    Server
    Web Dynpro Runtime Vendor: SAP, build ID: 7.0015.20080131100237.0000 (release=645_VAL_REL, buildtime=2008-02-15:22:35:17[UTC], changelist=475271, host=pwdfm101), build date: Tue Jul 08 13:48:16 GMT+05:30 2008
    J2EE Engine 7.00 patchlevel 110760.44
    Java VM Java HotSpot(TM) Server VM, version:1.4.2_13-b06, vendor: Sun Microsystems Inc.
    Operating system Windows 2003, version: 5.2, architecture: x86
    Session & Other
    Session Locale en_US
    Time of Failure Thu Jul 31 10:12:26 GMT+05:30 2008 (Java Time: 1217479346562)
    Web Dynpro Code Generation Infos
    sap.com/pb
    SapDictionaryGenerationCore 7.0014.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:46:55[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapDictionaryGenerationTemplates 7.0014.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:47:02[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapGenerationFrameworkCore 7.0014.20060719095755.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:35:31[UTC], changelist=411255, host=PWDFM101.wdf.sap.corp)
    SapIdeWebDynproCheckLayer 7.0014.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:52:27[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCommon 7.0014.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:36:15[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCore 7.0014.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:36:09[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapMetamodelDictionary 7.0014.20060719095619.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:44:27[UTC], changelist=411251, host=PWDFM101.wdf.sap.corp)
    SapMetamodelWebDynpro 7.0014.20070703112649.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:49:22[UTC], changelist=454024, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationCTemplates 7.0014.20071029095230.0000 (release=645_VAL_REL, buildtime=2007-11-17:12:01:49[UTC], changelist=466194, host=pwdfm101)
    SapWebDynproGenerationCore 7.0014.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:52:33[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationTemplates 7.0014.20071029095230.0000 (release=645_VAL_REL, buildtime=2007-11-17:12:01:49[UTC], changelist=466194, host=pwdfm101)
    sap.com/tcwddispwda
    No information available null
    sap.com/pb_api
    SapDictionaryGenerationCore 7.0014.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:46:55[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapDictionaryGenerationTemplates 7.0014.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:47:02[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapGenerationFrameworkCore 7.0014.20060719095755.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:35:31[UTC], changelist=411255, host=PWDFM101.wdf.sap.corp)
    SapIdeWebDynproCheckLayer 7.0014.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:52:27[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCommon 7.0014.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:36:15[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCore 7.0014.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:36:09[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapMetamodelDictionary 7.0014.20060719095619.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:44:27[UTC], changelist=411251, host=PWDFM101.wdf.sap.corp)
    SapMetamodelWebDynpro 7.0014.20070703112649.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:49:22[UTC], changelist=454024, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationCTemplates 7.0014.20071029095230.0000 (release=645_VAL_REL, buildtime=2007-11-17:12:01:49[UTC], changelist=466194, host=pwdfm101)
    SapWebDynproGenerationCore 7.0014.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-11-17:11:52:33[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationTemplates 7.0014.20071029095230.0000 (release=645_VAL_REL, buildtime=2007-11-17:12:01:49[UTC], changelist=466194, host=pwdfm101)
    sap.com/tcwdcorecomp
    No information available null
    Detailed Error Information
    Detailed Exception Chain
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: ComponentUsage(FPMConfigurationUsage): Active component must exist when getting interface controller. (Hint: Have you forgotten to create it with createComponent()? Should the lifecycle control of the component usage be "createOnDemand"?
         at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.ensureActiveComponent(ComponentUsage.java:773)
         at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.getInterfaceControllerInternal(ComponentUsage.java:348)
         at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.getInterfaceController(ComponentUsage.java:335)
         at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdGetFPMConfigurationUsageInterface(InternalFPMComponent.java:245)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.changeToExceptionPerspective(FPMComponent.java:862)
         at com.sap.pcuigp.xssfpm.java.MessageManager.handleException(MessageManager.java:259)
         at com.sap.pcuigp.xssfpm.java.MessageManager.raiseException(MessageManager.java:104)
         at com.sap.pcuigp.xssfpm.wd.BackendConnections.connectModelInternal(BackendConnections.java:323)
         at com.sap.pcuigp.xssfpm.wd.BackendConnections.initBackend(BackendConnections.java:256)
         at com.sap.pcuigp.xssfpm.wd.BackendConnections.connectModel(BackendConnections.java:154)
         at com.sap.pcuigp.xssfpm.wd.wdp.InternalBackendConnections.connectModel(InternalBackendConnections.java:237)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.connectModel(FPMComponent.java:842)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.connectModel(FPMComponent.java:1072)
         at com.sap.pcuigp.xssfpm.wd.BackendConnections.init(BackendConnections.java:141)
         at com.sap.pcuigp.xssfpm.wd.wdp.InternalBackendConnections.init(InternalBackendConnections.java:233)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.wdDoInit(FPMComponent.java:182)
         at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdDoInit(InternalFPMComponent.java:110)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:430)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:756)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:291)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java:733)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:668)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73)
         at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:860)
         at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.create(AbstractApplicationProxy.java:220)
         at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1288)
         at com.sap.portal.pb.PageBuilder.createPage(PageBuilder.java:355)
         at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:548)
         at com.sap.portal.pb.PageBuilder.wdDoInit(PageBuilder.java:192)
         at com.sap.portal.pb.wdp.InternalPageBuilder.wdDoInit(InternalPageBuilder.java:150)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:430)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:756)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:291)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)

    what user name did you use in JCo??? and the user you made can you give me some insight steps on it...
    i mean the user is refernce user, dialuge user or what user.....
    My basis team is using their own user name in JCO, bcoz of which only data relating to their user name is showing in ESS / MSS for all employees of PORTAL
    also please let me know which profile you used for the user of JCO.
    Regards

  • SCSM 2012 - Self Service Portal installation Error

    Hi Everyone,
    I am trying to update SCSM 2010 with 2012. So far I have successfully installed Database Server and Warehouse server, and now I am trying to install the self service portal but it is giving me an error saying "Setup has failed because of an unexpected
    error. Please review C:\..\SCSMSertupWizard01.log for more details.
    Here are some extra information in relation to this upgrade.
    I have got 3 separate servers for my SCSM 2010 application. One act as a warehouse database server. second server holds the Service Manger Database and the third one has got Self-service portal on it.
    Now as I said earlier, I did not face any issue upgrading the first two servers (warehouse and Database) but the last one is proving very difficult to just even start with.
    Here is some interesting thing that is happening while I am trying to install my self service portal.
    When I run the SCSM 2012 setup on my web portal server (Server 3) I get a setup screen with following option
    and as I said earlier when I click this Upgrade option it starts the "requirements check" and fails just there with an error message.
    Now here is the interesting thing, when I run the SCSM 2012 setup on my server 2 ( which has now got Database Server 2012 installed in it) gives me following option screen.
    So when I select this option it starts to install Web content server and Sharepoint site server on my Database server. I do not want that. I want to have my web content server on Server 3 which already has  SSP 2010 on it. I have also installed Sharepoint
    2010 on my third server.
    What is the solution here?
    Do I have to merge my Database and Web content server? is it some sort of untold requirement of SCSM 2012 upgrade?
    Please help me here.
    Svapnil

    Hi there,
    thanks for the reply..
    here is the screenshots of the log files.
    Sorry all my 3 servers are on DMZ environment so it is bit hard for me to move files from virtual to live servers (Do not have enough permission level to do so!!)
    Image No 2:
    I hope this helps!!

  • Error in Self Service

    Hi,
    Dear All I am getting following error in Employee self service while clicking on Personal Information, Education and qualification, SIT etc...
    Some functions are working properly...
    WF_PLSQL_ERROR (ERRNAME=null) (ERRMESSAGE=null) (ERRSTACK= Wf_Item.Create_Item(HRSSA, 477, HR_PERSONAL_INFO_JSP_PRC) Wf_Engine.CreateProcess(HRSSA, 477, HR_PERSONAL_INFO_JSP_PRC))
    Regards,
    Jithin

    Hey, which tablespace. what is the solution?
    Please explain, i am getting the same error?

  • Error when copying the folder Manager Self-Service in the portal

    Good Night.
    I am implementing  Employee Self-Service and Manager Self-Service
    For ESS i did  the following:
    1. I  created a new folder for my project.
    2. I copied  Employee Self-Service folder from the standard part into my folder.
    3. I deleted the pages and worksets that not needed
    4. I did the config in the backend and put the pcd in the backend config for it to be displaying the content.
    And for MSS I wanted to do the same steps:
    But the system display the following message of error:
    Error
    Source object not found. It may have been deleted.
    [Error|http://www.freeimagehosting.net/uploads/0524ec1cc5.jpg]
    The steps that i did are:
    Portal Content==>Content Provided by SAP==>line_manager=>Right Click -->Copy.
    And in the new folder --> Right Click -->Paste.
    How can solve this issue?
    Kind Regards
    Edited by: consultor_ess_mss on Jan 29, 2010 3:11 AM

    Hi, I solved this issue using the  Content Mirroring Tool.
    http://help.sap.com/saphelp_nw04s/helpdata/en/9e/9eeb41873b45489c02d989a62cb560/content.htm
    In this documentation is all the steps.
    Kind Regards.

Maybe you are looking for

  • Connection Pooling and Connection Identity

    On this link: http://java.sun.com/products/jndi/tutorial/ldap/connect/config.html I read that: "The LDAP provider maintains pools of connections; each pool holds connections (either in-use or idle) that have the same connection identity." This to me

  • Different Cost Centers for Different Line Items in a single Reservation

    Hello Gurus, When we create a Material Reservation, we give the cost center at the header level and that cost center is accounted for each of the line items in the reservation. But when the reservation has many line items which depend on different co

  • To display output adjacent to each other

    Hi, I'm trying to display the following pattern 1 1 2 1 2 3 but when i tried something like this: declare i number; j number; begin for i in 1..3 loop for j in 1..i loop dbms_output.put_line(j); end loop; end loop ; end; i'm getting the output like t

  • More than one map number per topic?

    I have been asked to create context sensitive help with RoboHelp6. Is it possible to create bookmarks in a topic and have different map numbers open to these different bookmarks in the same topic OR does each map number have to have one unique topic?

  • Configure LDAP in my Sun Java System Application Server 7

    Hi All, I'm trying to connect a ldap server with my Sun One 7 (2004Q2). I think that I follow the needed steps but I don't achieve my purpose. These are the steps that I follow: 1) From Administrator Web, in Security -> Realms -> ldap -> properties,