Some Nodes missing in CCMS Exchange Infrastructure "System Errors"

Hi All,
I have configured the ccms for XI System PI 7.0.But there are some nodes that are missing under system errors in XI node of CCMS
Nodes present under system errors in XI:
outbinding
mapping
Nodes that are missing under system errors in XI:
XIcache
Rcvr_determination
if_determination
internal
message.
Any help greatly appreciated
Aravind

pls check the following URL:
- /people/dirk.jenrich/blog/2007/01/21/how-to-use-the-monitor-set-sap-ccms-technical-operation-templates
- /people/sap.india5/blog/2005/12/06/xi-ccms-alert-monitoring-overview-and-features
A+

Similar Messages

  • Mail for exchange E63- "system error-try again lat...

    Hi,
    Recently the mail for exchange email on my E63 has stopped working. It used to work, but then suddenly stopped and now says system error-try again later. I've tried all sorts of different connection settings and changing my credentials. I used the settings given from the setting up an iphone from the university.
    I dont know why it suddently wont work. The link to the info i used is below. Thanks for any help anyone can give as this is really bugging me now.
    Sam
    http://workspace.nottingham.ac.uk/display/~cczdas/​How+to+setup+University+email+on+an+iPhone

    More info on this - the  problem appears to relate to only Outlook 2007 and not XP.

  • Exchange Infrastructure Node has no elements in CCMS Templates

    Hi,
    I am configuring CCMS.When I choose Exchange Infrastructure node in SAP CCMS Monitoring Templates I dont get the tree. In blogs and articles I am able to see the tree.So far I have just created a System and System groups in rz21. I am stuck.
    Thanks in advance.
    Regards,
    Sudharshan

    Hi,
    Problem solved. The reason is that while maintaining system groups I gave a name different than ExchangeInfrastructure_Systems.
    Regards,
    Sudharshan

  • A bug in the JTree(Missing some nodes)

    I have an application which implement a JTree & DnDTree. The left hand side is the original JTee, the right hand size is DnDTree which allows user to Drag and Drop some node from left JTree. The bug is: when I grag some node to right DnDTree, once I then click the left JTree, some nodes will be missing. I try my best for more than one week, but still couldn't fix it, could anybody take time to fina a way to fix it? The piece of code of creating JTree is as follow:
    /*public void createTestTree()
    DefaultMutableTreeNode rootRight = new DefaultMutableTreeNode("Root");
    DefaultMutableTreeNode root = createTreeModel();
    treeLeft = new DnDTree(root, true); //JTree(root, true);
    treeLeft.putClientProperty("JTree.lineStyle", "Angled");
    treeLeft.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
    treeLeft.addTreeExpansionListener(new TreeExpansionListener(){
    public void treeCollapsed(TreeExpansionEvent e) {
    public void treeExpanded(TreeExpansionEvent e) {
    UpdateStatus updateThread;
    TreePath path = e.getPath();
    FileNode node = (FileNode)
    path.getLastPathComponent();
    if( ! node.isExplored()) {
    DefaultTreeModel model = (DefaultTreeModel)treeLeft.getModel();
    UpdateStatus us = new UpdateStatus();
    us.start();
    node.explore();
    model.nodeStructureChanged(node);
    class UpdateStatus extends Thread {
    public void run() {
    try { Thread.currentThread().sleep(450); }
    catch(InterruptedException e) { }
    SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    treeRight = new DnDTree(rootRight, true); treeRight.putClientProperty("JTree.lineStyle", "Angled");
    treeRight.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
    treeRight.addTreeExpansionListener(new TreeExpansionListener(){
    public void treeCollapsed(TreeExpansionEvent e) {
    public void treeExpanded(TreeExpansionEvent e) {
    UpdateStatus updateThread;
    TreePath path = e.getPath();
    FileNode node = (FileNode)
                             path.getLastPathComponent();               
    if( ! node.isExplored()) {
    DefaultTreeModel model = (DefaultTreeModel)treeRight.getModel();
    UpdateStatus us = new UpdateStatus();
    us.start();
    node.explore();
    model.nodeStructureChanged(node);
    class UpdateStatus extends Thread {
    public void run() {
    try { Thread.currentThread().sleep(450); }
    catch(InterruptedException e) { }
    SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    My FileNode class is:
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.tree.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.File;
    import java.util.EventObject;
    public class GoodFileTree extends JPanel {
         public GoodFileTree() {
              final JTree tree = new JTree(createTreeModel());
              JScrollPane scrollPane = new JScrollPane(tree);
              this.add(scrollPane, BorderLayout.WEST);
              //getContentPane().add(scrollPane, BorderLayout.CENTER);
              this.add(GJApp.getStatusArea(),BorderLayout.SOUTH);
              //getContentPane().add(GJApp.getStatusArea(),BorderLayout.SOUTH);
              tree.addTreeExpansionListener(new TreeExpansionListener(){
                   public void treeCollapsed(TreeExpansionEvent e) {
                   public void treeExpanded(TreeExpansionEvent e) {
                        UpdateStatus updateThread;
                        TreePath path = e.getPath();
                        FileNode node = (FileNode)
                                            path.getLastPathComponent();
                        if( ! node.isExplored()) {
                             DefaultTreeModel model = (DefaultTreeModel)tree.getModel();
                             GJApp.updateStatus("exploring ...");
                             UpdateStatus us = new UpdateStatus();
                             us.start();
                             node.explore();
                             model.nodeStructureChanged(node);
                   class UpdateStatus extends Thread {
                        public void run() {
                             try { Thread.currentThread().sleep(450); }
                             catch(InterruptedException e) { }
                             SwingUtilities.invokeLater(new Runnable() {
                                  public void run() {
                                       GJApp.updateStatus(" ");
         private DefaultMutableTreeNode createTreeModel() {
              /*File root = new File("E:/");
              FileNode rootNode = new FileNode(root);
              rootNode.explore();
              return new DefaultTreeModel(rootNode);*/
              DefaultMutableTreeNode top = new DefaultMutableTreeNode("Root");
              File[] fArr = File.listRoots();
              File fDrive;
              FileNode driveNode;
              for(int i=0; i<fArr.length; ++i)
                   fDrive = fArr;
                   driveNode = new FileNode(fDrive);
                   top.add(driveNode);
              return top;
         /*public static void main(String args[])
              try
                   UIManager.setLookAndFeel(
                   UIManager.getSystemLookAndFeelClassName()
                   //UIManager.getCrossPlatformLookAndFeelClassName()
              catch (Exception e)
              GJApp.launch(new GoodFileTree(),"JTree File Explorer",
                                            300,300,450,400);
    class FileNode extends DefaultMutableTreeNode {
         private boolean explored = false;
         public FileNode(File file)      {
              setUserObject(file);
         public boolean getAllowsChildren() { return isDirectory(); }
         public boolean isLeaf()      { return !isDirectory(); }
         public File getFile()          { return (File)getUserObject(); }
         public boolean isExplored() { return explored; }
         public boolean isDirectory() {
              File file = getFile();
              return file.isDirectory();
         public String toString() {
              File file = (File)getUserObject();
              String filename = file.toString();
              int index = filename.lastIndexOf(File.separator);
              return (index != -1 && index != filename.length()-1) ?
                                                 filename.substring(index+1) :
                                                 filename;
         public void explore() {
              if(!isDirectory())
                   return;
              if(!isExplored()) {
                   File file = getFile();
                   File[] children = file.listFiles();
                   for(int i=0; i < children.length; ++i)
                        add(new FileNode(children[i]));
                   explored = true;
    class GJApp extends WindowAdapter {
         static private JPanel statusArea = new JPanel();
         static private JLabel status = new JLabel(" ");
         public static void launch(final JFrame f, String title,
                                       final int x, final int y,
                                       final int w, int h) {
              f.setTitle(title);
              f.setBounds(x,y,w,h);
              f.setVisible(true);
              statusArea.setBorder(BorderFactory.createEtchedBorder());
              statusArea.setLayout(new FlowLayout(FlowLayout.LEFT,0,0));
              statusArea.add(status);
              status.setHorizontalAlignment(JLabel.LEFT);
              f.setDefaultCloseOperation(
                                       WindowConstants.DISPOSE_ON_CLOSE);
              f.addWindowListener(new WindowAdapter() {
                   public void windowClosed(WindowEvent e) {
                        System.exit(0);
         static public JPanel getStatusArea() {
              return statusArea;
         static public void updateStatus(String s) {
              status.setText(s);
    Thanks in advance.

    Hi Paul,
    sorry for my late reply, but I usually don't work on weekends (this time it was an exception).
    OK, then, to your problem:
    - at the first look I thought you did NOT follow all the instruction (namely, the constructor of your trees has no info that you want to use model, or whatsoever), but later I realized that your approach: create the tree first and then assign a model to it (or in fact, get the model from the tree via: tree.getModel()) might work as well
    - having no debugger I am not able to have much clue about your program / and it seems that you coding suffers from your being in a hurry:
    - no comments - don't know which method is expected to do what
    - misleading names (createTreeModel does nothing with the model, but creates some new nodes??)
    therefore, I'm sorry, but I'm not able to detect exactly where the error is.
    - anyway, having a quick glance on your code I have some suspections:
    - you have 2 trees (treeLeft, treeRight), but just one model (model)
    ( it seems that you assign it dynamically when needed - either you take the model of the left or of the right tree)
    - however, when this assignment takes place (in createTestTree()), you DO NOT ASSIGN IT to the class' protected attribute model, but to a local variable model (of the same type, however - since you introduce it as:
    DefaultTreeModel model you override the model from class' attributes) - therefore, your assignment is no valid when the block in which ot is located is finished
    - note, that you NEED the model when you add/delete nodes of the tree (somewhere in DnDTree? - then quite probably your local assignment of model is not valid any longer)
    My suggestion, therefore, is:
    somehow try to encapsulate the model to your tree (note that I only created the model outside the tree, because I needed it for running the constructor, but all other usages of the model are made WITHIN the class of the tree) - the best, do it the same way - through the constructor
    then, in the place when you insert/remove nodes you will have no problem at all
    I will e-mail you my whole "project" so that you may observe all parts - how it's written. I trust if you can't figure it out from my writings here (maybe I missed the point) you may get it from that example.
    Hope it helps - GOOD LUCK

  • Systems errors node in CCMS monitoring

    Hello,
    I try to build up CCMS monitoring in our XI system.
    At the moment there is no error in the system.
    When following the instructions from SAP and SDN everything looks fine except one issue.
    E.g. in /people/aravindh.prasanna/blog/2005/12/24/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part-2 from Aravindh (great blog series!)
    in the first screen shot there is a node "System errors".
    Such a node is missing in my configuration!
    My question is: How to generate it, e.g. to implement a mail sender for upcoming errors in the category node?
    Is this node generated automatically when the first error comes up for one of the different categories?
    Best regards
    Dirk

    Dirk,
    Go through the below links:
    /people/aravindh.prasanna/blog/2005/12/23/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part--1
    /people/aravindh.prasanna/blog/2005/12/24/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part-2
    /people/aravindh.prasanna/blog/2006/02/20/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part-3
    /people/sap.user72/blog/2005/11/24/xi-configuring-ccms-monitoring-for-xi-part-i
    /people/sap.user72/blog/2005/12/05/xi-grmg-customizing-for-xi-ccms-heartbeat-monitoring-part-ii
    With the help of those you can configure and get System Erros node in CCMS.
    Regards,
    ---Mohan

  • Technical system in SLD for Exchange Infrastructure prod entry deleted

    Hello,
    Technical system in SLD for Exchange Infracture  does not have any entries.
    Integration server entry is also not existing.
    adapter engine,domain,integration server,integration directory,integration repository,rwb do not exists.
    My main concern is there is no entry for Integration Server - how can I get back this entry . I restarted J2EE engine from NWA but still I am not able to see Integration server entry under Exchange Infrastructure technical system.
    I also did RZ70 but no use.
    Please suggest.

    Hi
    One of the steps, when applying note #764176, is to delete all 6 of these entries in the SLD. So deleting the entries is not a big problem. These entries should be automatically created when you have successfully completed all the steps in note #764176. So, I'd recommend to apply all steps in this note.
    Also, ensure the system is consistently patched i.e. ABAP, Java and XI components must be on the same SP level. An inconsistently patched system is another possible cause of this error.
    What happens when you run the SLDCHECK transaction? Do you see errors here?
    Regards
    Mark

  • SLD - Technical System Type Exchange Infrastructure

    Hi experts,
    does anybody know how these Entries in the SLD appear?
    Technical System Type: Exchange Infrastructure
    Adapter Engine
    Adapter Framework
    Domain
    Integration Directory
    Integration Repository
    Integration Server
    RWB
    Runtime Management Server
    are they generated automatically? at which time? whats the trigger for them to appear?
    Or are they inserted manually?
    Thanks!
    Chris

    hi,
    >>are they generated automatically? at which time? whats the trigger for them to appear?
    Or are they inserted manually?
    automatilly
    RZ70 in SAP ABAP
    and from visual admin - SLD bridge
    Regards,
    Michal Krawczyk

  • PI7.0: SLD - Technical System of type "Exchange Infrastructure"

    Hi Guys,
    The adapter engine was empty in the integration directory and as part of it i followed the steps in the sap note - 764176 Error in XI due to inconsistency in the sld. I did the following steps
    1. Switch to "Home" in the "Technical Landscape" view, and select the
    "Exchange Infrastructure" technical system type there. Select all
    domains and XI components for the host and delete these by selecting
    them and pressing 'Remove'.
    2. Restart the J2EE server. After you restart the server, the XI
    components log on to the SLD again and create a new entity of class
    "XI Integration Server".
    3. To register the directory and repository again, you must also log on
    to the two tools.
    I have restarted the j2ee server and looged into the IR and ID but they are not automatically registered in the central sld.
    central sld is on solmanger box.  How to register IR, ID, RWB and central adapter engine under the technical systems of type exchange infrastructure ?
    any help would be really appreciated
    Thanks,
    Raj

    Hi Reddy,
    i faced the same problem few days back...
    check this link
    /people/venugopalarao.immadisetty/blog/2007/03/15/adapter-engine-cannot-be-found-in-integration-directory
    and also cross-check the post installation steps.
    In my case the Business system for XI was created of type web as java... but it should be of type web as abap.
    Sachin

  • If technical system type is Exchange Infrastructure.

    Hi,
    In sld,when my technical system type is Exchange Infrastructure,there are 3 elements:adapter engine ,domain and integration server.But i know the right result is 6 elements,so other 3 elements are:integration repositary ,integration directory and rwb.Can you tell me how to add them?
    Thanks in advance.
    Best regards!

    Hi xinjiang.
    Apply note 764176, it may help you. It helps you to get all the components self-registered in the SLD.
    https://websmp230.sap-ag.de/sap(bD1lcyZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=764176&nlang=EN&smpsrv=https%3a%2f%2fwebsmp203%2esap-ag%2ede
    Regards,
    Gari.

  • Urgent! Hierarchy Nodes Missing in Queries

    Hi,
        For cost center hierarchy, some nodes r missing in the Query. I checked in the cost center hierarchy tab page. i could see all the nodes in 0Costcenter and as well as in source system. How can i get all the hierarchies nodes. what exactly the problem. why some nodes r missing.
    please respond me immediately if any body faced with same kind of problem.
    Nagesh.
    Message was edited by: Nagesh Ganisetti
    Message was edited by: Nagesh Ganisetti

    could u please confirm any body... Hierarchy node will be displayed only when relevant Transactional data si available?
    for my costcenter hierarchy, Somes nodes r missing.
    plz guide me.
    Nagesh
    Message was edited by: Nagesh Ganisetti

  • SAP Exchange Infrastructure

    Can any one tell me about SAP Exchange Infrastructure, what is it, where it is reqd., what r the requirements to install it, or any source of material to read
    abhishek

    Hi Abhishek,
    As u got .....the basic information. check these links for further info.
    JDBC Receiver: exact SQL statement
    /message/527697#527697 [original link is broken]
    And after you are done with the documentation probably you can go through this scenario,
    JDBC Receiver: exact SQL statement
    Also check the following threads which might help you a little more,
    Learning XI
    XI 3.0 Training
    Also for more info related to XI go through these links:
    XI -Starter
    http://help.sap.com/saphelp_nw04/helpdata/en/e1/8e51341a06084de10000009b38f83b/frameset.htm
    SAP XI - Where to Find Information
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/xi/sap%20xi%20-%20where%20to%20find%20information.pdf
    All the information you need in XI :
    http://help.sap.com/saphelp_nw04/helpdata/en/0f/80243b4a66ae0ce10000000a11402f/frameset.htm
    To understand the architecture of XI, Please go through this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
    You can also go through the url for Elearning :
    https://www.sdn.sap.com/sdn/elearning.sdn // https://www.sdn.sap.com/irj/sdn/sdnpilot/elearning
    Following is the link for 'how to guides', A step by step guide to create scenarios:
    https://websmp201.sap-ag.de/nw-howtoguides
    XI is all about configuration of Adapters, to learn more please go through this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/0d/5ab43b274a960de10000000a114084/frameset.htm
    One of the most powerful feature of XI, Business Process Management:
    http://help.sap.com/saphelp_nw04/helpdata/en/3c/831620a4f1044dba38b370f77835cc/frameset.htm
    Following are the links to weblogs which will help to develop the basic scenarios.
    /people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters - IDoc to File
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy - ABAP Proxy to File
    /people/sap.user72/blog/2005/06/01/file-to-jdbc-adapter-using-sap-xi-30 - File to JDBC
    /people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy - File to ABAP Proxy
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1 - File to File Part 1
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2 - File to File Part 2
    /people/ravikumar.allampallam/blog/2005/06/24/convert-any-flat-file-to-any-idoc-java-mapping - Any flat file to any Idoc
    /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit - File to RFC
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1685 [original link is broken] [original link is broken] [original link is broken] [original link is broken] - File to Mail
    /people/jayakrishnan.nair/blog/2005/06/20/dynamic-file-name-using-xi-30-sp12-part--i - Dynamic File Name Part 1
    /people/jayakrishnan.nair/blog/2005/06/28/dynamic-file-namexslt-mapping-with-java-enhancement-using-xi-30-sp12-part-ii - Dynamic File Name Part 2
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address - Dynamic Mail Address
    /people/siva.maranani/blog/2005/05/25/understanding-message-flow-in-xi - Message Flow in XI
    /people/krishna.moorthyp/blog/2005/06/09/walkthrough-with-bpm - Walk through BPM
    /people/siva.maranani/blog/2005/05/22/schedule-your-bpm - Schedule BPM
    /people/sriram.vasudevan3/blog/2005/01/11/demonstrating-use-of-synchronous-asynchronous-bridge-to-integrate-synchronous-and-asynchronous-systems-using-ccbpm-in-sap-xi - Use of Synch - Asynch bridge in ccBPM
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403 [original link is broken] [original link is broken] [original link is broken] [original link is broken] - Use of Synch - Asynch bridge in ccBPM
    /people/michal.krawczyk2/blog/2005/08/22/xi-maintain-rfc-destinations-centrally - Maintain RFC destination centrally
    /people/sravya.talanki2/blog/2005/08/18/triggering-e-mails-to-shared-folders-of-sap-is-u - Triggering Email from folder
    /people/sravya.talanki2/blog/2005/08/17/outbound-idocs--work-around-using-party - Handling different partners for IDoc
    /people/siva.maranani/blog/2005/08/27/modeling-integration-scenario146s-in-xi - Modeling Integration Scenario in XI
    /people/michal.krawczyk2/blog/2005/08/25/xi-sending-a-message-without-the-use-of-an-adapter-not-possible - Testing of integration process
    /people/michal.krawczyk2/blog/2005/05/25/xi-how-to-add-authorizations-to-repository-objects - Authorization in XI
    http://help.sap.com/saphelp_nw04/helpdata/en/58/d22940cbf2195de10000000a1550b0/content.htm - Authorization in XI
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step - Alert Configuration
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide - Trouble shoot alert config
    /people/sameer.shadab/blog/2005/09/21/executing-unix-shell-script-using-operating-system-command-in-xi - Call UNIX Shell Script
    /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi - Transport in XI
    /people/r.eijpe/blog/2005/11/04/using-abap-xslt-extensions-for-xi-mapping - Using ABAP XSLT Extensions for XI Mapping
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure - Mail Adaptor options
    /people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm - Collection of IDoc to Single File
    /people/sap.user72/blog/2005/11/17/xi-controlling-access-to-sensitive-interfaces - Controlling access to Sensitive Interfaces
    /people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14 - The same filename from a sender to a receiver file adapter - SP14
    /people/prasad.illapani/blog/2005/11/14/payload-based-message-search-in-xi30-using-trex-engine - Payload Based Message Search in XI30 using Trex Engine
    /people/sap.user72/blog/2005/11/24/xi-configuring-ccms-monitoring-for-xi-part-i - XI : Configuring CCMS Monitoring for XI- Part I
    /people/michal.krawczyk2/blog/2005/11/23/xi-html-e-mails-from-the-receiver-mail-adapter - XI: HTML e-mails from the receiver mail adapter
    /people/sap.user72/blog/2005/11/22/xi-faqs-provided-by-sap-updated - XI : FAQ's Provided by SAP
    1) How-to Guides for SAP NetWeaver 2004 for SAP XI:
    Exchange Infrastructure How-to Guides for SAP NetWeaver 2004 [original link is broken]
    Regards,
    Priyanka.

  • TS4123 A recent download of an iTines update - for whatever reason - failed on my computer.  Since then I get a system error statement telling me that the program cannot open because 'MSVCR80.d11' is missing from my computer.  When I attempt to open iTune

    A recent download of an iTunes update, for some unknown reason, failed on my computer.   Since then I get a system error message everytime I log on telling me that the program cannot be opened because 'MSVCR80.d11' is missing from my computer.   When I try to open iTunes I get an 'error 7 (Windows error 126)' message and am advised to reinstall iTunes.   However, when I attempt to do this, it downloads the programme and gets as far as installation, at which point I get yet another message: this time 'Service Apple Mobile Device failed to start'.
    I am at a loss to know what to try next and would appreciate any assistance.  I'm also concerned that, in the process of reinstalling iTunes, I am going to lose all the music I have collected over the years.

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99602)

  • HELP! How can i restore/recover files from Bootcamp with Boot Failure - Missing operating system error?

    Hi,
    I am having a few problems with bootcamp on my imac. When i tried to move the bootcamp partition on windows 7 into free space, it crashed and turned off. Ever since i have had the error 'Missing operating system' and it fails to boot. I have some very important files on the bootcamp partition. Is it possible to recover these files or even to restore the bootcamp partition to it's original state? I do not have a backup of my bootcamp partition. Another problem i have is that ever since i tried to expand my macintosh HD partition into free space, when i hold alt while booting up (to choose which partition to boot like i normally do), the bootcamp partition has stopped appearing. This means that i cannot even boot the windows 7 bootcamp partition anymore!
    So basically here are my 2 questions:
    How can i restore/recover files from Bootcamp with Boot Failure - Missing operating system error?
    How can i make the Bootcamp partition appear in Startup Disk and when i hold the option key while starting up my computer to allow me to boot windows 7?
    Any solutions are very much apreciated!
    Thanks!
    I know that bootcamp (disk0s4) hasn't been fully deleted since it appears in disk utility (i cant do anything to it though)
    And here is the error i see when i try to launch bootcamp (back when i was actually able to boot up bootcamp to the error screen)

    WinClone 3 is OS X and saves Windows image it makes for restore - that should work but you will have to try and you would need to make a new image unless it also works with a native Windows system restore image. It is now supported and has come a long way.
    http://www.twocanoes.com/
    Paragon Clone OS works and does disk-to-disk clone just like CCC you end up with two bootable drives. But does not work with your setup. It would let you clone and move your Windows install to an SSD or another disk drive though and be bootable.
    During its clone process it checks for errors which is very helpful and lets you know - something CCC and others should adopt more of.
    http://www.paragon-software.com/downloads/demo.html
    I wish for our/my sake you had re-read and rewritten the long 'story' and broken it into a brief list of facts we needed.
    OS X
    Windows
    Backup (though external is much safer) and you want bootable OS X clones as well as TimeMachine
    https://support.apple.com/kb/HT1427
    https://support.apple.com/kb/HT1553
    There are a number of things to do like chkdsk and others as well as Windows DVD to do automatic system repairs and find out why.
    AppleHFS - the abilty to mount and read HFS volumes can be notorious.
    I would rearrange and redo your storage setup and how you use the 4-5 internal hard drive bays.

  • Mail for Exchange System Error, try again later. F...

    my E71 running S60 Mail For Exchange works fine for email, but as soon as we start syncing calendar, we get this error "System Error. Try again later"
    i have researched further. The phone log shows the sync falls over on outlook recurring appointments. Some threads suggest the offending appts are those without end dates and adding them will fix it, but this is not correct. Our recurring appointments are created in Maximizer and synced to Outlook. They all have end dates which show in both Maximizer and Outlook.
    The log message on phone is: "Failed to store calendar entry in device database". If you google that you come across the link to another thread
    /discussions/board/message?board.id=messaging&thread.id=7858
    where it seems that MFE simply does not work properly with Outlook calendar recurring appointments and no solution is offered by Nokia. E71's run Symbian S60 and Mail For Exchange is the Nokia offering, which appears to be a derivative of Roadsync. Both appear to have the same shortcoming. Even the latest MFE version, V2.09.158, contains the problem, as we just upgraded on phone to try for a fix.
    We have a fleet of E71's, having reverted to Nokia from Win Mobile devices. We were even looking forward to N97's, but we are now planning to move back to a Windows Mobile device. At least we can see the calendar on these!
    For now, we have to remove calendar syncing on phone and delete all calendar entries, so the phone again syncs for email and contacts.
    Nokia, how about a FIX before your new generation of "Smart Phones" are consigned to the wastebin? Please don't just tell us to change a setting on the server, unless you know it works.
    This is your last chance with us. Time is too precious  to waste on dodgey software.

    More info on this - the  problem appears to relate to only Outlook 2007 and not XP.

  • Hpqdirec.exe – System error. The program can't start because ATL90.DLL is missing from your compute

    Hello,
    The following has only transpired recently. It concerns Windows 7 and my C6380 All-In-One.
    It appears to be a registry issue. I am experienced and have tried even more than that listed below.
    On launching the "HP Solution Centre", I receive the following error message:-
    “Hpqdirec.exe – System error.  
    The program can’t start because ATL90.DLL is missing from your computer. Try reinstalling the program to fix this problem."
    Are you able to advise on how I can resolve this issue. Clearly, I want to avoid a complete clean install of my PC.
     What I have tried
    - Complete Install, Reboot, Install of the HP Software
    - Restore points
    - Running virus scanners
    - Windows "Start-up Repair"
    , - Running RegZooka

    I can think of a couple of possibilities here.
    One, if this was an upgrade from XP or Vista, then it is possible that the file is just not there in the operating system. Or if some other uninstallation removed it unknowingly. Not likely but possible.
    More likely, some sort of security software (firewall/antivirus/malware) blocked part of the installation. This could result in missing HP items and/or missing linkage to operating system necessities. You might try reinstalling with the security software disabled or off completely. At the minimum, with options to allow the HP installation full access during the install.
    Hope that helps.
    007OHMSS
    I was a support engineer for HP.
    If the advice resolved the situation, please mark it as a solution. Thank you.

Maybe you are looking for