Policy Reference error in UCS 1.4(3m)

I just setup a new QoS policy named "N1k-TRUST" in UCS system, applied to the service profile and reboot. Then a warning message saying
"Policy reference qosPolicyName 'N1k-TRUST' does not resolve to named policy".
Can someone let me know how to fix this error?
Thanks

robin99,
I do not have enough information to be certain however you could be running into CSCtq15593. You will need to check
how the policy was configured to be certain. All of the details of the bug can be seen on CCO using bug toolkit.
http://tools.cisco.com/Support/BugToolKit/action.do?hdnAction=searchBugs
Thanks,
Bill

Similar Messages

  • UCS Manager Update from 2.1(1a) / 2.1(1b) to full 2.1(3b) cause Policy Reference Error on iSCSI

    Hello,
    I actualy did a UCS firmware upgrade from a mixed 2.1(1a) and 2.1(1b) to a full 2.1(3a) version.
    Chassis are 2208XP, Fabrics are 6248UP and blades are all B200-M3.
    I use firmware policy to update the firmware on the blades.
    Here are the current version of the different componments:
    - CIMC, Adapterers and BIOS Server: 2.1(3b)
    - UCS Software: 2.1(3b)
    - IO Modules:  2.1(1b)
    - Fabric Kernel / System : 2.1(1b)
    After UCS Software update when I connect on UCS Manager I got several warning referencing the error "Policy reference autProfileName does not resolve to named policy" on different parts.
    I have follow some post to resolve some of them:
    - iSCSI nic is created without Authentication profile issues:
    https://tools.cisco.com/bugsearch/bug/CSCui43905
    - Default SOL policy issue:
    https://tools.cisco.com/bugsearch/bug/CSCtl88314
    This resolve a lot of error but I'm still having errors like this on all my iscsi NIC:
    Causing this:
    Right now the update of the IOMs and FIs are on standby until I resolve this.
    Can I have some help please.

    It looks like you are hitting:
    https://tools.cisco.com/bugsearch/bug/CSCui43905
    Symptom:
    Warning with the text "Policy reference  authProfileName  does not resolve to named policy" is seen when creating  an iSCSI nic on a service profile.
    Conditions:
    Issue happens only when iSCSI nic is created without an Authentication profile
    Workaround:
    Use Authentication profile
    Create a Default Authentication Profile
    Existing  warnings from the previous version would still exist even after the  upgrade and that can be isolated only using the above work around. If  new service profiles are created on the 2.2.1b version will not  experience this issue.
    Here is how to create an authentication profile:
    http://www.cisco.com/en/US/docs/unified_computing/ucs/sw/gui/config/guide/2.1/b_UCSM_GUI_Configuration_Guide_2_1_chapter_011111.html#task_5DBBCD17FFA046A395B4493104838B1F

  • Policy reference authprofilename doesn't resolve to named policy

    Hi all
    UCS 2.1 (3A) Warning: Policy reference authProfileName does not resolve to named policy.
    Code: F4529533
    It turns out no results from the communities or cisco. Do anybody have any resolution to this? Please post it.
    thank you,
    AK G

    Hi Anil,
    This looks like you may be running up against a known bug:CSCui43905
    You may want to also try dis-associating the service profile and then re-associating it and see if that works. Although, it may not be successful.
    Thanks.
    -Bruce

  • WSMException: WSM-06102 PolicyReference The policy reference URI "oracle/ws

    Hi All,
    I written the following code in my servlet .I treid both the way with or with out giving the policy but I am getting same error both the cases.
    IdcClientManager manager = new IdcClientManager();
                   // build a client that will communicate using the JAXWS protocol
                   //IdcClient idcClient = manager.createClient("http://localhost:16200/idcnativews/");
                   // build a client as cast to specific type
                   //IntradocClient idcClient = (IntradocClient)manager.createClient("http://localhost:16200/cs/idcplg");
                   // get the config object and set properties
                   //idcClient.getConfig ().setSocketTimeout (30000); // 30 seconds
                   //idcClient.getConfig ().setConnectionSize (20); // 20 connections
                   // build a client as a cast for jaxws type
                   JaxWSClient jaxwsClient = (JaxWSClient) manager.createClient("http://localhost:16200/idcnativews");
                   jaxwsClient.initialize();
                   System.out.println ("Title is 113: "+jaxwsClient.isInitialized());
                   JaxWSClientConfig jaxwsConfig = jaxwsClient.getConfig();
                   jaxwsConfig.setJpsConfigFile("/fmwconfig/jps-config.xml");
                   System.out.println ("Title is 11: "+jaxwsConfig.getJpsConfigFile());
                   System.out.println ("Title is 1134: "+jaxwsConfig.PROP_LOGIN_SERVICE_WSDL);
                   // set the property
                   jaxwsConfig.setServerInstanceName("/cs/");
                   //jaxwsConfig.setClientSecurityPolicy("policy:oracle/wss11_weblogicss_token_with_message_protection_client_policy");
                   // login port wsdl url
                   //jaxwsConfig.setLoginServiceWSDLUrl(new URL("http://server:7044/webservices/loginPort?WSDL"));
                   //request port wsdl url
                   //jaxwsConfig.setRequestServiceWSDLUrl(new URL("http://server:7044/anotherservice/myrequestport?WSDL"));
                   jaxwsConfig.setStreamingChunkSize(8190);
                   //IdcClientManager manager = new IdcClientManager();
                   //IdcClient idcClient = manager.createClient("http://localhost:16200/cs/idcplg");
                   //System.out.println("idcClient....."+idcClient);
                   // create an identity with a password
                   IdcContext userPasswordContext = new IdcContext("weblogic", "Accenture123");
                   System.out.println ("Title is 11: ");
                   // get the binder
                   DataBinder serverBinder = jaxwsClient.createBinder();
                   // populate the binder with the parameters
                   serverBinder.putLocal ("IdcService", "GET_SEARCH_RESULTS");
                   serverBinder.putLocal ("QueryText", "");
                   serverBinder.putLocal ("ResultCount", "20");
                   // execute the request
                   System.out.println ("Title is 11: ");
                   ServiceResponse cmsResponse = jaxwsClient.sendRequest (userPasswordContext, serverBinder);
                   // get the binder
                   System.out.println ("Title is 11: ");
                   serverBinder = cmsResponse.getResponseAsBinder ();
                   System.out.println ("Title is 11: ");
                   DataResultSet resultSet = serverBinder.getResultSet ("SearchResults");
                   System.out.println ("Title is 11: "+resultSet.getFields().size());
                   // loop over the results
                   for (DataObject dataObject : resultSet.getRows ()) {
                   System.out.println ("Title is: " + dataObject.get ("dDocTitle"));
                   System.out.println ("Author is: " + dataObject.get ("dDocAuthor"));
    when I try to connec to my servlet I am getting following error . I treid with out giving the policy or with policy I am getting same error.
    javax.xml.ws.WebServiceException: javax.xml.rpc.JAXRPCException: oracle.wsm.common.sdk.WSMException: WSM-06102 PolicyReference The policy reference URI "oracle/wss11_saml_token_with_message_protection_client_policy" is not valid.
         at weblogic.wsee.jaxws.framework.jaxrpc.TubeFactory$JAXRPCTube.processRequest(TubeFactory.java:231)
         at weblogic.wsee.jaxws.tubeline.FlowControlTube.processRequest(FlowControlTube.java:98)
         at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:604)
         at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:563)
         at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:548)
         at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:445)
         at com.sun.xml.ws.client.Stub.process(Stub.java:259)
         at com.sun.xml.ws.client.sei.SEIStub.doProcess(SEIStub.java:152)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:115)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:95)
         at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:135)
         at $Proxy140.contentServerLogin(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.wsee.jaxws.spi.ClientInstance$ClientInstanceInvocationHandler.invoke(ClientInstance.java:363)
         at $Proxy141.contentServerLogin(Unknown Source)
         at oracle.stellent.ridc.protocol.jaxws.JaxWSProtocol.authenticateUser(JaxWSProtocol.java:229)
         at oracle.stellent.ridc.protocol.jaxws.JaxWSProtocol.writeRequest(JaxWSProtocol.java:106)
         at oracle.stellent.ridc.IdcClient.sendRequest(IdcClient.java:149)
         at com.stellent.cis.web.servlets.SCSInitializeServlet.doPost(SCSInitializeServlet.java:94)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: javax.xml.rpc.JAXRPCException: oracle.wsm.common.sdk.WSMException: WSM-06102 PolicyReference The policy reference URI "oracle/wss11_saml_token_with_message_protection_client_policy" is not valid.
         at oracle.wsm.agent.handler.wls.WSMAgentHook.handleException(WSMAgentHook.java:395)
         at oracle.wsm.agent.handler.wls.WSMAgentHook.handleRequest(WSMAgentHook.java:248)
         at weblogic.wsee.jaxws.framework.jaxrpc.TubeFactory$JAXRPCTube.processRequest(TubeFactory.java:220)
         ... 39 more
    Please help to resolve this issue.
    thanks
    Kishore

    Hi
    The owsm application is not deployed, or the mds-owsm jdbc datasource needs to be targeted to the UCM server.
    Solution:
    The mds-owsm datasource must be targeted to UCM. Also, the wsm-pm application should be deployed and active.
    The wsm-pm application manages the Web service security policies that control the SAML authentication in the Worklist service. To validate this, log into the wsm-pm application's validation page as a user with administrative rights. Use this format for validation: http://host:port/wsm-pm/validator.
    The mds-owsm jdbc datasource may not be set to any target server.
    Go to WLS's console.
    Open JDBC Data Source
    Select mds-owsm
    Select target
    Select the checkbox for "Admin Server" and the UCM server. select Save.
    Restart your WLS.
    Check the url, http://host:port/wsm-pm/validator. It should return the policies.
    Hope this helps .
    Thanks
    Srinath

  • I get a "JavaScript Application - Reference Error: XPCSafeJSObjectWrapper is not defined" error every time I try to open a new tab.

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [/questions/777191]</blockquote><br>
    Just like the title says, starting with Firefox 4 Beta 6 or 7, I forgot. Any time I try to open a new blank tab (sometimes even when I start up Firefox and the app tabs load) I get an error that says "JavaScript Application - Reference Error: XPCSafeJSObjectWrapper is not defined" If I close it everything works as normal again (until I open a new tab) but it is very annoying to have to do this. Is there any fix for this or is the bug just still there?

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]

  • StartTransmit / stopTransmit reference error on NetStream when connecting to device

    Hi all,
    I'm trying to create a P2P connection between a mobile device (Android) and a PC using the NetStream class.
    When the connection is established, the Flash Player Instance on the PC is crashing with a reference error:
    “Property startTransmit not found on flash.net.NetStream”
    I have seen the thread located located here: http://stackoverflow.com/questions/9676496/adobe-cirrus-error-on-direct-connectproperty-st arttransmit-not-found-on-flash-n
    but was not successfull in making it work with my code.
    I have tried extending the NetStream class like so:
    import com.frimastudio.cosy.util.NetConsole;
    import flash.net.NetConnection;
    import flash.net.NetStream;
    public class NetStreamProvider extends NetStream
      public function NetStreamProvider (connection:NetConnection, peerID:String)
       super(connection, peerID);
      // For AIR Android projects: when the device is put to sleep for a moment, this function will be
      // called so we need to implement it to prevent flash from crashing.
      public function startTransmit($p1:*, $p2:*):void
       COSY::console { NetConsole.WarningInternal("NetInterfaceSlot", "startTransmit", "startTransmit called"); }
      public function stopTransmit():void
       COSY::console { NetConsole.WarningInternal("NetInterfaceSlot", "stopTransmit", "stopTransmit called"); }
    and using the NetStreamProvider instead. Without success.
    Any help would be greatly appreciated.
    Thanks.
    Guillaume

    >> i suspect this is AIR-specific (probably if AIR is the sender) -- in my experience it doesn't happen with plain Flash Player.
    [Guillaume] -> Right, it does not happen on NetStreams between 2 Flash Players and 2 AIR app. Only between AIR-FlashPlayer NetStreams. Basically, after a stream is opened between AIR and Flash Player, the AIR is calling "starTransmit" on the FlashPlayer NetStream, wich is not implemented.
    >> try making an object with those method names and assign it to netStream.client
    [Guillaume] -> I tried the following:
    Implement starTransmit/stopTransmit functions in the NetStream.client object
    Implement startTransmit/stopTransmit functions in the NetStream instance (subclassed)
    Without success. Basically, it works fine if I just create a "dummy" client object for the NetStream that has those 2 functions. But If I want to use my own client it was still crashing.
    I found a work around for my problem.
    My NetStream object is sub classed as such:
    public class NetStreamProvider extends NetStream
      public var customClient:Object;
      public function NetStreamProvider (connection:NetConnection, peerID:String)
       super(connection, peerID);
       customClient = new Object();
       this.client = customClient;
       // Implement startTransmit and stopTransmit here for dummy client
       customClient.onPeerConnect = function(subscriber:NetStream): Boolean{
        var subClient:Object=new Object();
        subClient.stopTransmit=function($p1:*,$p2:*):void{
         trace("Cosy: stopTransmit called",$p1,$p2);
        subClient.startTransmit=function():void{
         trace("Cosy: startTransmit called");
        subscriber.client = subClient;
        return true;
      public function SetClient(c:Object):void
       this.client = c;
      public function OnNetStreamAsyncError(event:AsyncErrorEvent):void
    And in the stream status event handler, when the stream is ready (events "NetStream.Play.PublishNotify" and "NetStream.Play.Start") I set the correct client, which has the receive handler. At that point startTransmit was already called:
    And in the stream status event handler, when the stream is ready (events "NetStream.Play.PublishNotify" and "NetStream.Play.Start") I set the correct client, which has the receive handler. At that point startTransmit was already called:
    private function OnNetStreamStatus(e:NetStatusEvent)
    switch(e.info.code)
      case "NetStream.Play.PublishNotify":
               stream = e.target as NetStreamProvider;
               stream.SetupClient(client);
      break;
      case "NetStream.Play.Start":
               stream = e.target as NetStreamProvider;
               stream.SetupClient(client);
      break;
    At this point, i'm not blocked anymore. However, it would be good to know why, when and who are calling those functions to understand the issue. this is not documented anywhere, and might be an issue to a lot of people now that we are starting to see more and more cross-platform connectivity.
    Cheers.
    Guillaume

  • Policy Store Error in Import Definitions In Oracle I/PM (11.1.1.6.0)

    Hi All,
         At present I am trying to implement the imaging solution. When I try to import the definitions from I/PM it's giving me the following error.
         Policy Store Error: The User 100.weblogic does not exist in the policy store.
         Policy Store Error: The Group 100.PayablesProcessor does not exist in the policy store.
        I am unable to understand why it's giving the above error.
        User 'weblogic' and Group 'PayablesProcessor'  exists on myrealm. Unable to understand why error showing '100.weblogic' and '100.PayablesProcessor'.
        Invoices.xml comes with Solution Accelerator mentioned the user & group is 'weblogic' and 'PayablesProcessor' .
        So many times I configure the Accelerator but never faced the above issue.
        I tried to resolve the above to run refreshIPMSecurity() command but no luck.
       Could you please help me to resolve this issue ?
       Thanks in advance.

    Hi,
    The request to connect from the client is reaching the server but it seems the parsing of the service name is either wrong or the information is correct. Here are a couple of suggestions.
    If you have a good known set of sqlnet.ora and tnsnames.ora files on another client where the same connection descriptor works, then backup the curreny client network config files and copy the good known files to the Windows 2008 web server where you see the error. Make sure you recycle the worker processes once the files have been copied.
    Try to connect via Ezconnect and by pass the config files to see if you get the same error.
    //hostname:port/servicenameofdb
    where hostname is the machine where the target database is running
    port is the port on the DB machine where the tns listener is running and listening
    service name is the service name of the target DB
    Use this syntax in the connect string box when attempting to connect from SQL PLUS out of the ODAC home.
    You can also run lsnrctl utility on the server and vertify there is a handler for the service name or instance that is the target,
    HTH
    Jenny B.

  • Dynamic Type Conflect when assigning References error in portal

    Hi Forum,
    We have one ABAP Dynpro Application which runs fine but gives "Dynamic Type conflict when assigning References" error dump after integrating it with Netweaver portal 7 SP12 by creating Webdynpro ABAP iview.
    Please help us to resolve this issue.
    Thanks and Regards
    Sudhir

    hi
    refer this article :
    How to Create Web Dynpro-Based iViews
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3e36d690-0201-0010-cd99-bfbb81bd33d9
    refer the SAP online help :
    Create a Web Dynpro iView
    http://help.sap.com/saphelp_nw04/helpdata/en/2c/00584289e59041e10000000a1550b0/content.htm
    regards,
    amit

  • When install db 10.2.0.1, report many undefined reference error.

    Hi,
    I try install the db 10.2.0.1 under fc4 linux.
    I select to install software only, but report error:
    Error invoking target 'relink' of makefile
    '/usr/local/oracle/db10g/precomp/lib/ins_precomp.mk' ...
    I check the install/make.log, there are many "undefined reference" error, as following:
    /usr/bin/make -f ins_precomp.mk relink ORACLE_HOME=/usr/local/oracle/db10g EXENAME=proc/Linking /usr/local/oracle/db10g/precomp/lib/proc
    /usr/local/oracle/db10g/lib//libclntsh.so: warning: warning: this program uses gets(), which is unsafe.
    /usr/local/oracle/db10g/precomp/lib/pdc.o(.text+0x236): In function `pdlitlen':
    : undefined reference to `__ctype_b_loc'
    /usr/local/oracle/db10g/precomp/lib/libpgp.a(pgstdf.o)(.text+0x39e): In function `pgswget':
    : undefined reference to `_IO_getc'
    Whether some lib be not found?
    Thanks!

    Keep reading the link log, those are warnings. there is an actual error somewhere.

  • Adding itemCreationPolicy="immediate" on mx:Panel causes null object reference error in Flex 4.x

    The itemCreationPolicy works fine with spark components and other mx component until we hit by mx panel.
    Looks like an error is thrown from StyleProtoChain.
    The interesting thing is the null object reference error both occurs in Flex 4.0 and Flex 4.1, but caused by different objects.
    Is there a workaround to use itemCreationPolicy on mx panel?
    Thank you.

    Yes, there are all kinds of problems when you remove something from the screen that had focus (for instance, at that point you can't capture keyboard events either).
    My code is sprinkled with so many things to make sure something is in focus, I tend to forget that I've done it.
    In your code that changes the currentState, add
    this.setFocus()
    HTH;
    Amy

  • "retrieve disk item references" error

    using the "save PDF to folder as jpg" option below the printer>pdf button , I get a "retrieve disk item references" error, but save PDF to folder as tiff is still working. What is going wrong ??

    You have to get the action and load it into Automator.  It will say it's  from a prvious version.
    Then save the action (this upgrades it to current automator version)
    If you get a folder error change permission on folder so you can save to it
    reboot your computer - mine didn't work until I did this.

  • Thousands of reference errors in TCMRuntimeManager.as

    I'm working on a fairly large AIR app and in the process of trying to find the cause of an out of memory error, I see that the class TCMRuntimeManager.as is throwing thousands of reference errors...just letting my app sit for 10 minutes had over 350,000 reference errors.  The function checkTLFFontsLoaded is the culprit.  I'm not sure if the reference errors are directly related to the out of memory error, but I did notice that as I interact with the app not all the reference errors are getting garbage collected.  If I stop interacting with the app and force garbage collection a few times they all get cleared, but I think that under normal use the garbage collector is getting overwhelmed and doesn't clear out everything, and thus eventually these errors start piling up and contribute to the out of memory error.
    The way the project is built is Flash CS 5.5 is used to import psd files, I set up some linkage classes, then export as a swc.  The psd text fields are imported as TLFTextFields.  The swc assets are then used in a FDT project compiled with Flex SDK 4.5.1 with AIR SDK 3.1.  There are 5 products, each with its own swf.  The swfs are compiled as Flash browser swfs and they are debugged/profiled using the standalone Flash player.  When I profile the individual swfs there are no reference errors.  If I profile the main swf (using adl) without loading the individual swfs, there are no reference errors. It's only when one or more of the product swfs are loaded into the main swf that reference errors start piling up. I've tried conerting the static text fields into bitmaps and registering the fonts (all from the same swc) in each swf and it hasn't made the problem go away but the memory spikes are no longer so dramatic. Any ideas on what is the root cause of this error?

    fl.text.TCMRuntimeManager was implemented by Flash pro. Please forward the question to http://forums.adobe.com/community/flash. Thanks!

  • Reference error: SERVERMODEL_JSP is undefined

    I receive an error message as follows: "While executing in
    insert bar.xml, a javascript error message occurs. The error
    message reads as follows: Reference error: SERVERMODEL_JSP Error
    message occurs when opening Dreamweaver, opening a new page, or
    opening an existing page to modify it. When I click it witht he
    "Enter" key three times, it disappears.
    Please advise.
    Joe Kerenick
    Web Developer

    I would also like to mention that you posted the original message... then barely an hour later made a comment that it was still unanswered.
    In my time zone, you posted at 3:32 AM and then commented at 4:35 AM. I don't know about many people here, but I am fast asleep during that time.
    So please understand we are here to help you, not be your servants to fix your problems.

  • Phantom circular reference errors in spreadsheet

    I'm getting phantom circular reference errors in one of my Appleworks spreadsheets.
    I'm trying to compute the average of several sets of pairs of numbers, I have max of three pairs per line, and I'm using COUNT to determine how many pairs are present. I'm getting "can't resolve circular reference" errors occasionally when I fill down and add data for a new line, even though there aren't any circular references.
    Columns
    A= date, B=average X, C=averageY, D=number of pairs for this line
    E F = first pair, G H = second pair, I J = third pair.
    The second and third pair don't occur every day.
    These are the formulas I'm using,
    B average_X =(E_line# + G_line# + Iline#)/Dline#
    C average_Y =(F_line# + H_line# + Jline#)/Dline#
    D numPairs =COUNT(Eline#...Jline#)/2
    I add a new line each day.
    Its worked just fine until I went over 100 lines and now I occasionally get "can't resolve circular reference" erros, and the calculation cells, but there AREN'T any circular references.
    Anyone have any idea whats going on?

    I'm using AW 6.2.7 I'm on OS X 10.3.9
    I tried it with removing the AVERAGE and COUNT functions and it still happens.
    Seems like its somehow related to any references to columns J and K, even if there's no data in those cells, and no references to other cells.
    Its related to the COUNT function.
    If I drop off the last two columns it all seems to work ok.
    =(F153+H153)/(E153/2)
    where E153 is =COUNT(F153..I153)
    But if I try to use the last pair (columns J and K) it gets errors
    =(F153H153I153)/(E153/2)
    where E153 is =COUNT(F153..K153)
    DOES the COUNT function have a limitation to how many cells it can reference?
    It seems like for some reason the J column is corrupted. sometimes if there is any number in colum J it gets "circular reference error" EVEN though there is NO circulare reference only a number.
    BUT when I delete the number from Column J the error goes away.

  • Getting "museJSAssert: Error calling selector function: Reference Error: Web Pro is not defined".

    First off, I am not a coding person. I decided to use Muse becuse I am good with Illustrator and Photoshop.
    The sight I built: www.speedcinch.com is now getting a bunch of errors when it initially was working fine. I am using godaddy for a host and using their ftp.
    This is the error I am getting now: museJSAssert: Error calling selector function: Reference Error: Web Pro is not defined
    You can see how my sight is supposed to work at http://speedcinchcom.businesscatalyst.com/index.html
    I have no idea what to do. Please help.

    Well, if nothing else I've ascertained that it's not GoDaddy's connectivity issue, as the issue continues late into today, and it does vary a bit per the other error reports. Using FileZilla there are just a few timeouts in the log, enough to give some pause but not necessarily (according to GD) disruptive. I've checked the list of uploaded files against the Muse Export folder contents and everything is there. In fact, the site looks good, buttons work, rollovers, etc, but there are no images. Like everyone else, this has cost me time and money in the last 24 hours.
    Let's see what the good people at Adobe live chat have to say, and I'll share it with you.

Maybe you are looking for

  • Windows XP sp3 + iTunes 8 + New iPod Classic 120GB = Blue Screen Of Death

    HELP My PC has just upgraded itself with Windows XP Service Pack 3, I have downloaded iTunes 8, and just today bought a new iPod Classic 120GB so I could enjoy the new Genius facility (my old iPod was a 20GB model from 2005). However I keep getting t

  • How to install OVI Map navigation for N95

    Ok, getting very frustrated with this now.  I have given my dad my N95 to help him get around but just cant get the map navigation to work.  I downloaded the Nokia Map Loader (I had to go to a third party website as the Nokia links were all broken) a

  • Short Dump issue

    Dear all, hi, i am working on upgrade from 4.6 to ECC6. during unicode this statement is not working in ZReports. IMPORT: it_vbrp          FROM   DATABASE indx(st) ID '1' , It is giving short dump. with message When importing object "IT_VBRP", the st

  • I can't get a video from a PC user on iChat

    Hi, I have a brand new MacBook Pro with iChat 4.0.5 and my boyfriend just got a Vista based laptop to take to school so he has the newest version of aim. I have been able to chat with other mac users but he is the first I have had problems with. I ca

  • InDesign CS3 Print Booklet function

    I have an issue with InDesign CS3 Print Booklet Function. Certainly Print Booklet is not InBooklet by any stretch. It does however have to be an integral part of the InDesign Program(one of the reasons it is better than QuarkXPress). Print Booklet ta