DI Connect to SBO after load from Transaction Notification

Hi all,
I saw few posts on this issue.
I want to connect to SBO after class was loaded by TN.
SBO and DLL hang.
someone solved it using SQLAgent - please explain..?
is there any other solution??

Hi Yaniv,
I also had the same problem. What I did is read a bit about the DI Event Service <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/53cefa6a-0a01-0010-cd8e-e7c189cb6519">SAP Business One DI Event Service</a>
and modified the <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/business_packages/a1-8-4/b1dieventservice.zip">Source Code</a>. What it does is use a dll that gets the data from the TN. Then a service creates a thread that communicates with this dll by sockets and gets the data. In this thread you can connect to DI API without problems. This service has .NET Remoting and MSMQ capabilities, that I removed, because I only wanted all to run in the server (and also had problems with MSMQ).
Anyway, the original program is <b>very</b> good, but it needs to have more documentation about MSMQ.
Hope this helps,
Ian

Similar Messages

  • Error while activating DSO after loading from another DSO..Production issue

    Hello Gurus,
    I got an error while activating DSO2 after loading from another DSO1.
    DSO1 load and activation was sucessful but while loading from DSO1 to DSO2 load was fine but got error while activating...
      >Error when assigning SID: Action VAL_SID_CONVERT table ZWEEK_NUM
      >Value u201809u2019 of characteristic ZWEEK_NUM is not a number with 000004 spaces
    this theard was posted after searching for related post in SDN.
    and i tried Function Module RSODS_CHECK_RSODSACTUPDTYPE but it is not available .. but I used this in BW 3.10u2026..
    is their any similar Function Module in BI 7.0 please advice.
    We are using SAP NetWeaver BI 7.0
    Release- 700    Service level- 017
    Thanks in advance
    Sandy

    sloved the issue......
    it was due to wrong data for the related field...
    it  must be "0009 "
    Thanks for ur support. closing the ticket
    Regards
    Sandy

  • Aperture 3.2.4 macbookpro lion: image disappears after loading from any project; repairing everything on starting app doesn't fix it. Only restarting the computer works. Any help, please? ... in non-technical language please. Thanks

    aperture 3.2.4, macbookpro lion: image disappears after loading from any project; repairing everything on starting app doesn't fix it. Only restarting the computer works. Any help, please? ... in non-technical language please. Thanks

    “Hi Kirby, thanks a lot for your answer.
    I got one answer, from DMoore, saying:
    “Try Safe boot and then restart with only Aperture open.  Still doent work write back with more details like Ram, HD capacity/free space.  Are these thumbnails or Previews? Have you turned off building previews in AP preferances?
    Safe boot   http://support.apple.com/kb/HT1564
    Starting up into Safe Mode does several things:
    1  It forces a directory check of the startup volume.
    2  It loads only required kernel extensions (some of the items in /System/Library/Extensions).
    3  In Mac OS X v10.3.9 or earlier, Safe Mode runs only Apple-installed startup items (such items may be installed either in /Library/StartupItems or in /System/Library/StartupItems; these are different than user-selected account login items).
    4  It disables all fonts other than those in /System/Library/Fonts (Mac OS X v10.4 or later).
    5  It moves to the Trash all font caches normally stored in /Library/Caches/com.apple.ATS/(uid)/ , where (uid) is a user ID number such as 501 (Mac OS X v10.4 or later).
    6  It disables all startup items and login items (Mac OS X v10.4 or later).
    7  Mac OS X v10.5.6 or later: A Safe Boot deletes the dynamic loader shared cache at (/var/db/dyld/). A cache with issues may cause a blue screen on startup, particularly after a Software Update. Restarting normally recreates this cache.”
    As I don’t know much about the technical aspects of computers, I don’t really understand the first answer, and it sounds like following it might produce unwanted changes.
    But I understand your questions, so I’ll try to answer them;
    "loading from any Project" means that I encounter the problem when I’m using a project, possibly after/because I’ve left the Mac on overnight, and/or  I’ve made a lot of adjustments, and, once the problem is there, it happens in any other project which I open – the images load then disappear.
    I can see images in the Browser, so it only happens in the Viewer(s).
    I’m afraid I don’t understand what you mean by: “If you select "Photos" from near the top of the Library tab of the Inspector, does it show you all of your Images?”. I am a newcomer to Aperture, so I don’t know what some of the buttons are for yet, but when I want to look at and adjust my pictures, I import them, as referenced images, then Aperture creates a folder/project in the Library. When I click on that Project (when it’s working properly), all the images appear in the Browser or the Viewers  – without me needing to “select Photos from near the top of the Library tab of the Inspector”. I selected it and looked at all the items in the dropdown menu, but none of them seems to offer the option to ‘show all the images’. So I’m not sure how to answer your question except to say that – yes, I can see all the pictures in the Browser or the Viewers (when it’s working properly), but I don’t seem to need to use the Photos button to achieve this.
    Did Aperture work before?
    Yes it worked ok for a while, but I only purchased it on 24th May.
    If I understand correctly, the difference between thumbnail and preview is that the thumbnail is what I see when the “Loading” wheel is turning, and the disappearance of this wheel after a few seconds means that I am now looking at the preview (also, the thumbnail cannot be adjusted).
    So I think the problem occurs when the thumbnail has finished loading; the viewer going blank/grey might mean that it is not showing the preview.
    But I have not changed the default Preview settings in Aperture Preferences.
    My macbookpro details:
    2.7 Ghz Intel Core i7
    Memory: 8 Gb 1333 MHz DDR3
    Hard Drive capacity 499.25 GB
    Available 387.36 GB
    I have noticed another problem: I cannot apply the same rating to multiple images: following the instructions, I select a group of contiguous (or non- contiguous) images, choose a selection eg “5stars” using the keyboard, but the stars only appear in the last selected image – even though all the images are still showing as selected.”
    I hope this helps you to understand more.
    Thank you for trying to help me.
    Tony

  • Difference between closing the connection before and after committing user transaction?

              I was wondering what's the difference between closing the connection before committing
              the transaction versus closing the connection after committing the transaction?...
              for e.g....
              Scenario 1.........
              UserTransaction useretran;
              usertran.begin();
              Connection con = datasource.getCOnnection();
              // do bunch of stuff...
              conn.close();
              usertran.commit()
              Scenario 2...
              UserTransaction useretran;
              usertran.begin();
              Connection con = datasource.getCOnnection();
              // do bunch of stuff...
              usertran.commit()
              conn.close();
              thanks....
              Srini
              

    Hi. As long as you're sure there's a transaction going on, and the connection
    is a transaction-aware object (from a TxDataSource), either will be fine.
    In the first scenario the actual semantics of the close() call are less than
    normal, because we really don't close the connection or return it to the
    pool until the actual transaction commits, and in the second case, we have
    already taken the connection out of your service as of the commit().
    The second scenario is the usual coding style. If there's ever a chance your
    code will get non-transaction-aware connections, it is crucial to close
    connections, and I always recommend putting the close() in a finally block
    so it's guaranteed to happen.
    Joe
    srinivas wrote:
    I was wondering what's the difference between closing the connection before committing
    the transaction versus closing the connection after committing the transaction?...
    for e.g....
    Scenario 1......... UserTransaction useretran; usertran.begin(); Connection con =
    datasource.getCOnnection(); // do bunch of stuff... conn.close(); usertran.commit()
    Scenario 2... UserTransaction useretran; usertran.begin(); Connection con = datasource.getCOnnection();
    // do bunch of stuff... usertran.commit() conn.close();
    thanks....
    Srini

  • TS1368 Can't open or connect to iTunes after loading the latest 6.0 any help

    Any help you can see and extend for this problem of not connecting to iTunes store as well as app store happened just after loading up the latest 6.0
    Thanks guys and appreciate any help you can extend,
    SnyCz

    I tested this:
    Reinstalled Aperture 3.1 from the Trial Installer.
    In some way it seems to be working. But the whole thing is a scary Chimera.
    It can create an Aperture library. I can import and edit images, even in Graphic Converter ias an external editor.
    But the Media Browser does not show the aperture Library that I created.
    The versioning is inconsistent. The library appears as an Aperture 3.4 library in the Finder.  Aperture 3.5 seems to be able to read this library and to upgrade it to 3.5
    The Applications folder is showing the application as version 3.4 and as compatible. Spotlight is showing it as illegal.
    When opening the chimera Aperture, I see plenty of warnings in the Console window:
    An Aperture "Hang" report
    xpcproxy assertion failed
    com.apple.IconServiceAgent: main failed to composite image
    quicklookd: Warning
    and more ... the hang was critical. I had to force quit Aperture more than once.
    So be careful. I would not trust any important Aperture library to this patched application, without testing thoroughly. Be careful with your  precious photos.

  • HP Media Center PC m1050e - Can't connect to internet after upgrade from XP to Windows 7

    My desktop PC with Windows 7 will not connect to the internet after upgrading from XP to Windows 7 Home Premium.  This upgrade actually required saving files and a fresh install of Windows 7.  When getting Router support help to load a new driver, I keep getting a an error message "Realtek Network Contoller Was Not Found".  They say it's an issue that HP will need to help resolve.  Can anyone help?
    This question was solved.
    View Solution.

    Thank you very much for your help.  I will look into the two options you gave me.

  • Remote Desktop Connection stop working after upgrade from 10.5.8 to 10.6.1

    I too could not connect to a W2K3 server with RDC 2.0.1 after upgrading from Mac OS X, 10.5.8 to 10.6/10.6.1. I have another Mac which is on 10.5.8 and connect fine with the same version of RDC 2.0.1 as well as other PC with Terminal Service Clients.
    There is no change on the server side. I have uninstalled and reinstalled RDC 2.0.1 several time and it did not resolve the issue. To rule out firewall/network, I tested with another remote desktop application called CoRD (for Mac) on the same laptop running SL 10.6.1 and it connected to the same W2K3 server fine.
    One thing that is worth mentioning (in my case), when it does not connect, RDC totally quit (not running anymore. Not minimize, no cannot connect error message, no little dot on the Dock for RDC, nothing) right after I put in the credential in. When looking at the log entries that are related to RDC in the Console application, I see the following
    machine 10.6.1. with RDC 2.0.1 (non-working)
    9/22/09 1:17:16 PM [0x0-0x3a03a].com.microsoft.rdc[468] objc[468]: Class NLAssertionHandler is implemented in both /Applications/Remote Desktop Connection.app/Contents/MacOS/../Frameworks/Netlib.framework/Versions/12/Netlib and /Applications/Remote Desktop Connection.app/Contents/MacOS/../Frameworks/RDCPAL.framework/Versions/12/RDCPAL . One of the two will be used. Which one is undefined.
    On the 10.5.8 machine with RDC 2.0.1 (working), I see the following entries
    9/22/09 1:13:23 PM [0x0-0x24f24f].com.microsoft.rdc[5502] objc[5502]: Class NLAssertionHandler is implemented in both /Applications/Remote Desktop Connection.app/Contents/MacOS/../Frameworks/Netlib.framework/Versions/12/Netlib and /Applications/Remote Desktop Connection.app/Contents/MacOS/../Frameworks/RDCPAL.framework/Versions/12/RDCPAL . Using implementation from /Applications/Remote Desktop Connection.app/Contents/MacOS/../Frameworks/RDCPAL.framework/Versions/12/RDCPAL .
    9/22/09 1:13:39 PM Remote Desktop Connection[5502] * _NSAutoreleaseNoPool(): Object 0x16a25c20 of class NSCFArray autoreleased with no pool in place - just leaking
    Stack: (0x9277af4f 0x92687432 0x93062bf5 0x926ce0fb 0x9723dff5 0x9268d52c 0x92fd447a 0x92fd4753 0x92fd4a48 0x930375da 0x530bac 0x4831a2 0x483750 0x483c0b 0x47a811 0x4796ac 0x485dad 0x47d475 0x5099dc 0x574c70 0x4ade03 0x4ae65d 0x4ae6f7 0x4ac8dd 0x53260c 0x534187 0x4ae76a 0x4ae7d0 0x4ae88e 0x493925 0x4ae13d 0x533b1a 0x53da6c 0x94a48057 0x934b3155 0x934b3012)
    Any help would be appreciated

    Doing some more troubleshooting after my post above as I saw a couple of entries referencing Stop Light keep popping up in the log of the Console. I removed Stoplight and Cocoa Gesture (for good meausre) and RDC 2.0.1 started working. I think it is Stop Light which causes RDC stop working, but I don't have to time right now to put Cocoa Gesture back to confirm that. I might if I have the time or post here if you have Stop Light installed as well and removing it resolved the RDC issue for you.

  • Master data and impact of loads from transaction data

    If I have the following scenario:
    1. Load to cube which contains a dimension which has an info object 0CUSTOMER
    2. The transaction data is being loaded from a non SAP system and 0CUSTOMER is loaded on a daily basis from SAP system
    3. As part of the transaction load some Customers have a value which is not existing in the 0CUSTOMER info object
    Do these new customers also get loaded to the 0CUSTOMER master data i.e. the SIDs are added to the SID table for 0CUSTOMER or is it just loaded as part of the cube and stored in the specific dimension
    Thanks

    Hi,
    they are also automatically loaded to 0customer, as the sid of that record is needed in the cube. Possibly, if there is no relation to your R/3 customers, you have some initial records in your customer master (means all attributes as well as the texts are initial).
    regards
    Siggi

  • Document currency is blank in 2nd ODS after loaded from 1st ODS!

    1st ODS contains the document currency field and each record does have the value for it.  In the update rule from 1st ODS to 2nd ODS, there is only two fields populated, one is the document currency (the update type is Overwrite for this unit and there are only two update types for this unit: one is Overwrite and the other one is No Update), the other one is a KF field and it's update type is Addition.  After performing the initial load from 1st ODS to 2nd ODS, the KF field values are fine, but the Document Currency value is blank for each record.  The Document Currency field in the update rule takes the update method of Source field from 1st ODS. 
    Any clue on why this Document Currency is blank in 2nd ODS and any solution?
    Thanks!

    hi Ravi,
    There should be no any transfer rule from one ODS to another.  In the update rule, our 1st post has already clearly stated that the update type is Overwrite for Document Currency.  Sorry, we can't give you any reward points since you didn't carefully read our post!
    Thanks

  • My iMac won't automatically connect to wifi after waking from sleep mode

    After dowloading the newest software update and performing a firmware update for my Airport router, my Imac won't connect to Wifi automatically after waking from sleep mode

    Please re-download and install the 10.7.3 update. You can locate it at 10.7.3 (Client Combo). Follow the on-screen instructions. Then test it out, if you still have the same problem please restart, when you hear the startup tone hold down the Option Key and then choose the Recovery Partition. Then open Disk Utilities and Repair Disk Permissions 2x. Then exit DU, restart normally and re-test.

  • Printing to AEX connected printer fails after printing from WinXP

    I have an HP Laserjet 1010 printer connected to my Airport Express Base Station. Setting up the printer on my iBook and my PC (WinXP and Linux) worked fine.
    But everytime I printed from WinXP I have to restart the Base Station because I cannot print anymore. After restarting it works again. This happens only after printing from WinXP.
    The firmware of the AEX is V6.2.

    Firmware Version:
    4.0.16.1.56.0.10.14.4
    Model Name:
    MI424-WR
    Hardware Version:
    D
    Again - it's a verizon router.   For the record, I kept the printer turned off all day - while I was at work.  I came home, I rebooted the router twice.  I looked in the table, I renamed the epson printer that was in there (marked inactive).  I renamed that to "notonet".  It was the *.8 ip address.  I then restored the printer to factory settings.  I set the printer back up on the net.  It retook the *.8 ip address - in the router table - the name was just "notonet".  So I renamed it back to Epson - it didn't really change anything.
    Now, all devices see the printer and can print.   But - soon - it will disappear!

  • SQLException:Connection timed out- after upgrading from oracle9i to 10g

    Hi,
    Recently we upgraded from oracle 9i to 10g.
    We are using Oracle JDBC Driver version - 10.1.0.5.0 .
    In the application, when RMI server starts, the connectionpool (developed using stack) will be filled with 10 instances of fresh connections.
    After keeping the RMI server idle for some time ( >24 hours ) , the first transaction sent to the Database (using the connection instance popped out from stack(connectionpool) ) terminates with following exception and from the second transaction onwards everything works normally.
    Exception------
    java.sql.SQLException: Io exception: Connection timed out
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:162)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:274)
    at oracle.jdbc.driver.T4CStatement.execute_for_describe(T4CStatement.java:443)
    at oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:942)
    at oracle.jdbc.driver.T4CStatement.execute_maybe_describe(T4CStatement.java:463)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1037)
    at oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:1183)
    at util.DatabaseManager.fetchData(DatabaseManager.java:255)
    at util.TextRequestImpl.presentText(TextRequestImpl.java:105)
    at util.TextRequestServer.presentText(TextRequestServer.java:146)
    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:324)
    at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:261)
    at sun.rmi.transport.Transport$1.run(Transport.java:148)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
    at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
    at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: java.sql.SQLException: Io exception: Connection timed out
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:162)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:274)
    at oracle.jdbc.driver.T4CStatement.execute_for_describe(T4CStatement.java:443)
    at oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:942)
    at oracle.jdbc.driver.T4CStatement.execute_maybe_describe(T4CStatement.java:463)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1037)
    at oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:1183)
    at util.DatabaseManager.fetchData(DatabaseManager.java:255)
    ... 13 more
    If am connecting to oracle9i(with Oracle JDBC Driver version - 9.0.2.0.0) ,everything works fine.
    Can anyone help me out to solve this issue?

    I attempted several upgrades and we decided it was better to implement the content under 10g fresh rather than attempt an upgrade.
    After 3-5 attempts through patching non of them provided us with re-produceable steps and we had different errors each time - mind you this was a few months back after initial release of upgrade patches.

  • Ship-to,Payer, Bill-to roles not maintained in CRM after load from ECC

    Hi Experts,
    We are currently loading in Sold-tos from SAP ECC to CRM2007. I have loaded across an account which is a sold-to, ship-to. Payer and Bill-to.
    However when I look at the account in transaction BP in the "Display in BP Role" dropdown field the account is only maintianed as a Sold-to in CRM. Does sometihng have to be activated in CRM to enable the additonal roles to be pulled across and maintained in this area?
    I have also loaded across a sold-to with multiple ship-tos. When the relationship button for the ship-to accounts are viewed in transaction BP in CRM it shows that the ship tos are related to the sold to.
    However, in the General Data "Display in BP Role" dropdown the ship-tos are only maintained as sold-tos?? I would expect that the ship to account should be maintained for both the Sold-to and Ship-to role.
    Is there a setting missing in CRM that i need to activate so that bill-to, payer, ship-to  is pulled from SAP ECC and becomes maintained in CRM after the object load?
    Any assistance would be appreciated.
    Thanks,
    Jonathan

    Hi Jonathan,
    what you see is standard behavior.
    The account group in ECC is mapped to the role in CRM.
    So account group 0001 in R/3 is mapped to role "sold-to party" in CRM.
    This can be influenced in trx. PIDE.
    A role should not be confused with a partner function. The role "sold-to party" will contain the 3 partner functions ship-to, bill-to and payer.
    So in your case, nothing additional should be customized. If you enter a transaction (e.g. sales order), and enter the sold-to party, you'll see that the other 3 will be determined.
    regards,
    Wim Olieman

  • Cannot connect to internet after upgrade from 10.7.4 to 10.7.5

    I have a new iMac and connect to internet with a data card (modem) Huawei E303.
    It worked fine until after the upgrade from 10.7.4 to 10.7.5.
    Now I can connect but there is no measurable signal. Other computers work using the same data card.

    Hi, this has worked for a few...
    Make a New Location, Using network locations in Mac OS X ...
    http://support.apple.com/kb/HT2712
    10.7 & 10.8…
    System Preferences>Network, top of window>Locations>Edit Locations, little plus icon, give it a name.
    10.5.x/10.6.x/10.7.x instructions...
    System Preferences>Network, click on the little gear at the bottom next to the + & - icons, (unlock lock first if locked), choose Set Service Order.
    The interface that connects to the Internet should be dragged to the top of the list.
    For 10.5/10.6/10.7, System Preferences>Network, unlock the lock if need be, highlight the Interface you use to connect to Internet, click on the advanced button, click on the DNS tab, click on the little plus icon, then add these numbers...
    208.67.222.222
    208.67.220.220
    Click OK.

  • Win7 install looking for CD ROM driver (after loading from CD) cannot find it so fails to install.

    Product: HP-IQ-775
    OS? Gone!- Was WIndows Vista HP-SP2, but System Recovery wiped it out!
    Error Msg: Current message that is stopping the installation of Windows 7 is "Missing CD/DVD ROM Driver- Please insert disk, or browse to location of driver" Browse accnot find driver needed (whatever it is... it is running form the bootable CD drive, so obviously it found something!)
    Changes? Oh yeah, you bet!! I have had so many problems with this machine, I cannot list them all. After running the Windows 7 Upgrade Advisor, which reported only 2 issues, both software and both resolved, all OS upgrades installed, all drivers updated, ran the MS Malicious Software app, then attempoted an upgrade from Windows Vista- Home Premium, Service Pack 2. Long story short, after 3 days of 'installing Windows 7' on the screen, it failed. No explanation just "update failed, system will rollback to Vista". The rollback was uneventful, but sytem began having problems. Missing drivers, USB ports failed, CPU Fan Failure shut downs, blue screen after blue screen. I sent my system logs to an MCSE 'expert' and he reported " there are so many issues in the logs, that it would be a miracle if the machine ever ran again" He suggested Formatting the drive and instaling Win 7 clean. WIth far too much going on  with projects, I could not do this. Ultimately, Updates would not work, A/V software would not update, Vdeo software would not run. I contacted Microsoft, and after a week or so of email volleys, they escalated it to thieir 'expert', who after a few hours troubleshooting remotely, and multiple failed System Restores, said the only hope was a System Recovery.
    After backing up everything today, I did the System Recovery from the Factory Image, the result was fatal! It went through the first half, erasing my operating sytem and associated files, drivers etc, it reported "Error found in Sytem Configuration, System Recvovery not completed", leaving me with an X drive, a C: drive tith nothing on it, and between the two, sho about 30GB of space total, on a 500GB drive!
    I figured this would be the best time to do a 'clean install' of Windows 7, as I no longer had an OS to upgrade! I ran my Win7 Install disk, which ran fine, loaded its files, then reported "missing CD/DVD driver. PLease insert floppy, CD or flash drive, or browse to external drive with driver location"
    Needless to say, I could find noting that it would accept. I even downloaded a driver from TSST (CD OEM) but the installer would not accept it from the flash drive. That is where I am now. No OS loaded, partitions screwed up, command prompt finds noting but X: (Recovery files?)29GB,  and C: what is left of it, it shows 9GB. Where is the rest of my disk? Who knows.
    I have 5 external drives, full system backup on one, all data files on another, System Recovery Backup on another, but cannot access anything with no OS. I can only use the Win7 install boot disk to access the computer at all, and it has limited functionality.
    I am writing from my HP-dv-9720 notebook, which has its own OS issues (still running on Vista basic as it will not install SPs), so it is available for email and driver downloads if necessary.
    Anyone want this challenge?
    Thanks
    Doug

    WOW! 9 months later and not a sigle response. And now I am back! (Windows7 worked fine BTW!) Now I have the FAN FAILURE, yet the only thing that works on the computer, IS the FAN!! HP is ware of this problem but has done nothing except post a bunch of unrelatre (to IQ-775) stuff! A replacement fan (not that it is needed) is over $300, almost half of what I paid for the entire system!! BS! This is a latent defect and should be fixed by HP!
    I currently have 3 HP computers, 5HP printers and an HP plotter! I have been a loyal HP customer fore over 20 years! IF they do not fix this, FREE, I will NEVER buy another HP product again! That is a promise! This is pure BS!  The machine will not boot due to a false "fan failure' report. both fans are running fine, and always have. The defect is in the reporting software or fan firmware, NOT the fan!
    I will be back in 9 months to answer myself again!
    DN

