Chassis View error

We have the "typical" error (LMS 3.0.1+CV 6.1.7):
Cannot find applicable device package for x.x.x.x:
This error could be due to one of the following:
- The device package for this device type is not installed.
- Device support for this device type is not available.
- You are trying to open a component inside a device.
To correct the problem, either install a device package for the device type, or open the
parent device to manage the component."
Looking through support, we have found:
Shutdown Daemon Manager, then copy all of the .zip files from NMSROOT/www/classpath/com/cisco/nm/xms/psu/pkgs/cvw to NMSROOT/MDC/tomcat/webapps/CVng/WEB-INF/classes/com/cisco/nm/cvw/devpkgs.  then restart Daemon Manager
We have problem with a SW6503, 6509 and 6513, but files are quite strange, i think

They are:
.1.3.6.1.4.1.9.1.282
.1.3.6.1.4.1.9.1.283
.1.3.6.1.4.1.9.1.400
They say it has been working till they deleted and added nodes again.
I have tried to delete package, and intall it again, and always the same error :-(
For Product(s) : CiscoView
Install Invoked by user : admin
The Package(s) Selected for Install :
Cat6000, Cat6000IOS
Successfully installed packages (2):
Cat6000(9.1) ,Cat6000IOS(30.0)
Installation Completed for : CiscoView
After deinstall/install packages, in www folder, only appear:
Cat6000.cv50.v9-1.zip
Cat6000IOS.cv50.v30-0.zip
So, i have to copy Cat6000.zip and Cat6000IOS.zip from MDC folder again!!!
Thanks in advance

Similar Messages

  • How to view errors if bulk collect has thrown errors

    Hi,
    I have few questions.
    1.How to view error whether bulk collect is successful or not
    2.What is identified & unidentified relationships in ERWIN
    3.How to see the errors whether the sql loder is successful or not
    and how to open the log file.Is there any specific command in UNIX
    which tells loader is successful or thrown error
    4.When executing the pl/sql procedure from UNIX.how to check for errors.
    Please provide the answers for this
    Thanks

    Use SAVE EXCEPTIONS clause in your FORALL loop.
    Is this for homework/test?

  • Crystal Report Windows Forms Viewer Error in 1 Workstation after upgrade of PL

    Hi all,
    We just upgraded SAP from 8.82 PL02 to 8.82 PL15.
    Afterwards, in just 1 workstation, Crystal Reports layouts have Crystal Report Windows Forms Viewer error I attach.
    Before the upgrade this error did not happen.
    No permissions or authorizations were changed  in the workstation.
    The Crystal Reports layouts remain working fine in server and in the other workstations.
    In the workstation following are installed:
    - Operating System Windows 7;
    - Microsoft .NET Framework 4.5;
    - SAP Crystal Reports runtime engine for. NET Framework;
    - Crystal Report 2008 Runtime SP6;
    - Microsoft SQL Server 2008 R2 Native Client.
    All, but the operating system, are equal to the other workstations.
    User has edit access to SAP folders, temp and access to the attach path.
    We already uninstalled SAP client and client agent and re-installed it but with no avail.
    Can anyone help me?
    Thanks in advance.
    Best regards,
    Pedro Mariano

    Hi San Xu,
    Thank you for your input.
    However I'm facing problem with each software is suitable.
    I installed SAP Crystal Reports for SAP Business One (CR 2011 V14.0.4.738), but with no avail.
    Thanks in advance.
    Best regards,
    Pedro Mariano

  • Unable to display tree view; Error when parsing an XML document (Premature end of file.)

    Hi folks,
    I am using a cascaded mapping in my OM. I have a graphical mapping followed by the Java mapping. It is a flat file to IDOC mapping. Everything works fine in Dev but when I transport the same objects to QA, the Operation mapping though it doesn't fail in ESR testing tool, gives the following message and there is no output generated for the same payload which is successfully tested in DEV. Please advise on what could be the possible reasons.
    Unable to display tree view; Error when parsing an XML document (Premature end of file.)

    kalyan,
    There seems to be an invalid xml payload which causes this error in ESR not generating the tree view. Please find the similar error screenshot and rectify the payload.
    Mutti

  • JavaMapping in PI 7.1 Error:Unable to display tree view; Error when parsing

    hi,
    i get by testing in PI 7.1 (operation mapping) this ERROR:
    "Unable to display tree view; Error when parsing an XML document (Content is not allowed in prolog.)"
    this is my java-programm-code:
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import com.sap.aii.mapping.api.StreamTransformation;
    import java.io.*;
    import java.util.Map;
    import javax.xml.parsers.*;
    import org.xml.sax.*;
    import org.xml.sax.helpers.*;
    /*IMPORT statement imports the specified classes and its methods into the program */
    /Every Java mapping program must implement the interface StreamTransformation and its methods execute() and setParameter() and extend the class DefaultHandler./
    public class Mapping extends DefaultHandler implements StreamTransformation {
    Below is the declaration for all the variables we are going to use in the
    subsequent methods.
         private Map map;
         private OutputStream out;
         private boolean input1 = false;
         private boolean input2 = false;
         private int number1;
         private int number2;
         private int addvalue;
         private int mulvalue;
         private int subvalue;
         String lineEnd = System.getProperty("line.separator");
    setParamater() method is used to store the mapping object in the variable
    "map"
         public void setParameter(Map param) {
              map = param;
         public void execute(InputStream in, OutputStream out)
                   throws com.sap.aii.mapping.api.StreamTransformationException {
              DefaultHandler handler = this;
              SAXParserFactory factory = SAXParserFactory.newInstance();
              try {
                   SAXParser saxParser = factory.newSAXParser();
                   this.out = out;
                   saxParser.parse(in, handler);
              } catch (Throwable t) {
                   t.printStackTrace();
    As seen above execute() method has two parameters "in" of type
    InputStream and "out" of type OutputStream. First we get a new instance
    of SAXParserFactory and from this one we create a new Instance of
    SAXParser. To the Parse Method of SaxParser, we pass two parameters,
    inputstream "in" and the class variable "handler".
    Method "write" is a user defined method, which is used to write the
    string "s" to the outpurstream "out".
         private void write(String s) throws SAXException {
              try {
                   out.write(s.getBytes());
                   out.flush();
              } catch (IOException e) {
                   throw new SAXException("I/O error", e);
         public void startDocument() throws SAXException {
              write("");
              write(lineEnd);
              write("");
              write(lineEnd);
         public void endDocument() throws SAXException {
              write("");
              try {
                   out.flush();
              } catch (IOException e) {
                   throw new SAXException("I/O error", e);
         public void startElement(String namespaceURI, String sName, String qName,
                   Attributes attrs) throws SAXException {
              String eName = sName;
              if ("".equals(eName))
                   eName = qName;
              if (eName.equals("NUMBER1"))
                   input1 = true;
              if (eName.equals("NUMBER2"))
                   input2 = true;
         public void endElement(String namespaceURI, String sName, String qName)
                   throws SAXException {
              String eName = sName;
              if ("".equals(eName))
                   eName = qName;
              if (eName.equals("NUMBER1"))
                   input1 = false;
              if (eName.equals("NUMBER2"))
                   input2 = false;
         public void characters(char[] chars, int startIndex, int endIndex)
                   throws SAXException {
              String dataString = new String(chars, startIndex, endIndex).trim();
              if (input1) {
                   try {
                        number1 = Integer.parseInt(dataString);
                   } catch (NumberFormatException nfe) {
              if (input2) {
                   number2 = Integer.parseInt(dataString);
              if (input2 == true) {
                   addvalue = number1 + number2;
                   mulvalue = number1 * number2;
                   subvalue = number1 - number2;
                   write("" + addvalue + "");
                   write(lineEnd);
                   write("" + mulvalue + "");
                   write(lineEnd);
                   write("" + subvalue + "");
                   write(lineEnd);
    in developer studio 7.1 i dont get error.
    this happens by testing the mapping-programm in ESR.
    can somebody help me please?

    Make sure that the xml created out after the java mapping is a valid xml with only one root node.
    Regards,
    Prateek

  • Refresh Order Management Materialized Views errors out in R12.1.3

    Hi All -
    Refresh Order Management Materialized Views errors out in R12.1.3 when submitted with blank parameters. Please find below error details ..
    OEXITORDMV module: Refresh Order Management Materialized Views
    Current system time is 15-OCT-2012 11:30:29
    **Starts**15-OCT-2012 11:30:29
    ORACLE error 12008 in FDPSTP
    Cause: FDPSTP failed due to ORA-12008: error in materialized view refresh path
    ORA-01555: snapshot too old: rollback segment number 4 with name "_SYSSMU4_3768336236$" too small
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2566
    ORA
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Thanks,

    Cause: FDPSTP failed due to ORA-12008: error in materialized view refresh path
    ORA-01555: snapshot too old: rollback segment number 4 with name "_SYSSMU4_3768336236$" too small
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2566Please see old threads for the ORA-015555 docs you need to refer to.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=ORA-01555&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=ORA-01555+AND+Materialized+AND+View&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Smart View Error: Requested Operation Failed. Error: Java.lang.NullPointerE

    Hi All,
    I get the below error when i refresh a report from smartview.
    Small reports works fine but if the report is huge i get this error
    Smart View Error: Requested Operation Failed. Error: Java.lang.NullPointerE
    Smart View 11.1.2 MS OFFICE 2007 SP3
    Essbase 11.1.2
    Any pointers.
    Regards,
    Mink

    you mean i have to set below in essbase.properties of aps
    SET JAVA_OPTIONS=–Xms128m –Xmx1024m
    Regards,
    Mink

  • Event Viewer errors and warnings

    How do I clear Event Viewer errors and warnings?

    This one may help.
    http://technet.microsoft.com/en-us/library/cc722318.aspx
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Smart View error when opening Powerpoint files read-only

    Users are experiencing the following error when they open a Powerpoint file as read only. Using MS Office 2007 with Hyperion 11.1.2.1 Doesn't happen in edit mode. Error reappears every time user pages down to next slide. Quite annoying!
    Shape. Tags : Invalid request. Presentations cannot be modified.
    Has anyone experienced this issue and resolved it?
    Thanks,

    Source: My oracle support
    =============================================================================================================================
    Applies to:
    Hyperion Planning - Version: 11.1.2.1.000 and later [Release: 11.1 and later ]
    Information in this document applies to any platform.
    Symptoms
    In Smart View Version 11.1.2.1.000, when attempting to open a PowerPoint document that is already open by other user the following error occurs:
    ERROR : Shape.Tags: Invalid Request. Presentation cannot be modified.
    Cause
    This issue has been verified as Unpublished Bug 12418027: SMART VIEW ERROR : SHAPE.TAGS : INVALID REQUEST. PRESENTATION CANNOT BE MODIFIED
    The cause of the problem is that when a presentation is edited by another user, an exception will be thrown while trying to query the tags in the presentation from a different process.
    Solution
    This issue has been fixed in the Oracle Hyperion Smart View for Office, Release 11.1.2.0.000 Patch Set 1 (PS1): 11.1.2.1.102 Release.
    This patch is available via My Oracle Support:
    1. Log into the My Oracle Support portal.
    2. Choose the Patches & Updates tab.
    3. Enter the Patch Name or Number from the drop-down box.
    4. Perform a search for Patch:12968304 for your corresponding OS platform.
    5. The patch file includes both installers and the readme.
    Additional Information:
    Please refer to the patch readme for system requirements, dependencies, and installation instructions.

  • Event Viewer Error Reports

    How do I send all my event viewer error reports from 3/1/15 to the manufacturer of my computer? IN the event viewer window there seems to be a lock on opening submenu to perform a copy and paste or a SEND option available. I have a WINDOWS 8.1
    OPERATING SYSTEM.

    You should be able to right click on each indivudual log "App, Sec, Setup, System, etc" and click on Save all events as.

  • Event in "view error log"

    Hi,
    I am using sun web proxy server 4.0.3 for windows (windows 2000). I used 4.0.2 but I have got some problems with cpu usage (process usage 100 %...).
    We are using Etrust Antivirus and recently I have got some problems when I am downloading new signature. Sometimes I can download new signature sometimes not.
    In Server status, view error log, I have severals :
    "[08/Sep/2006:12:34:53] info ( 3520): CORE3282: stdout: gc channel: ftpav.ca.com anonymous:sunproxy@ "
    ftpav.ca.com is from where i'm downloading new signature.
    Anyone can help me to understand these messages ?
    Mems.
    PS: sorry for my english.

    I have the same problem with ftp. If I try to download the same file several times with help of ftp proxy, after third or fourth retry proxy rejects my connections.
    It writes the same line in error log, and file is not accessible anymore.

  • IDS Event viewer error

    Hi All
    Please help me out with this .I am getting attached IDS Event viewer error while trying to install it .Please let me know the probable causes and how to rectify the same
    Regards
    Ankur

    At what stage of installation are you seeing this error?
    It appears that a SSL certificate has expired, or an applet has a digital signature based on a certificate that has recently expired.
    If you can provide recreation steps then we can figure out what certificate is expiring, and determine the next steps in resolving your issue.
    Without knowing anything else my best guess at this point is that the SSL certificate on your sensor has expired. If the sensor has been deployed in your network for over a year, then this jsut could be the standard expiration of the SSL certificate on your sensor. Try conneting from a web browser directly to your sensor. When your web browser connects it should warn you if the sensor certificate is expired. If this is the case then ssh or telnet to the sensor and execute: "tls generat-key" to enforce the creation of a new SSL certificate for your sensor.
    If the error is not from an expired SSL certificate, then it is from other certificate or digital signature and we will need to try and recreate in our lab.
    Once you provide us with re-create steps, then there is something you might try for a short term solution as we try to re-create.
    You might try setting the date/time on your PC to a few days ago. The certificate appears to have expired on April 23rd so setting it back to April 20th may make the error go away. I am not positive this will work, but may be worth a shot if you need access immediately and can't wait a day or 2 as analysis is done. This is not a permanent solution and would just be a temporary workaround as we try to analyze what certificate is expiring.

  • Viewing errors resulting from automated user replication

    hi guys
    pls tel me how to view errors resulting from automated user replication
    regards
    kamal

    Does it not appear in default trace?

  • Chassis-seeprom errors

    We have two different UCS systems that show chassis-seeprom errors (one is a brand new production system). E.g.,
    cnat-pod1-ucs6248-A# show cluster state
    Cluster Id: 0xde5abc12999911e1-0xb8c9547fee4ca524
    A: UP, PRIMARY
    B: UP, SUBORDINATE
    HA READYDetailed state of the device selected for HA storage:Chassis 1, serial: FOX1326G5KD, state: active with errors
    Fabric A, chassis-seeprom local IO failure:FOX1326G5KD READ_FAILED, error: TIMEOUT, error code: 10, error count: 37503
    Fabric B, chassis-seeprom local IO failure:
    FOX1326G5KD READ_FAILED, error: TIMEOUT, error code: 10, error count: 37504
    Warning: there are pending SEEPROM errors on one or more devices, failover may not complete
    UCSM seems blissfully unaware of the error. It does occasionally log events:
    cnat-pod1-ucs6248-A# show event | include shared-storage
    2012-05-12T15:28:14.547     78004 E4196535 device FOX1326G5KD, error accessing shared-storage
    2012-05-12T15:28:14.546     78002 E4196535 device FOX1326G5KD, error accessing shared-storage
    2012-05-11T05:43:14.544     77962 E4196535 device FOX1326G5KD, error accessing shared-storage
    2012-05-10T16:43:14.544     76405 E4196535 device FOX1326G5KD, error accessing shared-storage
    2012-05-09T20:43:14.544     74748 E4196535 device FOX1326G5KD, error accessing shared-storage
    2012-05-09T13:28:14.544     67198 E4196535 device FOX1326G5KD, error accessing shared-storage
            or in the GUI --
    But at least in my case, the error counters keep going up every few seconds, but there hasn't been an event for 3 weeks. Cisco's message/fault guide indicates that this event is very serious error and that TAC should be contacted. If that's the case, how come these are logged as events and not faults? How come there is no call-home trigger for this condition?
    -Craig

    Zaira,
    Is your advice true if the error count is constantly increasing?  Below is a related TAC note that one of my colleagues received:
    Q: Why the error accessing shared-storage fault can happen and why it is not harmful.
    A: In UCS chassis design, we build in a chip called, SEEPROM, on the backplane. SEEPROM is a permanent memory and used to store SAM DB version to avoid the case of SAM DB being overwritten by old version when failover happens. The communication between IO module and SEEPROM through a wiring on backplane is not repliable. To overcome this difficulty, we store  the identical SAM DB version in three chassises rather than in one (so called three chassises redundancy). Because the communication between IO module and SEEPROM is not repliable, the error accessing shared-storage fault can happen sometimes - this is system behavior per specification and design. So, as long as one SEEPROM is readable, the UCS works normally. In your reported case, one chassis SEEPROM has read problem and the other two work. So, the error accessing shared-storage fault is not harmful and does not affect the system operability.
    It seems that this isn't harmful if the error happens periodically. But what if the SEEPROM error count is increasing every minute? Doesn't that indicate that the SEEPRM can never be read? Wouldn't that be very serious if the UCS system had only one or two chassis?

  • HTML View Error in Crystal Report 2008 Designer

    Hi,
       I am getting an Error when i am trying to see the HTML Preview on the Crystal Report Designer. but, It is working Properly From CMC.
    I was getting the following Error.
    "Failed to access the HTML Server Page
    Contact your system administrator and make sure the BOE servers are running properly/
    Also make sure that the default viewer URL is set Properly in the CMC of BOE
    You can set the Default Viewer URL by following Steps
    1) Log into the CMC
    2) Clicl the APpplication Link.
    3) On the applications page Select CMC, CLcik the Manage menu, A=and Select Processing Settings.
    4) In the set default viewerURL, the URL Should be similarto the fllowing:
    http://[hostname]:[portnumber]/OpenDocument/Opendoc/OpenDocument.jsp?sIDType=CUID&IDocID=O%SI_CUID%"
    Kindly let me know how to resolve this issue. It was working properly. Thanks for your support in advance.
    Regards
    Shiva,

    It is still an issue for me.  I have a new install and am using WebElements to improve my reports.  I am new to 2008 Server (OEM version) so it's probably something very basic.  When I do a submit it shows a path of:
      BOE/OpenDocument/Opendoc/OpenDocument.jsp?sIDType=CUID&IDocID=O%SI_CUID%
    I don't even have a BOE folder.  My setting as instructed on the page is correct.  I have tried making changes but then the HTML preview doesn't even load the 1st page.  That leads me to believe that the link is correct regardless of what debug says.  Unlike other posts I have seen, my pages do not work in InfoView.  After hitting submit I get:
    http//servicedeskcrs:8080/OpenDocument/opendoc/openDocument.jsp?sType=rpt@sDocName=Resolution%20Report.rpt&lsSSelect1=1
    Notice that there is no : after http.  I have a feeling it is in a setting somewhere but I can't find it.

Maybe you are looking for

  • ITunes can't sync an audiobook with an iPhone!

    iTunes will not sync an AudioBook from the iTunes Store This is ridiculous - Apple charges for an audiobook in the store, but the sync fails so I can't listen to it on my iPhone - lots of similar questions and issues posted to discussion boards, but

  • IMovie 09 many Bugs

    1) Program cuts the audio track of time. I created the audio file length 2:04:12 minutes, iMovie this track down to 1:25:00 minutes. 2) I've created in Photoshop frame with black edges and alfachannel, in order to remove the rough edges. In this case

  • Internal Table and Structures

    Hi, I am a beginer. I know how to create a structure and how to create an internal table using ABAP/4. My problem is, i don't understand where to use internal table and structure, also i find myself very confused about the explicit work areas. Plese

  • + character on e-mail address, not valid in Admin.

    Hi, Some clients customers have + characters in their e-mail addresses, but BC admin does not allow this and marks it invalid. Please fix asap, customer cases and e-mail marketing won't work for the addresses that have + signs until this is fixed.

  • Load balancing VMs

    We are due for a server refresh of our ESXi hosts and I am planning on switching from our existinginverted pyramid of doomto 2 hosts with local storage and some replicating. My question is how much do I need to worry about load balancing the servers