Error in MSS Internal Service request

I install MSS 60.1.5 under EP 60 sp10. All iviews under My budget (internal service request) are not working now, such as "change internal order request", "change project" and so on. After clicking the "submit" button, the error shows "<b>An error occurred whilst processing the notification</b>".
I will really appreciate your suggestions.
Dong
Message was edited by: li dong
Message was edited by: li dong

Hi Datti,
Thanks for your reply. Your advice let me concentrate on the basis part of back-end system.
The back-end system can't find message server service.
Dong

Similar Messages

  • Getting Error While Triggered the Internal Service Request Process Accelerator

    Hi
    I installed Oracle Process Accelerators(Internal Service Request and Employee On Boarding) PS6 in windows7.Installation was successful and I checked the installpa.log file there its showing "Build Successful"  and then we assign the roles in BPM workspace and also put the security relams in in enterprise manager as per installation Document provided by the Oracle after that everything was fine to test the Internal Service Request(ISR) I triggered few instances but they terminated abruptly and giving these Errors in EnterpriseManager(EM)
    while triggered ISR Error message that was shown in EM is
    Non Recoverable Business Fault :
    <bpelFault><faultType>1</faultType><operationErroredFault xmlns="http://xmlns.oracle.com/bpel/workflow/taskService"><part name="payload"><operationErroredFault xmlns="http://xmlns.oracle.com/bpel/workflow/taskService"><faultInfo>ORABPEL-30082 WorkflowServiceEngine request to another component failed. Request operation CallFunctionStateless from default/InternalServiceRequest!1.0/ManagerApproveRequest to ManagerApproveRequestRules_ManagementChainRuleSet failed with Business Fault: null. Check the underlying fault. Check target SOA component for cause. </faultInfo></operationErroredFault></part></operationErroredFault></bpelFault>
    Non Recoverable Business Fault :
    Attempted to access property 'id' in class 'oracle.bpel.services.identity.hierarchy.HierarchyPrincipal' with a null object reference. at line 292 column 34 in /Ruleset(ManagerApproveRequestRulesBase)/Function(CreateSupervisoryList)/Action[11]
    if anybody who did this ever and facing the same issue can you please let me know as early as possible
    Thanks and Regards
    Rajesh.

    Hi Phani,
    Are you able to reproduce issue as below:
    1. Login to Application as sysadmin.
    2. Navigate to Intergrated SOA Gateway > Integration Repository.
    3. Click on search on right hand side of the page.
    4. In the Internal Name type "FND_USER_PKG" and click Go.
    5. Click on the User link.
    6. Under the "Web Service - SOA Provider", click in the "View WSDL". Copy the complete URL "http://test:8003/webservices/SOAProvider/plsql/fnd_user_pkg/?wsdl"
    7. Open the soapUI.
    8. Click File > new soapUI Project.
    9. Test the web service.
    If yes,
    I think you might be need to execute a patch:
    solution:
    To implement the solution, please execute the following steps:
    1. Download and review the readme and pre-requisites for iAS Patch 18855074.
    Note: Above Merge Label Request (MLR) is build for EBS 12.1.3 having OC4J 10.1.3.5.
    2. Enable the profile option "EBS Adapter for BPEL, Function Security Enabled".
    a. Login as SYSADMIN user and Navigate to System >Profile  and Search for "EBS Adapter for BPEL, Function Security Enabled" (Internal name :EBS_ADAPTER_FUNCTION_SEC_ENABLED)
    b. Set the Value to 'Y' at SITE level . This means  function security feature is enabled and all API calls for PL/SQL APIs, Oracle e-Commerce Gateway, and concurrent programs will be checked for user security before they are invoked.
    3. Retest the issue by Generating and Deploying the required package.
    4. Migrate the solution as appropriate to other environments.
    Thanks
    Ranjan

  • Error message:500 internal service error

    I am working on jsp in jdeveloper (10.1.3) on windows xp professional.
    I create emp.jsp and run it. i have an error message. I guess it is related with jsp:UseBean. jsp:UseBean can not call the class(database connection).
    would you help me?
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"
             import="java.sql.ResultSet"%>
    <html>
      <head>
        <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"/>
        <title>employees</title>
        <link href="css/jdeveloper.css" rel="stylesheet" media="screen"/>
      </head>
      <body><h2 align="center">
          Employees
        </h2><h3>
          Find Employee
        </h3><p>
          <jsp:useBean id="empsbean" class="hr.DataHandler" scope="session"/>
        </p><p>
        </p><form action="employees.jsp">
          <p>
            <span class="bold">
              Filter by Employee name:
            </span><input type="text" name="query" align="middle"/><input type="submit"
                                                                          value="Filter"/>
          </p>
          <blockquote>
            <blockquote>
              <blockquote>
              </blockquote>
            </blockquote>
          </blockquote>
        </form><p>
        </p><p>
          <%ResultSet rset;
    String query = request.getParameter("query");
    if (query != null && query != null)
      rset = empsbean.getEmployeesByName(query);
    else
      rset = empsbean.getAllEmployees();
    %>
        </p><table cellspacing="2" cellpadding="3" border="1" width="100%">
          <tr>
            <td>
              <h4>
                Number1
              </h4></td>
            <td>
              <h4>
                Name
              </h4></td>
            <td>
              <h4>
                Password
              </h4></td>
            <td>
              <h4>
                Email
              </h4></td>
            <td>
              <h4>
                Subject
              </h4></td>
            <td>
              <h4>
                Memo
              </h4></td>
          </tr>
          <%while (rset.next ())
        out.println("<tr>");
        out.println("<td>" +
          rset.getString("number1") + "</td><td> " +
          rset.getString("name") + "</td><td> " +
          rset.getString("password") + "</td><td> " +
          rset.getString("email") + "</td><td>" +
          rset.getString("subject") + "</td><td>" +
          rset.getDouble("memo") + "</td>");
        out.println("</tr>");
    %>
        </table></body>
    </html>If I run above jsp page in jdeveloper, i have the following error message
    500 Internal Server Error
    java.sql.SQLException: Fail to convert to internal representation     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:175)     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:240)     at oracle.sql.CHAR.doubleValue(CHAR.java:496)     at oracle.jdbc.driver.ScrollableResultSet.getDouble(ScrollableResultSet.java:593)     at oracle.jdbc.driver.OracleResultSet.getDouble(OracleResultSet.java:1654)     at test2.jspService(_test2.java:56)     [test2.jsp]     at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.4.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)     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[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)     at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)     at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)     at java.lang.Thread.run(Thread.java:595)
    Message was edited by:
    Wen

    sorry, it's my typo in data type.
    thanks

  • Error while creating a service request in WCEM E Service

    Hello Experts,
    We are getting below error while trying to a service request in WCEM E service.
    We are able to select the product from the catalog but when we click continue , but we are getting the below error
    Cannot process an HTTP request to servlet [Faces Servlet] in [main] web application.
    [EXCEPTION]
    com.sap.wec.tc.core.ui.processflow.WCFProcessFlowRuntimeException: Error while resolving ''EVALUATE'' operation for process flow servicerequest:serviceRequestCreationProcess, process step 1, source expression #{processFlowViewHandler.createServiceRequestUpdateProduct}, and target expression ; java.lang.NullPointerException: while trying to invoke the method com.sap.wec.tc.core.backend.genil.GenilDataContainer.getFirstChild(java.lang.String) of a null object loaded from local variable 'btServiceItemsAll'
    at com.sap.wec.tc.core.ui.processflow.ProcessFlowExceptionUtil.traceRuntimeException(ProcessFlowExceptionUtil.java:66)
    at com.sap.wec.tc.core.ui.processflow.ProcessFlowExceptionUtil.logAndRaiseRunTimeException(ProcessFlowExceptionUtil.java:108)
    at com.sap.wec.tc.core.ui.processflow.runtime.ProcessFlowOperationEvaluate.runtimeError(ProcessFlowOperationEvaluate.java:83)
    at com.sap.wec.tc.core.ui.processflow.runtime.ProcessFlowOperationEvaluate.execute(ProcessFlowOperationEvaluate.java:44)
    at com.sap.wec.tc.core.ui.processflow.runtime.ProcessStepTransition.executePreTransitionOperations(ProcessStepTransition.java:83)
    at com.sap.wec.tc.core.ui.processflow.runtime.ProcessStepTransition.execute(ProcessStepTransition.java:46)
    at com.sap.wec.tc.core.ui.processflow.runtime.TransitionableProcessStep.triggerTransition(TransitionableProcessStep.java:49)
    at com.sap.wec.tc.core.ui.processflow.runtime.ProcessFlowBase.consumeInput(ProcessFlowBase.java:148)
    at com.sap.wec.tc.core.ui.processflow.runtime.UIProcessFlowController.next(UIProcessFlowController.java:248)
    at com.sap.wcf.beans.uiprocessflow.ProcessFlowButtonsVCHandler.next(ProcessFlowButtonsVCHandler.java:65)
    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.sun.el.parser.AstValue.invoke(AstValue.java:187)
    at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:297)
    at org.apache.myfaces.view.facelets.el.ContextAwareTagMethodExpression.invoke(ContextAwareTagMethodExpression.java:96)
    at org.apache.myfaces.view.facelets.el.LocationMethodExpression.invoke(LocationMethodExpression.java:116)
    at org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:68)
    at javax.faces.component.UICommand.broadcast(UICommand.java:120)
    at com.sap.wec.tc.core.runtime.jsf.vc.ViewComponent.broadcast(ViewComponent.java:108)
    at com.sap.wec.tc.core.runtime.jsf.vc.ViewComponent.broadcast(ViewComponent.java:108)
    at com.sap.wec.tc.core.runtime.jsf.vc.ViewComponent.broadcast(ViewComponent.java:108)
    at com.sap.wec.tc.core.runtime.jsf.vc.ViewComponent.broadcast(ViewComponent.java:108)
    at javax.faces.component.UIViewRoot._broadcastAll(UIViewRoot.java:1028)
    at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:286)
    at javax.faces.component.UIViewRoot._process(UIViewRoot.java:1375)
    at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:752)
    at org.apache.myfaces.lifecycle.InvokeApplicationExecutor.execute(InvokeApplicationExecutor.java:38)
    at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.java:170)
    at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:117)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.runServlet(FilterChainImpl.java:202)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:103)
    at com.sap.wec.tc.core.filter.RequestSequencerFilter.synchronizeRequest(RequestSequencerFilter.java:134)
    at com.sap.wec.tc.core.filter.RequestSequencerFilter.doFilter(RequestSequencerFilter.java:111)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:79)
    at com.sap.wec.tc.core.filter.HighContrastFilter.doFilter(HighContrastFilter.java:91)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:79)
    at com.sap.wec.tc.core.filter.SecurityFilter.doFilter(SecurityFilter.java:194)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:79)
    at com.sap.wec.tc.core.filter.XSRFTokenEvaluationFilter.doFilter(XSRFTokenEvaluationFilter.java:126)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:79)
    at com.sap.wec.tc.core.uicomponents.renderer.util.MultipartFilter.doFilter(MultipartFilter.java:74)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:79)
    at com.sap.wec.tc.core.filter.FastSessionTimeoutFilter.doFilter(FastSessionTimeoutFilter.java:115)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:79)
    at com.sap.wec.tc.core.filter.SessionInitialisationFilterBase.doFilter(SessionInitialisationFilterBase.java:152)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:79)
    at com.sap.wec.tc.core.filter.HttpsSwitchFilter.doFilter(HttpsSwitchFilter.java:141)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:79)
    at com.sap.wec.tc.core.filter.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java:56)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:79)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:432)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:210)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:441)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:430)
    at com.sap.engine.services.servlets_jsp.filters.DSRWebContainerFilter.process(DSRWebContainerFilter.java:38)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:81)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:278)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:81)
    at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)
    at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.SessionSizeFilter.process(SessionSizeFilter.java:26)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.MemoryStatisticFilter.process(MemoryStatisticFilter.java:57)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.DSRHttpFilter.process(DSRHttpFilter.java:43)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:475)
    at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.process(Processor.java:269)
    at com.sap.engine.services.httpserver.server.rcm.RequestProcessorThread.run(RequestProcessorThread.java:56)
    at com.sap.engine.core.thread.execution.Executable.run(Executable.java:122)
    at com.sap.engine.core.thread.execution.Executable.run(Executable.java:101)
    at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:328)
    Caused by: javax.el.ELException: java.lang.NullPointerException: while trying to invoke the method com.sap.wec.tc.core.backend.genil.GenilDataContainer.getFirstChild(java.lang.String) of a null object loaded from local variable 'btServiceItemsAll'
    at com.sun.el.parser.AstValue.invoke(AstValue.java:191)
    at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:297)
    at com.sap.wec.tc.core.ui.processflow.runtime.ProcessFlowOperation.resolve(ProcessFlowOperation.java:46)
    at com.sap.wec.tc.core.ui.processflow.runtime.ProcessFlowOperationEvaluate.execute(ProcessFlowOperationEvaluate.java:32)
    ... 86 more
    Caused by: java.lang.NullPointerException: while trying to invoke the method com.sap.wec.tc.core.backend.genil.GenilDataContainer.getFirstChild(java.lang.String) of a null object loaded from local variable 'btServiceItemsAll'
    at com.sap.wec.app.eservice.module.servicerequest.backend.crm.ServiceRequestCRM.setNewSRRefObjectData(ServiceRequestCRM.java:2343)
    at com.sap.wec.app.eservice.module.servicerequest.backend.crm.ServiceRequestCRM.createServiceRequestUpdateProduct(ServiceRequestCRM.java:615)
    at com.sap.wec.app.eservice.module.servicerequest.businessobject.impl.ServiceRequestImpl.createServiceRequestUpdateProduct(ServiceRequestImpl.java:260)
    at com.sap.wec.app.eservice.module.servicerequest.ui.handler.impl.ProcessFlowViewHandlerImpl.createServiceRequestUpdateProduct(ProcessFlowViewHandlerImpl.java:405)
    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.sun.el.parser.AstValue.invoke(AstValue.java:187)
    ... 89 more

    Hi All,
    I found the solution, the problem was that i didn't have the last SP of WCEM 3.0.
    I have an another question for you guys:
    Is it possible to customize(rename the fields) the workcenter/menu on the WCEM?
    Thanks a lot for your help
    Anass

  • Error during creation of service request in SAP CRM 7.0

    Hi,
    I am getting the error " error occured in system DQ1290 during account assignment" when I try to save the Service request.
    Actually DQ1290 is our ECC QA sustem and Iam getting this error when I try to save the service request in CRM QA system.
    Can anyone suggest the reason for this.
    Regards
    A.Sureshbabu.

    Hi,
    I am getting the error " error occured in system DQ1290 during account assignment" when I try to save the Service request.
    Actually DQ1290 is our ECC QA sustem and Iam getting this error when I try to save the service request in CRM QA system.
    Can anyone suggest the reason for this.
    Regards
    A.Sureshbabu.

  • Error while requestin for Service Request iview in ERP Common Role.

    Hi,
        I had assigned ERP Common role to a HR user and am trying to access pdf form from Service Request iview( I had done the configuration of Adobe in my portal).But i'am getting this error
    "<b>The initial exception that caused the request to fail, was:
       com.sap.tc.webdynpro.services.exceptions.PDFDocumentCreationException: ../../sap.com/pcui_gpisr/IsrForm/wd_key10_1195809801368/Error+PDF.pdf?sap-wd-download=1&sap-wd-dl_behaviour=1&sap-wd-cltwndid=WID1195809793448&sap-ext-sid=ysgHJHKWgBk%2FD7vUfMJLfw%3D%3DrN%2FM35pdXDmoXpjL4oeIJA%3D%3D%2Fpcd%3Aportal_content%2Fcom.sap.pct%2Fevery_user%2Fcom.sap.pct.erp.common.bp_folder%2Fcom.sap.pct.erp.common.iviews%2Fsap.com%2Fpcui_gp%7Eisr%2FIsrForm%2Fbase&sap-wd-norefresh=X&sap-ep-version=7.00.200610261628
        at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:383)
        at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.afterApplicationModification(ClientApplication.java:1132)
        at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.afterApplicationModification(ClientComponent.java:887)
        at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doRespond(WindowPhaseModel.java:573)
        at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:152)</b>"
    anybody please help me in this issue.
    with regards
    Pradeep.B

    hi,
    There is a similar thread (http://stackoverflow.com/a/17572316 ), I recommend you could refer to it.
    And I'd like to know how to set the expiry time in your code, and you could see this page (http://azure.microsoft.com/en-us/documentation/articles/storage-dotnet-shared-access-signature-part-1/
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • SC error while creating a service request

    Hi experts,
    I am on SRM 7 , ECS . I am trying to create a service request in the shopping cart through SC full functionality/operational purchaser.
    I am getting the  error when i clcik on the  "supplier/service agents"
    SRDBIQCI02
    http://srdbiqci02.ssw.local:8010/sap/bc/webdynpro/sapsrm/wda_l_fpm_oif/
    UNCAUGHT_EXCEPTION
    Called method not supported by current PDO instance
    Method: /SAPSRM/IF_PDO_BO_SC~PRODUCT_CONV_INT of program /SAPSRM/CL_CLL_SER_PDO========CP
    Method: /SAPSRM/IF_CLL_MAPPER~REFRESH of program /SAPSRM/CL_CH_WD_DODM_SC_I_SOSCP
    Method: WDDOINIT of program /1BCWDY/T2R7E4WKA5D7C8DML3PR==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_DO_INIT of program /1BCWDY/T2R7E4WKA5D7C8DML3PR==CP
    Method: DO_INIT of program CL_WDR_DELEGATING_VIEW========CP
    Method: INIT_CONTROLLER of program CL_WDR_CONTROLLER=============CP
    Method: INIT_CONTROLLER of program CL_WDR_VIEW===================CP
    Method: INIT of program CL_WDR_CONTROLLER=============CP
    Method: GET_VIEW of program CL_WDR_VIEW_MANAGER===========CP
    Method: BIND_ROOT of program CL_WDR_VIEW_MANAGER===========CP
    http://srdbiqci02.ssw.local:8010/sap/bc/webdynpro/sapsrm/wda_l_fpm_oif/
    Rgds
    Sumendra

    Hi Sumendra,
    I have the same issue. Did you solve it?
    BR,
    Ivá

  • Ovi error: A critical internal service has failed?

    For the past few days I have tried installing some applications from the Ovi store but I always get the same error message (in Norwegian): “En kritisk intern tjeneste har mislyktes” (A critical internal service has failed).
    Why is this happening and what can be done to fix it? I have the Nokia X6, 16 GB, with firmware v 20.0.005.  The message appears shortly after entering the ovi store on my phone. It used to work just fine..

    I'm experiencing the same problems following upgrading my firmware to 50.0.005 on my 5800. Two main issues:
    • browser exits when I press 'options' 
    • ovi store crashes with message 'a critical internal service has failed'.
    So far I have reinstalled the firmware twice but no improvement. Then I uninstalled all ovi store related software. When I attempt to reinstall by manually downloading the ovi store software from the ovi store my browser exits again!
    Anyone else have any bright ideas how to solve this? I hope I don't end up waiting for months for the next firmware upgrade to solve these issues.
    PS I have not yet performed a hard reset, but from various online forums I get the impression this doesn't help anyway.
    Thanks!

  • Access is denied.. Error when creating Internet service request

    Hi all,
    I have created an internet service request for the employee to create his bank details ( which have to be routed to HR administrator ).
    I have created a scenario named ZBD and assigned by self as the processr and created an ITS service by the name Zbank.
    i log on to its for the service QISR. I Select my custom scenario, but when i select my custom scenario it gives me a java script error "access denied".
    When i try ot execute the transaction QISR from webgui i get the error
    "access is denied" and also another message saying "Enter the address of your ITS Web server"
    I found a couple of mesasges but none helped me get over this issue
    please help

    resolved

  • Error in MSS-Create Requisition Request, form ISR_MSSRCF_SRQ3

    Hi,
    We are trying to configure MSS app, create requisition request using standard adobe form ISR_MSSRCF_SRQ3.
    We have configured standard HCM process HR_MSSRCF_REQUISITION for it. When entering all
    the mandatory fields in the form and  clicking on 'check and send' , it displays an error
    "you must enter a requisition title'
    although we have already entered req. title in the field.
    Anyone faced this issue before?
    Please provide your inputs...
    regards,
    Smit

    Hello smit ,
              You can find out the enhancement ( BADI defnition  ) that corresponds to MSS Requisition request .
    Debugging the same will let you know why the error is coming .
                            You could also be due to config done under MSS -> recruitment.
    hope this helps.
    thanks,sahiba

  • Error while executing the service request : : Login to Mail Service failed

    I am getting the following error in Convergence while attempting to authenticate against the mail service. I am able to access the backend mail service directly from a mail client with the same account without any issue.
    Looking at the log file info:
    ==> iwc.log <==
    AUTH: WARN from com.sun.comms.client.protocol.delegate.agent.LoginContextAgent Thread httpSSLWorkerThread-8080-0 at 2009-03-10 04:33:21,744 - Subject not found in session, creating one
    AUTH: INFO from com.sun.comms.client.security.auth.modules.impl.SunAuthCallBack Thread httpSSLWorkerThread-8080-0 at 2009-03-10 04:33:21,745 - User LoginID is [email protected]
    AUTH: INFO from com.sun.comms.client.security.auth.modules.impl.SunAuthCallBack Thread httpSSLWorkerThread-8080-0 at 2009-03-10 04:33:21,745 - User domain is mydomain.com
    AUTH: INFO from com.sun.comms.client.security.auth.modules.impl.SunLDAPLoginModule Thread httpSSLWorkerThread-8080-0 at 2009-03-10 04:33:21,746 - Loaded UG LDAP pool...
    AUTH: INFO from com.sun.comms.client.security.auth.modules.impl.SunLDAPLoginModule Thread httpSSLWorkerThread-8080-0 at 2009-03-10 04:33:21,750 - SunLDAPLoginModule:User [email protected] Authenticated
    AUTH: INFO from com.sun.comms.client.security.auth.CommsUserInitContext Thread httpSSLWorkerThread-8080-0 at 2009-03-10 04:33:21,752 - Loading user entry from LDAP
    AUTH: INFO from com.sun.comms.client.security.auth.CommsUserInitContext Thread httpSSLWorkerThread-8080-0 at 2009-03-10 04:33:21,754 - User entry loaded successfully
    PROTOCOL: INFO from com.sun.comms.client.entity.user.sun.CommsUser Thread httpSSLWorkerThread-8080-0 at 2009-03-10 04:33:21,757 - IM Service is not enabled for user: sunImUser object class is not present
    AUTH: INFO from com.sun.comms.client.web.IwcCookieManager Thread httpSSLWorkerThread-8080-0 at 2009-03-10 04:33:21,758 - Preferred language for user is en
    PROTOCOL: WARN from com.sun.comms.client.protocol.delegate.UserPrefsCommandDelegate Thread httpSSLWorkerThread-8080-2 at 2009-03-10 04:33:22,404 - get_allprefs.iwc : Service is not enabled : im
    PROTOCOL: INFO from com.sun.comms.client.entity.user.sun.CommsUser Thread httpSSLWorkerThread-8080-2 at 2009-03-10 04:33:22,405 - SMIME Service is not enabled for server
    PROTOCOL: WARN from com.sun.comms.client.protocol.delegate.UserPrefsCommandDelegate Thread httpSSLWorkerThread-8080-2 at 2009-03-10 04:33:22,406 - get_allprefs.iwc : Service is not enabled : smime
    PROTOCOL: WARN from com.sun.comms.client.protocol.delegate.agent.ClientOptionsAgent Thread httpSSLWorkerThread-8080-2 at 2009-03-10 04:33:22,407 - client preferences not found for domain: mydomain.com
    PROTOCOL: INFO from com.sun.comms.client.entity.user.sun.CommsUser Thread httpSSLWorkerThread-8080-2 at 2009-03-10 04:33:22,418 - Client customization service is disbaled for the deployment
    ADDRESS_BOOK: INFO from com.sun.comms.client.ab.coresrv.DBHandler Thread httpSSLWorkerThread-8080-1 at 2009-03-10 04:33:23,131 - Got DBPluginMap
    PROXY_MAIL: INFO from com.sun.comms.client.web.services.sun.MailServiceProxy Thread httpSSLWorkerThread-8080-0 at 2009-03-10 04:33:23,139 - Performing Sun Mail Authentication
    ==> ../../messaging/log/http <==
    [10/Mar/2009:04:33:23 -0400] fe-msg httpd[17512]: Account Information: connect [10.10.10.229:40786]
    [10/Mar/2009:04:33:23 -0400] fe-msg httpd[17512]: General Information: [10.10.10.229:40786] POST /login.msc HTTP/1.1
    [10/Mar/2009:04:33:23 -0400] fe-msg httpd[17512]: Account Notice: badlogin: [10.10.10.229:40786] proxy admin [email protected] domain=us.mydomain.com: user not found
    ==> iwc.log <==
    PROXY_MAIL: ERROR from com.sun.comms.client.web.services.sun.MailServiceProxy Thread httpSSLWorkerThread-8080-0 at 2009-03-10 04:33:25,160 - cookies not present from MS response
    ==> ../../messaging/log/http <==
    [10/Mar/2009:04:33:25 -0400] fe-msg httpd[17512]: Account Notice: close [10.10.10.229:40786] [unauthenticated] 2009/3/10 4:33:23 0:00:02 248 0 0
    It appears that the authentication mechanism is trying to authenticate against the domain "us.mydomain.com" rather than "mydomain.com". At one point I added "us.mydomain.com" as an alias to the domain "mydomain.com" but it has since been removed. I am unsure where Convergence is pulling this information from. Any advice would be appreciated.

    highamjd1 wrote:
    [10/Mar/2009:04:33:23 -0400] fe-msg httpd[17512]: Account Information: connect [10.10.10.229:40786]
    [10/Mar/2009:04:33:23 -0400] fe-msg httpd[17512]: General Information: [10.10.10.229:40786] POST /login.msc HTTP/1.1
    [10/Mar/2009:04:33:23 -0400] fe-msg httpd[17512]: Account Notice: badlogin: [10.10.10.229:40786] proxy admin [email protected] domain=us.mydomain.com: user not found
    It appears that the authentication mechanism is trying to authenticate against the domain "us.mydomain.com" rather than "mydomain.com". At one point I added "us.mydomain.com" as an alias to the domain "mydomain.com" but it has since been removed. I am unsure where Convergence is pulling this information from. Convergence determines the default domain from the URL that you used to connect e.g. if you used "http://myserver.us.mydomain.com/iwc" it sets the default domain to "us.mydomain.com"
    http://wikis.sun.com/display/CommSuite/Sun+Convergence+Administrative+Tasks#SunConvergenceAdministrativeTasks-HowdoIcustomizetheLoginpagebasedonthedomainnameintheURLtoaccesstheConvergenceclient%3F
    Rather then use the default domain for the proxy administrator, you can hard-code the domain e.g.
    ./iwcadmin -w <password> -o mail.proxyadminid -v [email protected]
    ./iwcadmin -w <password> -o cal.proxyadminid -v [email protected] need to restart the application-server domain hosting Convergence for the changes to become active.
    Regards,
    Shane.

  • HCM Process and Forms(HCM P&F) vs Internal Service Request(ISR PCR)

    Dear Experts.
    I am new with Personnel Change Request(PCR) in the portal Self-Service.
    I know that the new technology used for SAP ERP 6.0 is with HCM P&F.
    ISR is used for Realease 4.7(EP 5.0/EP 6.0).
    My question is:
    What requirements need a company for implement the PCR and HCM P&F?
    Where I do the configuration for the PCR and HCM P&F in theCustomizing or T.Code?
    Anyone know a book about the creation of HCM P&F ?
    Thanks in advance
    Regards
    Carmen Guerrero

    Hi Carmen ,
    Please refer this thread :
    [Re: HCM Processes and Forms Fundamentals]
    Hope this helps.
    Regards,
    Aravind.P

  • Internal service request only supported when object exists

    Hi SDN,
    I am working on Work Environment in ESS. I am getting following exception when click on Request Repair, Request Change and Report Loss buttons.
    How to resolve this. Please provide me solution.
    regards,
    Sree.

    Hello Siddharth and Lukas,
    I have been facing this same issue for a while now and I tried it using content admin and using a user with sap_all and sap_new profiles, but, still the same issue persists.
    Do you think this could be a business issue? And if yes, how can it be fixed? Where do I start?
    And no trace of the error on NWA or st22. Your help is appreciated.
    Regards,
    Motaz

  • Internal Service Request (ISR) using BSP entry

    Hi all,
    Has anyone implemented an ISR using entry via BSP? We were looking at using Adobe interactive forms for entry but there may be some security issues around enabling activeX so are looking at BSP as an alternative if adobe turns out unviable.
    SAP provides an example ISR BSP - ISR_DEMO1, which is a BSP solution for scenario SH01. I’ve copied SH01 to our own scenario and changed the input type in web to be BSP using application ISR_DEMO1.
    I attempted to test the BSP via our portal by setting up a BSP iview for ISR_DEMO1 and passed – SENARIO=<scenario name>&MODE=CREATE as the application parameters and start_exit as the start page.
    The start_exit page loads but the next page (page1) fails with the error text - Model ISR_<scenario name> is not available
    From the ABAP workbench, I can force page1 to display by using debug to set md_scenario and md_mode in page1’s initialization – so I assume I’m calling/testing the scenario incorrectly.
    Is there additional configuration required to get the scenario running? Am I testing it via the correct method? or if not, how do I test the result?
    I’m new to the ISR framework so am a bit in the dark and have had no joy find any ISR documentation for using BSP entry.
    We were hoping to use ISR_DEMO1 as a template for any custom BSP’s (as recommended by SAP in their ISR cookbook).
    Any assistance would be greatly appreciated.
    Cheers,
    Brad

    I also got this BSP up and running, but have run into a slight problem.
    JSP PCR use the isrdispatcher.  I have looked at this application and figured out that it calls a few RFCs before it opens up the jsp page.
    Most importantly it pulls a parameter from the request called WF_ID ( Work item id).  It uses WF_ID as a key to derive additional information about the UWL item.  Important information like:
    Notification ID
    Scenario
    Mode
    etc...
    When it opens up the jsp it sends these parameters to the jsp so the form can be set up correctly.  (if you have worked with a jsp form you would no what I am talking about).
    Here is the problem.  The application isrdispatcher will only work for JSPs.  It was not built to handle BSP applications (as far as I can tell).  If you are interested in knowing why take a look at function ISR_PORTALCOMP_FOR_NOTIFIDNO_GET.   
    Does anyone know the name of the iview to call when a BSP is called from a UWL item?  It would need to do similiar logic to isrdispatcher since ISR_DEMO1 seems to be looking for the following parameters:
    SCENARIO  <- this could be hardcoded
    MODE      <-- but the next 2 are dynamic
    REQUEST_NO
    So I got my BSP coming up when I click on a UWL item, but the necessary parameters are not being derived like the JSP isrdispatcher. 
    Thanks in advance.

  • Error while Requsting fro Service Request ISR form

    Hi,
    I had configured ADS and i'am trying to acess ISR forms from portal but when am trying to acess it is giving an error "<b>com.sap.pcuigp.xssfpm.java.FPMRuntimeException: Work item 000000000000 could not be read</b>"
    Anybody please guide me in this issue.
    With Regards
    Pradeep.B
    <b></b>

    This error occurs due to the following customisaton, Please
    check this :
    Please can you check if the Pernr used
    has correct information like It0105 etc, also the rules are
    correctly defined.
    Webmo feature is activated or no?
    For the Employee, First of all check the Period Work Schedule also
    the Quotas of the pernr needs to maintained in 2006, Please do
    this customisation and it should solve the issue.
    Maintain the absence quota in the IT2006 and then try once.
    Also make sure that the Settings in Webmo and PTARQ etc all is done
    The pernr belongs to the a Rule and have absences defined for him.

Maybe you are looking for

  • How can I implement an user function in a derived column of a report ?

    Hello, I've a report and added a derived column. In this column should be displayed the result of a function. GETANZGJMONATE ( to_date(#START_AFA#,'DD.MM.YYYY'), #ND#, :P302_GJ ); How can I implement this? Thanks in advance Regards Ulrike

  • Is it possible to export only selective bookmarks?

    Hi, Can I export selective bookmarks e.g. rather than backing up all bookmarks? i.e. select multiple folders and just back up all bookmarks within the selected folders (in either either JSON or .HTML format). It might be possible to do so or maybe th

  • ABAP calling HTTPS URL using CL_HTTP_CLIENT

    Hello, I have a requirement where I will have to call a URL inside an ABAP or BSP passing some query parameters  program and then the response will be a big string with all the data I need. I found I can use CL_HTTP_CLIENT thanks to Brian weblog. The

  • Ipod Hardrive just freezes and forces a reset

    This is an ongoing problem with my 60 GB Ipod Photo. I recently had to send it to Apple because my Ipod hardrive would not let me write more then 16 GB. Then they sent me a whole new Ipod. It worked great I never dropped it the only thing it went thr

  • [SOLVED] Quadruple X screen!

    Hi, I have just installed Xorg, following carefully the instructions in the Beginner's Guide. I start it up as described with startx and see a few xterms and the clock - everything as it should be AFAIK. I then switch to virtual terminal 2 with Ctrl-