Voice Mail Port Problem with CUCM 8.5 and Connection 8.5

Hi im having a very strange problem witch the voice mail ports between a CM 8.5 and a Cisco Unity connection 8.5 , i configured them and they registered and all was working fine, however when i rebooted the servers the ports stayed in status unknown i tried resetting them both sides, re adding config both sides and nothing after hours of trying and deleting and adding the same config it worked again, however we have a power outage today and the same thing happened again status unknown and still i cannot get them to register again. Any ideas or help would be appreciated.
Thanks,

I'm not sure but it could be a DNS issue. Is DNS configured or are you just using IP addresses?  Make sure everything is resolving correctly.

Similar Messages

  • Voice Mail Ports Rejected in CUCM - Unity Connection

    Hi to all,
    I have a CUCM v9.1 cluster (1 Pub and 2 Subs) with two device pools (DP_Site_A and DP_Site_B), each DP has a call manager group that has the Subscriber for each site as the Primary CUCM Server in order of registration: DP_Site_A -> CMGroup_A ( 1° Sub_A and 2° Sub_B) ,
    DP_Site_B -> CMGroup_B ( 1° Sub_B and 2° Sub_A).
    The issue that I have is that when I configure the voice ports in the CUCM with either DP_Site_A or DP_Site_B I always get those ports as "Rejected" in the registration status BUT if i leave the DP for the voice ports as default they get registered and actually work fine with voice mails.
    My Unity Connection is v9.1 too.
    Any ideas about what can be causing this behavior??
    Thanks in advance for your help.

    Hi Alfonso,
    Can you check these settings in CUC for the "Secondary" CUCM (Sub) server config
    to make sure the Subs are listed as part of the SCCP registration;
    Step 32 On the Edit Servers page, do the following substeps if the Cisco Unified CM cluster has secondary servers. Otherwise, skip to Step 33.
    a. Under Cisco Unified Communications Manager Servers, click Add.
    b. Enter the following settings for the secondary Cisco Unified CM server and click Save.
    # Table 6-16     Settings for the Cisco Unified Communications Manager Servers 
    # Field
    # Setting
    # Order
    # Enter the order of priority for the Cisco Unified CM server. The  lowest  number is the primary Cisco Unified CM server, the higher  numbers are  the secondary servers.
    # IP Address or Host Name
    # Enter the IP address (or host name) of the secondary Cisco Unified CM server.
    # Port
    # Enter the TCP port of the Cisco Unified CM server that you are   integrating with Cisco Unity Connection. We recommend that you use the   default setting.
    # TLS Port
    # Enter the TLS port of the Cisco Unified CM server that you are   integrating with Cisco Unity Connection. We recommend that you use the   default setting.
    # Server Type
    # Click Cisco Unified Communications Manager.
    http://www1.cisco.com/en/US/docs/voice_ip_comm/connection/7x/integration/cucm_sccp/guide/cucintcucmskinny050.html
    Cheers!
    Rob
    "Talk about a dream
    Try to make it real" 
    - Springsteen

  • Problem with web service proxy and connections.xml

    JDev 11.1.14
    Hello
    I'm trying to create a web service proxy that takes advantage of the connections.xml so that the endpoints can be changed without recompiling the code (as described here http://download.oracle.com/docs/cd/E17904_01/web.1111/b31974/web_services.htm#ADFFD548 - 13.2.2 How to Create a New Web Service Connection)
    I created the web service proxy using the Jdev wizard and a test client. The access to the web service works as expected.
    The client test code is :
    package model;
    import ch.mit.trac.ws.proxy.*;
    import ch.mit.trac.ws.root.Currency;
    import javax.naming.NamingException;
    public class wsTest {
      public wsTest() {
        super();
      public void testIt() throws NamingException {
        CurrencyConvertor currencyConvertor = new CurrencyConvertor();
        CurrencyConvertorSoap currencyConvertorSoap = currencyConvertor.getCurrencyConvertorSoap();
        Double res = currencyConvertorSoap.conversionRate(Currency.CHF, Currency.USD);
        System.out.println("Hello");
        System.out.println(res);
      public static void main(String [] args) throws NamingException {
        wsTest tt = new wsTest();
        tt.testIt();
    }I then create a connection as described in the docs.
    I now have a connections.xml as follows:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <References xmlns="http://xmlns.oracle.com/adf/jndi">
       <Reference name="CurrencyConvertor" className="oracle.adf.model.connection.webservice.impl.WebServiceConnectionImpl" xmlns="">
          <Factory className="oracle.adf.model.connection.webservice.api.WebServiceConnectionFactory"/>
          <RefAddresses>
             <XmlRefAddr addrType="WebServiceConnection">
                <Contents>
                   <wsconnection description="file:/C:/JDeveloper/mywork/WebServiceTest/Model/src/ch/mit/trac/ws/proxy/CurrencyConvertor.wsdl" service="{http://www.webserviceX.NET/}CurrencyConvertor">
                      <model name="{http://www.webserviceX.NET/}CurrencyConvertor" xmlns="http://oracle.com/ws/model">
                         <service name="{http://www.webserviceX.NET/}CurrencyConvertor">
                            <port name="CurrencyConvertorHttpPost" binding="{http://www.webserviceX.NET/}CurrencyConvertorHttpPost">
                               <operation name="ConversionRate">
                                  <output name=""/>
                                  <input name=""/>
                               </operation>
                            </port>
                            <port name="CurrencyConvertorHttpGet" binding="{http://www.webserviceX.NET/}CurrencyConvertorHttpGet">
                               <operation name="ConversionRate">
                                  <output name=""/>
                                  <input name=""/>
                               </operation>
                            </port>
                            <port name="CurrencyConvertorSoap12" binding="{http://www.webserviceX.NET/}CurrencyConvertorSoap12">
                               <soap addressUrl="http://www.webservicex.com/CurrencyConvertor.asmx" xmlns="http://schemas.xmlsoap.org/wsdl/soap/"/>
                               <operation name="ConversionRate">
                                  <soap soapAction="http://www.webserviceX.NET/ConversionRate" xmlns="http://schemas.xmlsoap.org/wsdl/soap/"/>
                                  <output name=""/>
                                  <input name=""/>
                               </operation>
                            </port>
                            <port name="CurrencyConvertorSoap" binding="{http://www.webserviceX.NET/}CurrencyConvertorSoap">
                               <soap addressUrl="http://www.webservicex.com/CurrencyConvertor.asmx" xmlns="http://schemas.xmlsoap.org/wsdl/soap/"/>
                               <operation name="ConversionRate">
                                  <soap soapAction="http://www.webserviceX.NET/ConversionRate" xmlns="http://schemas.xmlsoap.org/wsdl/soap/"/>
                                  <output name=""/>
                                  <input name=""/>
                               </operation>
                            </port>
                         </service>
                      </model>
                   </wsconnection>
                </Contents>
             </XmlRefAddr>
          </RefAddresses>So far so good.
    I then created a new jspx page with a button that calls a method in a request scoped bean.
    The method is supposed to use the connections.xml to get the web service proxy in order to call the web service.
    The bean code is as follows :
    package ch.mit.test;
    import javax.faces.event.ActionEvent;
    import ch.mit.trac.ws.proxy.*;
    import ch.mit.trac.ws.root.Currency;
    import javax.naming.Context;
    import javax.naming.NamingException;
    import oracle.adf.model.connection.webservice.api.WebServiceConnection;
    import oracle.adf.share.ADFContext;
    public class test {
      public test() {
      public void testIt() throws NamingException {
        Context ctx;
        ctx = ADFContext.getCurrent().getConnectionsContext();
        WebServiceConnection wsc;
        wsc = (WebServiceConnection) ctx.lookup("CurrencyConvertor");
        CurrencyConvertor currencyConvertor = wsc.getJaxWSPort(CurrencyConvertor.class);   -- NPE here
        CurrencyConvertorSoap currencyConvertorSoap = currencyConvertor.getCurrencyConvertorSoap();
        Double res = currencyConvertorSoap.conversionRate(Currency.CHF, Currency.USD);
        System.out.println("Hello");
        System.out.println(res);
      public void testws(ActionEvent actionEvent) {
        try {
          testIt();
        } catch (NamingException e) {
    }When running the application and clicking on the button I keep getting the following error at the line marked NPE Here above:
    <LifecycleImpl> <_handleException> ADF_FACES-60098:Le cycle de vie Faces reçoit des exceptions non traitées en phase INVOKE_APPLICATION 5
    javax.faces.el.EvaluationException: java.lang.NullPointerException
         at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:58)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1256)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:765)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:305)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:185)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         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:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.share.http.ServletADFFilter.doFilter(ServletADFFilter.java:62)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused by: java.lang.NullPointerException
         at java.lang.Class.isAssignableFrom(Native Method)
         at oracle.j2ee.ws.common.jaxws.runtime.GenericJavaType.create(GenericJavaType.java:97)
         at oracle.j2ee.ws.common.jaxws.runtime.GenericJavaType.create(GenericJavaType.java:118)
         at oracle.j2ee.ws.common.jaxws.runtime.OperationMappingModeler.processParameters(OperationMappingModeler.java:268)
         at oracle.j2ee.ws.common.jaxws.runtime.OperationMappingModeler.processMethod(OperationMappingModeler.java:155)
         at oracle.j2ee.ws.common.jaxws.runtime.ServiceEndpointRuntimeModeler.buildRuntimeModel(ServiceEndpointRuntimeModeler.java:114)
         at oracle.j2ee.ws.client.jaxws.WsClientProxyFactory.getRuntimeMetadata(WsClientProxyFactory.java:69)
         at oracle.j2ee.ws.client.jaxws.WsClientProxyFactory.createProxy(WsClientProxyFactory.java:126)
         at oracle.j2ee.ws.client.jaxws.WsClientProxyFactory.createProxy(WsClientProxyFactory.java:106)
         at oracle.j2ee.ws.common.jaxws.ServiceDelegateImpl.getPort(ServiceDelegateImpl.java:219)
         at oracle.j2ee.ws.common.jaxws.ServiceDelegateImpl.getPort(ServiceDelegateImpl.java:249)
         at oracle.adf.model.connection.webservice.impl.WebServiceConnectionImpl.getJaxWSPort(WebServiceConnectionImpl.java:399)
         at ch.mit.test.test.testIt(test.java:27)
         at ch.mit.test.test.testws(test.java:41)
         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(Unknown Source)
         at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
         at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
         ... 44 moreCan anybody help as to what the problem is...
    (the WSDL is at http://www.webservicex.com/CurrencyConvertor.asmx?WSDL)
    Regards
    Paul

    Hi Frank
    The page is ADF bound, I've added the page source and the adfc-config source below :
    Page
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:form id="f1">
            <af:commandButton text="commandButton 1" id="cb1"
                              actionListener="#{test.testws}"/>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>adfc-config
    <?xml version="1.0" encoding="windows-1252" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <view id="view1">
        <page>/view1.jspx</page>
      </view>
      <managed-bean id="__4">
        <managed-bean-name id="__3">test</managed-bean-name>
        <managed-bean-class id="__2">ch.mit.test.test</managed-bean-class>
        <managed-bean-scope id="__1">request</managed-bean-scope>
      </managed-bean>
    </adfc-config>It seems to be the same sort of problem as in Re: Error in ADF Web Service Connection
    Regards
    Paul

  • Major Problems with Captivate 5.5 and Connect Pro

    I have a bunch of quizes that have 30 random question slides. Each slide pulls from various question pools. All of these quizes where created in Capitivate 5 and converted to Captivate 5.5.
    My problem is that Captivate 5.5 is corrupting my quizes and preventing me from posting them to my Connect Pro server. If I fix the quiz to where it will post CAptivate 5.5 will eventually corrupt it again.
    When I try to publish I get a "Failed to publish your project to the Connect Pro Server. Verify your Network Connection and then retry."
    Also Connect Pro starts throwing up errors about my number of concurrent users has been exceeded. That is impossible since I have not release any training yet to anyone other than myself.
    I did not have any of these problems until I upgraded to Capitvate 5.5.
    I am about about two more errors away from abandoning Elearning as a career and going back to marketing and design. I have not seen one elearning product out there adobe or not that's not riddled with bugs. I though using Connect Pro and Captivate together would work because they are both made by Adobe.
    ANy Ideas? I at the edge.

    I just realize something. If I open a CP 5 file with quizzes save as a CP 5.5 with out making changes to the quiz it will publish with no problem. However if anything is changed on any question pool slide the project will no longer publish to Connect.
    Every question has to be changed because Captivate 5.5 messes up all of the text alignment and some of it runs off the stage area and is not visible.
    This is ridiculous. I should not have to rebuild all of my project files every time I upgrade.

  • Problem with N73 upgrade v4 and connectivity to gp...

    N73 working fine especially with tomtom v6 and gps receiver, however silly me decided to upgrade firmware and on doing so, now gps receiver is found but not allowed to work. Has anyone elese had this issue with N73 upgrade and tomtom and or bluetooth. The person with a fix gets a reward in heaven!

    Did you try uninstalling and then reinstalling TomTom?

  • Unity Connection Voice Mail ports

    Hi experts
    I hava simple question.
    I have a UCS M3BE server with 2 CPU, as per the link http://www.cisco.com/en/US/docs/voice_ip_comm/connection/9x/supported_platforms/9xcucspl.html#wp810181 with 2 No's of CPU it supports only 100 ports per Virtual Machine and for the cluster it supports 200 ports.so in the CUCM Voice Mail Port Wizard i shld put figures 200 or 100??,
    i think i shld put voice mail ports 100 on CUCM with name CiscoUM1-VI with 100 ports when selecting ports on CUC-publisher
    then again creating voice mail ports 100 on CUCM with name CiscoUM2-VI with 100 ports when selecting ports on CUC-subscriber
    Thanks

    Hi Jack,
    Can you try installing the cop file from the following link
    https://supportforums.cisco.com/community/netpro/collaboration-voice-video/unified-comm-application/blog/2013/04/17/unity-connection-911-unable-to-create-more-than-8-ports
    Although this bug fix is for installations with one CPU you can give it a try.
    HTH
    Manish

  • Problems sending mail: some problem with the outgoing mail server SMTP?

    I can't send e mails: some problem with the outgoing mail server SMTP?

    I had this same problem with both my imac and mac book pro using hotmail via mac mail with bt as my internet provider. Suddenly 4 months ago out of nowhere i could receive emails but could not send them. I scoured all the threads followed all the fixes none of them worked. However I just phoned apple support and fixed it in a matter of minutes. I am SO happy. This is what the technician advised me:
    Go to your apple icon and scroll down to system preferences. Then dependant on what machine you have it is different for my imac and mac book pro click on either air port/wifi then the advanced tab in the bottom right hand corner. Then click on the DNS tab. Hit the + sign on the left hand side and type in 8.8.8.8 then hit the + sign again on the left hand side it will create a new line underneathe and type 8.8.4.4 then hit okay on the bottom right and then hit apply, again on the bottom right. Then send a test email to check but it should be fixed.
    Had to share this. Its been driving me mad for months.

  • I can't text a contact but can voice phone them. I don't have the problem with any other contact and the contact is not blocked. I have an iphone5.0 OS 8.1.3

    I can't text a contact but can voice phone them. I don't have the problem with any other contact and the contact is not blocked. I have an iphone5.0 OS 8.1.3. I used to be able to text them with no problem. The only difference I can think is that this problem may have started since I downloaded the OS I am using now
    cycleluke

    Wasn't responding to you. Please show me links where this helped.
    Apple isn't showing any system problems: https://www.apple.com/support/systemstatus/

  • Thunderbolt port problems with Hard drive

    Hello guys, since I updated to Yosemite 10.10.2 I have a problem with port thunderbolt, to which I have connected a hard disk. When I turn off the hard disk with its button after pressing "eject", the hard disk turns off but also restarts the MAC. I tried to connect it to the USB3 and it works ok. This problem I had never experienced with the previous operating system. Some of you can help me? Thank you very much!!!! ;-)

    I had problems with my hard drive and was able to replace it myself. I am not technical at all but was still able to do it. Go on line and you will find some sites on how to do this they are very good. It did not take long and I am using the Powerbook to respond to your thread. Good luck.

  • Had problem with my hotmail account and had to change my password. Ever since then, my default e-mail account set up to hotmail doesn't work...it sends from gmail. How can I correct that?

    Had problem with my hotmail account and had to change my password. Ever since then, my default e-mail account set up to hotmail doesn't work...it sends from gmail. How can I correct that?

    On your iPhone you need to change your password in 2 places:
    - Incoming Mail Server and
    - Outgoing Mail Server
    To get to the password entry for the Outgoing Mail Server you have to tap on cell smtp.live.com and again on the second view.

  • Problems with CUCM 9.1 OVA file

    Hello all
    I´m facing problems with CUCM 9.1 I downloaded from Cisco when I run it in the VMware I got the following screen
    What should I do to resolve it?
    Regards

    Actually when I tried to open the original OVA I got the message
    "the ovf descriptor file could not be parsed"
    Then I opened the OVA file and took just VMDK file and created a virtual machine with this VMDK file
    Then I got this message

  • I have been having problems with my iPod touch and my WRT...

    I have been having problems with my iPod touch and my WRT54G router. I am so frustrated right now because after following the various steps mentioned in one of these threads, following Earthlink's prompts, and speaking with Apple, my iPod touch will still not work. It is connected to the internet but will not download the pages. It is quite frustrating. I have changed from WPA to WEP, I switched the 4th Generated key to the 1st. I've disabled this, enabled that. I've done just about everything. I updated the firmware. I made the switch from a partial bridge to a full bridge. Still nothing seems to work. Does anyone have any other suggestions? The one thing I have not done is enter the Apple code into the iPod which searches for website...-- I cannot access the internet with my iPod so this web address does not work. If anyone has been successful, will you please give me step by step instructions? Yesterday I was on the phone with Linksys for about an hour. Before that with Apple for about an hour and before that with Earthlink. How it is that I can walk into a Bread Co. or Apple Store and immediately connect to the internet with my iPod but I can't in my own house?? Everyone seems to think it is someone else's problem so I've gone around and around. Not one of the Linksys support personnel suggested I look here on this community forum. I had to pay the $9 fee to have advanced Linksys help but still my iPod does not work and when I called back, the man I spoke with seemed to think the case was closed because my PC, Laptop, and iPod are connected to the internet -- the iPod just won't download the webpages or get mail. My iPod's IP address begins with 192. I would appreciate any help on this matter
    Message Edited by AlliW on 10-02-2008 02:06 PM

    I had the same issues with my iPod touch & iPhone. It's a known issue with the touch & Linksys G routers. Go into settings on the touch & do the following.
    1. Settings - wifi - linksys
    2. Erase your DNS settings & input same numbers as in router
    Settings.
    3. Http proxy should be
    in off position.
    4. Close out & open safari you should now have a wireless
    connection.

  • Problems with ESS in  "Career and Jobs" in option "Appraisal Document"

    hi
    My problem with ESS in "Career and Jobs" menu in the option "Appraisal Document" is not appear the appraisal documents or my my question is...
    What I can customize for appear the "Appraisal Documents"?
    My ESS shows the following screens:
    http://img295.imageshack.us/img295/3451/appraisalportal.jpg (there is also a problem with the flash player, I marked with red rectangle)
    I found looking on the internet that had to configure the Performance Management
    I entered in SPRO tcode, follow these steps
    http://img580.imageshack.us/img580/2598/appraisal1.jpg (Entered in "Define Templates in Performance Management")
    http://img215.imageshack.us/img215/6233/appraisal2.jpg
    http://img651.imageshack.us/img651/4243/appraisal3.jpg
    http://img340.imageshack.us/img340/622/appraisal4.jpg
    http://img52.imageshack.us/img52/1842/appraisal5.jpg (click in "End Configuration")
    http://img534.imageshack.us/img534/8746/appraisal6a.jpg (Error screen part 1)
    http://img4.imageshack.us/img4/1261/appraisal6b.jpg  (Error screen part 2)
    I hope the answers and posts, I wonder if my chosen way(configuring the Performance Managemente)  is correct
    thanks for posts
    Ivan

    thanks Chris for comments,
    Now I customize the "Appraisal Document"
    http://img18.imageshack.us/img18/4640/uiapraisal.jpg (Here I can see the evaluation that was done in the back-end)
    but, I clicked in the hiperlink of  "Appraisal Document Name",  I see this error:
    http://img80.imageshack.us/img80/8157/uiapraisal2.jpg (Error:<b>Page not found or not avaible</b>)
    even before I saw another error (<b>"There is no iView available for system "SAP_ERP_HumanResources": object "employee". For more information, contact your administrator."</b>) in others posts(questions in sap forums) mentioned, These included the following notes
    1468466 Performance Management Launchpad Configuration
    1463821 Performance Management Portal Configuration
    1416756 OBN Configuration in Performance Management
    1408243 Configuration for object-based navigation
    They recommended me in the back-end include roles in the resources:
    http://img401.imageshack.us/img401/8048/uiapraisala.jpg
    http://img689.imageshack.us/img689/9359/uiapraisalb.jpg
    The note number 1463821(especially), I recommend the following
    <a href="https://websmp230.sap-ag.de/sap(bD1lcyZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1463821" target=nieves>note 1463821</a> (link note)
    http://img88.imageshack.us/img88/7484/uiapraisal1.jpg (LPD_CUST tcode)
    http://img266.imageshack.us/img266/7405/uiapraisal1b.jpg (Check in "Restricted Parameters" and "Active" - "EXT_HEAD")
    but in these notes appointing a role that I could not find on my system that is:
    pcd:portal_content/com.sap.pct/line_manager/com.sap.pct.erp.mss.bp_folder/com.sap.pct.erp.mss.14.bp_folder/com.sap.pct.erp.mss.14.pages/com.sap.pct.erp.mss.hcm/com.sap.pct.erp.mss.appraisal_document_wd_ui
    because, I was looking at my porta's role  (With reference "Appraisals Document")
    http://img97.imageshack.us/img97/5167/uiapraisal3a.jpg
    http://img413.imageshack.us/img413/5643/uiapraisal3b.jpg
    http://img534.imageshack.us/img534/4585/uiapraisal3c.jpg
    http://img203.imageshack.us/img203/4605/uiapraisal3d.jpg
    Finally, my main error is :<b>Page not found or not avaible</b> (I referred at the beginning of the post http://img80.imageshack.us/img80/8157/uiapraisal2.jpg)
    Why I see this error (Page not found or not avaible)?
    http://img80.imageshack.us/img80/8157/uiapraisal2.jpg (Error:Page not found or not avaible)
    I hope the helps, and thaks very much.
    Ivan

  • Having problem with primary sever will not connect, my internet connection is working

    Having problem with primary sever will not connect, my internet connection is working

    Hello pp585,
    Thank you for using Apple Support Communities.
    For more information, take a look at:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    Troubleshoot issues on a Mac
    If you haven't been able to connect to the iTunes Store, a software conflict or your Internet service provider (ISP) may be blocking your access.
    Update iTunes and Safari to the latest version.
    If you have a firewall, your settings may be preventing you from connecting to the iTunes Store. Follow these steps to configure your firewall.
    You may need to reset your keychain. Connection issues are occasionally caused by keychain issues. Learn how to use Keychain First Aid to resolve any issues with your keychain.
    If you're receiving a specific error message, follow these steps.
    If the issue still persists, contact your Internet service provider and confirm that these ports and servers are enabled over your network.
    Have a nice day,
    Mario

  • Is anybody NOT having a problem with G2 touch's WiFi connection?

    I am disappointed that after eagerly anticipating the "Lets Rock" event and the release of a new iPod Touch, with the intention of purchasing one now, it seems that from this and other forums there is a major problem with the WiFi on the Gen 2. There are several threads reporting that the new G2 Touch will not connect to the internet via WiFi using WPA secure networks and this is putting me of buying at the moment which is very frustrating.
    However, before I am aware that people often only post here if they are having problems with an Apple product and not if they are not, so before casting judgement and deciding not to buy I would like to know whether this issue is affecting all of the new G2 Touch's.
    So...is anyone NOT having any WiFi problems and finding that they are able to connect easily to WPA/2 secured networks and routers?
    I hope so as I was so looking forward to getting a Touch, but I won't yet if there is a definite fault with the G2.

    have had no repies as yet so i thought of a new approach , thus i also cannot connect to my linksys54gs router (no problem with psp or xbox) and would like some help /advise from those in the know,after tapping blue arrow for wifi and choosing the regognised network my touch asks for ip address
    subnet mask
    router
    dns
    search domain
    http proxy off/manual/auto
    server
    port
    authentication
    username
    password
    And all this without any instructions! the big selling plus of touch is wifi but now i am trully fed up after 2 days of trying a novice approach to set up .
    Can anyone please help
    Apple please read my feed back from a first time unhappy customer ,-maybe i will just get a refund ..
    help!!!

Maybe you are looking for

  • Mac OS 10.7 (Lion) won't start After Effects CS5.5 because it's a powerpc app!?

    I've had CS 5.5 Master Collection installed on my Mac since it came out. All the CS 5/5.5 apps I've used up to now have worked fine, in 64-bit mode (Photoshop, Illustrator, Acrobat Pro, InDesign). Now I need to use After Effects, but I can't get it t

  • Connection pooling with SQL Server 2008 and Tomcat 6.0

    Hello Everybody, I'm creating a web application using struts 2.0 , tomcat 6.0 and sql server 2008. Everything works fine but i'm unable to create connection pooling with sql server 2008.Please help me to solve this issue. Code for this is as foolows:

  • Escaping field value in custom transaction

    I have created a custom transaction inserting fields in a table called `billing`. The values are taken mainly from two other tables called `account` and `paypalinfo`. I have attached the code below. Please not the values to be inserted notated in wav

  • Help : Simple Power Supply Filter

    First , thanks to everyone who answered my question on "time step too small". I am in the filter stage of a very simple power supply. However, when I connect a capacitor to the output of my rectified signal, the output signal of the load is not what

  • Attachments possible with Advenaced Adapter Engine (AAE)?

    Hello, we are trying to set up a synchronous scenario with the AAE. The involved adapters are both SOAP (third party system <-> SAP PI protocoll SOAP 1.1 and SAP PI <-> SAP ERP protocoll XI3.0). The call works but the attachment gets lost. We see the