Maybe you are looking for

  • Formatting External Hard Drive for Backup

    Please advise: how should I set up an external hard drive (WD 500GB MyBook Home Edition) with a view to using it to backup my MacBook with Time Machine and have partitions to be accessed by Windows: 1) through BootCamp, running Windows Vista (Busines

  • Character Converting Problem at File Adapter

    I am having a character conversion problem bringing in a XML file into XI. It is converting the data wrong. I have a file adapter picking up Audit.xml encoding is utf-8, use binary mode to pick it up. XI takes the file and converts it into a text fil

  • Source file difference : XI vs PI

    Hi , Wanted to check in our XI world when we used to get source file it used to show &apos instead of " ' " . In PI world ,it show " ' " and not &apos? can we change this display of characters to make XI look like PI ? Thanks

  • Is there something very wrong with Lion and Fcp x or what?

    I have just spent a very frustrating two weeks editing a one hour fifteen minute project on FCP X with Lion as the operating system. Every edit session has been plagued with crashes. My mac is a 21.2 inch, with an I7 processor and 12gig of ram which

  • AIR detection from HTML

    Hi, I want to find if my html page is opened in browser or is loaded in AIR through HTMLLoader. I need to ensure my event handlers (e.g onclick) work and in browser I am setting them up through innerHTML and in AIR like: element.onclick = onclick_han