Self Service salary Page

I need to display per_pay_proposals.attribute2 as part of salary of self-service page. Can I know how to display.
I clicked on customize "Wages" page and you click on expand all to see the attribut2. But I could not find. Can a
advice. Are there other alternatives?

What more you can check go to this page, then business façade.

Check all the available objects of VO that attribut2 is available or not.

If attribut2 is available, you can add using personlization.

If this is not available you must extend View object referenced. It takes knowledge of the framework of OSTEOARTHRITIS.

Thank you

Tags: Oracle Applications

Similar Questions

  • The substitution of controller on HR Self Service salary Page

    Hello

    I am very new to the OFA, and one of our users asked us to do a required field. The name of the field is reason for change in salary. They do not want this customization, and that's why I ended the substitution of the controller. The controller checks the value of this field on the button apply on ProcessFormRequest. If the value is empty, the controller should trigger just an OAException. Everything works fine except the value of the reason to pay is not sent to the review page and after committing, the value does not appear in the database. Another strange thing is that if I Uncomment super.processFormRequest (oapagecontext, oawebbean); statement as the first line of the PFR, the value is passed successfully, but my validation of Virgin pay reason does not occur. That of why I wrote the Super in the else statement and commented on one. But with this code, the value of the reason for the compensation is not passed. Any help is appreciated. Here is the code:

    SerializableAttribute public class XXPERProposedPayCON14 extends ProposedPayCO {}

    public XXPERProposedPayCON14() {}

    }

    public void processFormRequest (OAPageContext oapagecontext,

    {OAWebBean oawebbean)

    super.processFormRequest (oapagecontext, oawebbean);

    Oaapplicationmodule = OAApplicationModule

    oapagecontext.getApplicationModule (oawebbean);

    Oadbtransactionimpl = OADBTransactionImpl

    (OADBTransactionImpl) oaapplicationmodule.getOADBTransaction ();

    String oafuncvalue = "";

    If (oapagecontext.getTransactionValue ("PER_OAFUNC_VAL")! = null) {}

    oapagecontext.writeDiagnostics (this,

    (new StringBuilder()).append("oafunction_processFormRequest_is_==").append (oapagecontext.getTransactionValue ("PER_OAFUNC_VAL")) m:System.NET.SocketAddress.ToString (),.

    (1);

    oafuncvalue =

    (String) oapagecontext.getTransactionValue ("PER_OAFUNC_VAL");

    }

    If (oapagecontext.getParameter ("Apply")! = null) {}

    If (oapagecontext.getParameter ("PayReason") == "") {}

    oapagecontext.writeDiagnostics (this,

    "Inside to pay for reason is empty 1.

    (1);

    throw new OAException ("Please select a value for reason of salary change", OAException.ERROR);

    return;

    } else {}

    oapagecontext.writeDiagnostics (this,

    "Inside another reason to pay is not void 2,

    (1);

    super.processFormRequest (oapagecontext, oawebbean);

    HashMap hashmap2 = new HashMap (3);

    hashmap2.put ("PER_TRANSACTION_ID",

    oadbtransactionimpl.getValue ("TX_TRANSACTION_ID"));

    hashmap2.put ("PER_TRANSACTION_STEP_ID",

    oadbtransactionimpl.getValue ("TX_TRANSACTION_STEP_ID"));

    hashmap2.put ("FROM_INTERNAL_FLOW", "Y");

    hashmap2.put ("OAFunc", oafuncvalue);

    oapagecontext.setForwardURL ("OA.jsp?page=/oracle/apps/per/selfservice/deployperson/webui/AssignmentPG",

    NULL, (byte) 0, null, hashmap2,.

    true, ', (byte) 0);

    } //else

    }

    If (oapagecontext.getParameter ("Cancel")! = null) {}

    HashMap hashmap = new HashMap (1);

    HashMap.put ("FROM_INTERNAL_FLOW", "Y");

    HashMap.put ("OAFunc", oafuncvalue);

    oapagecontext.setForwardURL ("OA.jsp?page=/oracle/apps/per/selfservice/deployperson/webui/AssignmentPG",

    NULL, 0, null, hashmap, true (byte),

    ', (Byte) 0);

    }

    }

    public static final String RCS_ID =

    ' $Header: XXPERProposedPayCO.java 120.31.12010000.7 2010/03/23 10:52:38 vkodedal ship $';

    public static final boolean RCS_ID_RECORDED = VersionInfo.recordClassVersion ("' $Header: XXPERProposedPayCO.java 120.31.12010000.7 2010/03/23 10:52:38 vkodedal ship $',")

    "oracle.apps.per.selfservice.changepay.webui");

    }

    Hello

    They do not want this customization, and that's why I ended the substitution of the controller.

    Why? No particular reason?

    If you just want to check extra, just do this in your controller.

    Something like below:

    public class XXPERProposedPayCON14 extends ProposedPayCO {
    
      public XXPERProposedPayCON14() {
      }
    
      public void processFormRequest(OAPageContext oapagecontext,OAWebBean oawebbean) {
      oapagecontext.writeDiagnostics(this,"Inside custom Controller",1);
      if (oapagecontext.getParameter("Apply") != null) {
      oapagecontext.writeDiagnostics(this,"Inside Apply",1);
      String payReason = oapagecontext.getParameter("PayReason");
      oapagecontext.writeDiagnostics(this,"payReason:"+payReason,1);
      if ( payReason == null || "".equals(payReason) {
      oapagecontext.writeDiagnostics(this,"Inside if Pay Reason is blank 1",1);
      throw new OAException("Please Select a Value for Salary Change Reason", OAException.ERROR);
      }
      }
      super.processFormRequest(oapagecontext, oawebbean);
    
      /*
      //super.processFormRequest(oapagecontext, oawebbean);
      OAApplicationModule oaapplicationmodule = oapagecontext.getApplicationModule(oawebbean);
      OADBTransactionImpl oadbtransactionimpl = (OADBTransactionImpl)oaapplicationmodule.getOADBTransaction();
      String oafuncvalue = "";
      if (oapagecontext.getTransactionValue("PER_OAFUNC_VAL") != null) {
      oapagecontext.writeDiagnostics(this,(new StringBuilder()).append("oafunction processFormRequest is == ").append(oapagecontext.getTransactionValue("PER_OAFUNC_VAL")).toString(),1);
      oafuncvalue = (String)oapagecontext.getTransactionValue("PER_OAFUNC_VAL");
      }
      if (oapagecontext.getParameter("Apply") != null) {
      if (oapagecontext.getParameter("PayReason") == "") {
      oapagecontext.writeDiagnostics(this,"Inside if Pay Reason is blank 1",1);
      throw new OAException("Please Select a Value for Salary Change Reason", OAException.ERROR);
      //return;
      }
      else {
      oapagecontext.writeDiagnostics(this,"Inside else Pay Reason is not blank 2",1);
      super.processFormRequest(oapagecontext, oawebbean);
      HashMap hashmap2 = new HashMap(3);
      hashmap2.put("PER_TRANSACTION_ID",
      oadbtransactionimpl.getValue("TX_TRANSACTION_ID"));
      hashmap2.put("PER_TRANSACTION_STEP_ID",
      oadbtransactionimpl.getValue("TX_TRANSACTION_STEP_ID"));
      hashmap2.put("FROM_INTERNAL_FLOW", "Y");
      hashmap2.put("OAFunc", oafuncvalue);
      oapagecontext.setForwardURL("OA.jsp?page=/oracle/apps/per/selfservice/deployperson/webui/AssignmentPG",null, (byte)0, null, hashmap2,true, "N", (byte)0);
      } //else
      }
      if (oapagecontext.getParameter("Cancel") != null) {
      HashMap hashmap = new HashMap(1);
      hashmap.put("FROM_INTERNAL_FLOW", "Y");
      hashmap.put("OAFunc", oafuncvalue);
      oapagecontext.setForwardURL("OA.jsp?page=/oracle/apps/per/selfservice/deployperson/webui/AssignmentPG",null, (byte)0, null, hashmap, true,"N", (byte)0);
      }
      */
      }
    
      public static final String RCS_ID = "$Header: XXPERProposedPayCO.java 120.31.12010000.7 2010/03/23 10:52:38 vkodedal ship $";
      public static final boolean RCS_ID_RECORDED = VersionInfo.recordClassVersion("$Header: XXPERProposedPayCO.java 120.31.12010000.7 2010/03/23 10:52:38 vkodedal ship $","oracle.apps.per.selfservice.changepay.webui");
    
    }
    

    See you soon

    AJ

  • Customize the self-service registration page in R2

    Gurus,

    Can you please let me know the process in order to customize the self-registration page in OIM11gR2?

    Refer to this.

    http://kinisblog.blogspot.com/2012/10/OIM-11gr2-customizing-self-service-user.html

  • Integration of self-service EBS

    Has anyone ever head to integrate a WebCenter content with self-service? For example, coating a person personal documents folder (or simply a list of these documents) on the landing page of self-service.

    I'm looking for documentation, a ticket of blog, or tutorial, to develop this type of solution.

    Thank you!

    Mitch

    Hi Mitch,

    Yes, MY COE can be integrated with the self-service of EBS module.

    Please see the following articles which describe this in detail:

    Doc-ID 1676747.1 MY happy WebCenter functionality does not work in EBS Employee Self Service review Pages - ReviewPG Page

    Doc-ID 1485062.1 - enabling attachments managed to Self Service Forms (OFA)

    Doc-ID 1538797.1 - how to enable attachments managed for OAF Page 'Employee Self Services'-> 'special information '.

    I hope this helps.

    Thank you

    Srinath

  • How to hide the identify (SSN) national as part of personal information of self-service page

    I want to know if there is an easy way to hide the information SSN number personal self service page.

    for example, the social security number is 123-45-6789

    I want to be able to show as 123-45-XXXX

    Is it possible to data mask using personalization ofa or by the addition of new fields and using JavaScript?

    or is the substitution of VO is the only way to go?

    Help, please...

    Thank you

    Gasmi

    Garnier,

    There is a quick and easy way to do it. Not sure how you feel well. You can change the vo xml file and edit the sql code. This of course not patch resistant. The alternative is a substitution of the VO.  A quick dirty way is to get a copy of $JAVA_TOP/oracle/apps/per/selfservice/personalinformation/server/BasicDetailsCurrentVO.xml and modify the sql statement:

    Change in per.national_identifier

    TO

    "XXX - XXX - |  SUBSTR(per.national_identifier,8,4) national_identifier

    This apparent changes the view object. Of course the right way is seen object substitution.

    If this resolves the problem please mark the correct answer.

    Kind regards.

    Kristofer Cruz

  • Extending from VO on the employee self-service page

    All,

    I want to thank PhoneNumbersVO VO on the employee self-service > my personal information page

    Here's what I've done so now

    1. copy everything under JAVA_TOP > oracle/apps/by/self-service/personal information / * on my desktop under files Myclasses and MyProject.

    2. scope of the VO and added my new columns to the query. This view is not attached to any EO.

    3. copy the class under myclasses to JAVA_TOP files > xx > folder/apps/by/self-service/personal information/server oracle

    4 imported .jpx file using jpximport

    5 .bounced apache

    6. in the Applications, customized phone to add 2 columns newly created in the custom t section.

    View instance serves as my extended VO

    7. now, when I go back to the page I get error

    Not found message. Application: DNF, Message name: FND_VIEWOBJECT_NOT_FOUND.

    Chips: VONAME is XXPhoneNumbersVOEx;. APPLICATION_MODULE = oracle.apps.per.selfservice.personalinformation.server.OverviewAM;

    To me, it seems that I need to join extended VO to seeded AM (OverviewAM)

    The question is when I seeded DoubleClick on this AM I get error

    WARNING: There are errors java errors for this file object. The wuizard is open in read-only mode

    File < Path/OverviewAMImpl.java

    What could be wrong here?

    If I give the name of view seeded in 6 above, I get no error, but it does not display the values for newly added coulmns.

    Did you create the substitution on jDeveloper? Otherwise, the jpx download the news saying Oracle to use the VO scope:

    3.5 project components/properties/Business Substitutions. Select a seeded on left, extended one to the right and click Add, it should appear on the substitutions.

    Now, you can import the jpx.

    To confirm, verify the jpx, it should have a section of substitutes at the end:

    for example

    To confirm that the substitution, he was transferred to the DB, check customizations for your seeded VO, for example

    Set serveroutput on

    jdr_utils.listCustomizations exec (' / oracle/apps/ap/goose/Server/ProjectsLovVO ");

    (notice the site/customizations/0) result in the path from the seeded VO:

    / Oracle/Apps/AP/GOOSE/Server/customizations/site/0/ProjectsLovVO

  • vCloud 5.5 empty page self-service cell

    Hello

    I do demonstrations Unit 5.5. I have my laptop and everything all set up, but when I go to

    https://URL/org/company name

    Loading of the page, but there is nothing on her, she's a Virgin.

    Any idea what causes this?

    I tried http://FQDN/org/company as the name.

    Documentation of stupid.

    System settings > public address was incorrectly.

    I got it on https://fqdn/

    It should have been https://fqdn/cloud/

    After successfully putting in the self-service portal now works.

  • Look and feel of self-service pages under Oracle Applications Manager (OAM)

    Hi all

    After you have applied the patches to upgrade the module of HRMS 12.1.3 to 12.1.5, look and feel of self-service pages under Oracle Applications Manager (OAM) changed means buttons not appearing is not in good standing. and the appearance of pages are not in good standing. What happens to the self-service OAM only pages.

    Level of the current patches HRMS group: r12.hr_pf.b.delta.5
    OS: RHEL 5.3 x86_64

    No idea it please...

    Thank you inadvance.

    Kind regards
    900076.

    Please also see the following documents.

    Look and feel of Self Service Pages are screwed up after R12 Upgrade [1556590.1 ID]

    How to clear the Caches (Apache/iAS, Cabo, Modplsql, browser, Jinitiator, Java, portal, WebADI) for E-Business Suite? [742107.1 ID]

    Thank you

    Hussein

  • How to customize the pages of Self Service

    Hi all

    How to customize the pages of Self Service. Guide kindly emergency.

    Thank you
    Mr. Bilal

    You can take these steps
    ==============

    -> Profile set Customize option % Self Serv % Def % Yes at the user level (you use to customize the user).
    -> Go to the page you want to customize
    -> Page-click Customize in global top menu of the page.
    -> Click on the button Choose context and select the responsibility for which you want to customize the element (clear, all other fields such as site, organization, location, function, industry)
    -> Button click on apply. You will get the hierarichy page.
    -> Now the identity of the item, you need to customize and click Customize (pencil icon).
    -> True/false property rendered set (if you want to hide the item to false to show true set) and apply.
    Back at the request of->

    You can see more information on these links

    http://apps2fusion.com/at/43-SS/453-OAF-extension-case-study

  • Do you have a Self Service page updated person EIT as a super user?

    Hi people.

    It is seeded page free accessible service from Self Service employee and Manager Self-service for updating the person with additional information.

    Do we have such a self service page where great update/add user records in EIT person for all employees based on a security profile? From now on, I can see that interface to forms of anyone available liability HRMS Manager EIT.

    Thank you
    Lal

    Usually users use just the Forms interface.

    However, there is no reason why you can not put the SMS EIT feature on the menu of your HR professional instead. If you do this, the HR professional users would use the 'Search' box at the top of the page to find people in their security profile (rather than see a graphical hierarchy) - they can then them transact exactly the same way as would a Manager.

    I hope this helps.

  • Password self-service - number of pages-forgetPassword IOM portal.

    Our self-service portal password, we must provide the link to the page of password forgot to IOM.
    http://localhost:8080/xlWebApp/forgetPassword.do

    but it redirects to the page to disconnect.
    http://localhost:8080/xlWebApp/LogoffTimeout.do

    Is it possible to fix it?

    Hello

    forgetPassword.do requires so value of the method, just make http://localhost:8080/xlWebApp/forgetPassword.do?method=displayVerifyUserId for integration, it will redirect you to the next page for the user name.

    Kind regards
    Ankit Gupta

  • personalized self-service portal oracle Forms link

    Guru,

    I have problem with creating a link on a page of self-service (workbench for compensation for administrators).

    I wanted a link that calls a function of Oracle (custom form) forms. I created a link and gave the name of the function, and she in fact opens the form.

    But the question iam having is that when you click on the link, it shows you a blank page with the oracle applications icon and then open the form.

    I have to press the back button on the browser to see the self service page.

    I used the image target property and tried to set to _blank, _self, _parent. but whenever I see the same blank screen and I always have to press the back button on the browser to see the self service page.

    Please see the attachment for the page I mention.

    Thank you

    Garnier,

    If you look at the html code that is generated when you create a new item of type link, it creates a call to OA.jsp. Something like this:

    Click here for Cool form!

    However, when BSE opens a form it calls RF.jsp on the OA_HTML. Look for example a simultaneous requests link looks like this:

    ( http://ppcm02.Internal.VMMC.org:8058/OA_HTML/RF.jsp?function_id=90&resp_id=50957&resp_appl_id=20003&security_group_id=0&lang_code=US') ">applications"

    If you need to add a RawText element to your oa page and call RF.jsp, passing it the similar parameters as shown above (but for your particular work of course).

    Kristofer Cruz

  • Error "ORA-04065:...» "APPS. AME_UTIL' "when submiting self-service application.

    Hello

    So that the introduction of any request for self-service, the system gives this error and notification is sent to sysadmin with this error:

    =========================================================
    Error page
    Details of the exception.
    oracle.apps.fnd.framework.OAException: java.sql.SQLException: ORA-04068: current state of packets rejected
    ORA-04065: not run, altered, or removed the stored procedure 'APPS. AME_UTIL ".
    ORA-06508: PL/SQL: called program unit is not found: 'APPS. AME_UTIL ".
    ORA-06512: at the 'APPS '. AME_DYNAMIC_APPROVAL_PKG', line 509
    ORA-04065: not run, altered, or removed the stored procedure 'APPS. AME_UTIL ".
    ORA-06508: PL/SQL: called program unit is not found: 'APPS. AME_UTIL ".
    ORA-06512: at line 1

    at oracle.apps.fnd.framework.OAException.wrapperInvocationTargetException(OAException.java:996)
    at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:211)
    at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:133)
    at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:797)
    at oracle.apps.ame.dynamicapprovals.webui.ApprovalsCO.processRequest(ApprovalsCO.java:91)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:600)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processRequest(OAHeaderBean.java:391)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1182)
    at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
    at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2607)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1940)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
    in OA. jspService(_OA.java:212)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
    in com.evermind.server.http.ServletRequestDispatcher.access$ 100 (ServletRequestDispatcher.java:51)
    to com.evermind.server.http.ServletRequestDispatcher$ 2.oc4jRun(ServletRequestDispatcher.java:193)
    at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
    at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
    at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
    in OA. jspService(_OA.java:221)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    to oracle.oc4j.network.ServerSocketReadHandler$ SafeRunnable.run (ServerSocketReadHandler.java:260)
    to com.evermind.util.ReleasableResourcePooledExecutor$ MyWorker.run (ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    # # 0 in detail
    java.sql.SQLException: ORA-04068: current state of packets rejected
    ORA-04065: not run, altered, or removed the stored procedure 'APPS. AME_UTIL ".
    ORA-06508: PL/SQL: called program unit is not found: 'APPS. AME_UTIL ".
    ORA-06512: at the 'APPS '. AME_DYNAMIC_APPROVAL_PKG', line 509
    ORA-04065: not run, altered, or removed the stored procedure 'APPS. AME_UTIL ".
    ORA-06508: PL/SQL: called program unit is not found: 'APPS. AME_UTIL ".
    ORA-06512: at line 1

    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:439)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:395)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:802)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:436)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:186)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:521)
    at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:202)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1005)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1307)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3449)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3550)
    at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4710)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1374)
    at oracle.apps.ame.dynamicapprovals.server.ApprovalsAMImpl.getApprovers(ApprovalsAMImpl.java:573)
    at oracle.apps.ame.dynamicapprovals.server.ApprovalsAMImpl.queryApprovers(ApprovalsAMImpl.java:739)
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:190)
    at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:133)
    at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:797)
    at oracle.apps.ame.dynamicapprovals.webui.ApprovalsCO.processRequest(ApprovalsCO.java:91)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:600)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processRequest(OAHeaderBean.java:391)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1182)
    at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
    at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2607)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1940)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
    in OA. jspService(_OA.java:212)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
    in com.evermind.server.http.ServletRequestDispatcher.access$ 100 (ServletRequestDispatcher.java:51)
    to com.evermind.server.http.ServletRequestDispatcher$ 2.oc4jRun(ServletRequestDispatcher.java:193)
    at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
    at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
    at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
    in OA. jspService(_OA.java:221)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    to oracle.oc4j.network.ServerSocketReadHandler$ SafeRunnable.run (ServerSocketReadHandler.java:260)
    to com.evermind.util.ReleasableResourcePooledExecutor$ MyWorker.run (ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    java.sql.SQLException: ORA-04068: current state of packets rejected
    ORA-04065: not run, altered, or removed the stored procedure 'APPS. AME_UTIL ".
    ORA-06508: PL/SQL: called program unit is not found: 'APPS. AME_UTIL ".
    ORA-06512: at the 'APPS '. AME_DYNAMIC_APPROVAL_PKG', line 509
    ORA-04065: not run, altered, or removed the stored procedure 'APPS. AME_UTIL ".
    ORA-06508: PL/SQL: called program unit is not found: 'APPS. AME_UTIL ".
    ORA-06512: at line 1

    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:439)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:395)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:802)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:436)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:186)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:521)
    at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:202)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1005)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1307)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3449)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3550)
    at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4710)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1374)
    at oracle.apps.ame.dynamicapprovals.server.ApprovalsAMImpl.getApprovers(ApprovalsAMImpl.java:573)
    at oracle.apps.ame.dynamicapprovals.server.ApprovalsAMImpl.queryApprovers(ApprovalsAMImpl.java:739)
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:190)
    at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:133)
    at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:797)
    at oracle.apps.ame.dynamicapprovals.webui.ApprovalsCO.processRequest(ApprovalsCO.java:91)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:600)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processRequest(OAHeaderBean.java:391)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1182)
    at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
    at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2607)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1940)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
    in OA. jspService(_OA.java:212)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
    in com.evermind.server.http.ServletRequestDispatcher.access$ 100 (ServletRequestDispatcher.java:51)
    to com.evermind.server.http.ServletRequestDispatcher$ 2.oc4jRun(ServletRequestDispatcher.java:193)
    at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
    at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
    at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
    in OA. jspService(_OA.java:221)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    to oracle.oc4j.network.ServerSocketReadHandler$ SafeRunnable.run (ServerSocketReadHandler.java:260)
    to com.evermind.util.ReleasableResourcePooledExecutor$ MyWorker.run (ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    =====================================================

    1 behavior happens to every free service (standard and custom) request.
    2. Since our configuration of SOUL self-service application use in its trust hierarchy, we test approval groups using direct transaction test case by "The responsibility of the analyst approval management system" and providing the current Transaction ID, the test result was valid and we could retrieve the string for the necessary approvals.
    3. after getting this error the transaction stored in the hr_API_transactions table status 'W' 'works under process ".
    4. State of the AME_UTIL and AME_DYNAMIC_APPROVAL_PKG packages is valid.

    Thank you
    Mohammed.

    HI Mohammed,.

    906610 wrote:
    A big thank you "AppsMasti" and Hussein. Problem is solved by implementing the fix of note ID 1163757.1

    Thank you
    Mohammed.

    Thanks for the update

    ;) AppsMAsti ;)
    Sharing is caring

  • Update of personal information through employee self-service

    Hi all

    I hope you guys can help me with this problem that that a user is confronted.

    The user has updated their privacy - they entered an entry into force with regard to while the changes would be effective.

    The user has spotted while they misspelled his last name and you want to update their name again. However, when they're going to update their personal information, there is no option which is given to the user to allow them to make changes to the entry into force they have registered. Instead, the system gives them the ability to view the changes to come.
    I understand that the user cannot use the "correct personal info" option because it won't that make change their current information.

    Is it possible, that the user can update their personal information through employee self-service? Or did once they have updated their information they must wait for this entry into force, until they can make other changes?

    I hope that all makes sense.

    Any help would be appreciated.

    Kind regards

    SOF

    I guess that's a standard feature of oracle self-service.
    Future changes should be removed first, and that cannot be done through employee self service, or through Manager self-service.

    However customization can be made to the page such as adding a new button that will take care of your condition.

    Thank you.

  • self-service sessions are very slow, runnig

    Hi team,

    In our environment seflservice sessions run very slowly, while sessions forms are working well.

    Please suggest any configuration changes must be made at the level of database or application eihter.

    early response is greately appreciated.

    Thank you
    Ngoma Rao K

    It worked before, and recently, we have upgraded to HRMS ORS 6, ATG and cumulative 7, and we have updated all modules (packs of family).

    Have you applied the fixes in these docs?

    Experienced problems on top of Patch 10015566 - 11i.HR_PF. K.Delta.6 (11i HRMS ORS 6) [ID 1299408.1]
    Known issues on top of 11i. ATG_PF. H.Delta.7 (RUP7) - 6241631 [858801.1 ID]

    Please suggest and at the same time I am followed some of my sessions.

    Please check the JVM tuning docs (first link referenced above) since the issue with self-service pages only.

    Thank you
    Hussein

Maybe you are looking for

  • Help me find my lost iPhone

    I left my phone somewhere and I want to find, use find it my iPhone app. But Apple has blocked my ID. I tried to unlock it. There were 2 options. The first is by email, but I don't really understand, if they locked my id, so how I suppose to receive

  • Need new charger for my Satellite C660D-16th

    My laptop is a Satellite C660D-16th and the charger, I want to buy is a MMDTOSHIBA704. Says 19V 3. 42 a, 65W. What is a good charger?The polarity would be okay and everything?

  • 1102w: P1102w won't work on WiFi now: USB ONLY!

    I have a P1102w that allows to work before Windows 10. Now it does that on the USB connection, I updated the software and it seems that the wireless, or WiFi, will not work because of security concerns "not reliable." Please advise if a solutioln is

  • Xperia Z2 Chrome "Unfortunately Chrome has stopped"

    I'm having a problem with the application of Chrome on my phone. When I try to access internet, I do the following. 1. open 'Google '. 2-type in all that 3 - Select chrome. Everything works until I have select chrome. The window suddenly closes then

  • Ntuser and desktop.ini files

    can someone help me what this ntuser.dat? There were many ntuser.dat inside my documents and I can't delete because he says that it is open and the use by the other program. and there was also a lot of desktop.ini files save in documents, inside most