Worksheet content being overwritten by another worksheet from same workbook

Has anyone else experienced this issue in Plus and Viewer.
On a handful of occasions now I have had the data content part of a worksheet overwritten with that from another worksheet within the same workbook. The title, text area and worksheet descriptions stay the same, but the items selected in my crosstab, the conditions used, calcs used are replaced with those used a different worksheet. The worksheets are all using items from the same folders in the EUL, but each one selects slightly different columns from the others and each has a couple of specific conditions.
This happened today when I switched from one worksheet to another in Plus, then back to the original sheet. The original sheet data content was overwritten by the content from the worksheet I had switched to!!
The worksheet is only being accessed via Plus and Viewer, not Desktop and the version is 10.1.2.48.18.

Hi,
I'm with Russ. This sounds ugly and I've never seen it before. However, there is another interesting thing that happened to someone else in 9.0.4 version recently where the workbook was owned by one owner, shared to another, a modification made to the workbook by the shared to userid. The original workbook accepted the change. It sounds like this was caused by IDENTIFIER issues. Could it be possible, (improbable I think), that the IDENTIFIER on each worksheet is the same? I don't know how this could happen but I bet a million dollars once (that I don't have) that the workbook situation couldn't happen. To check this, right click on each worksheet name and checkout the IDENTIFIER. I also think you should log a SR. It would be nice if you would post the resolution here once one is found.
The workbook issue has been logged as bug 7565438 . (problem identified by stephen lee)
Thanks for sharing an interesting issue!
Nancy

Similar Messages

  • HT2486 When you want to add another person from same company, how can you duplicate and then modify the card already entered?

    When usinf Mac Address Book and you have entered the information for one contact from a company, how can you duplicate the card so you can add another person from same company?

    I'm afraid the LU suffix is a new one on me.
    As long as you have all of the content in your library then that remove and sync warning shouldn't cause any loss of data, but it shouldn't be happening every time. It may pay to take the following steps to reset the connection between the two,
    Backup device.
    Restore as a new device.
    Restore the backup made earlier.
    Again, this assumes all content on the device is in your library. If that isn't the case see Recover your iTunes library from your iPod or iOS device first.
    tt2

  • Facing problem in creating socket in a method from an already deployed application exe while same method is working from another exe from same environment from same location.

    Dll Created In: - MFC VC
    6.0
    Application Exe Developed In:
    - VC 6.0, C# and VB.net (Applications which are using dll)
    OS: - Windows XP sp2 32bit
    / Windows Server 2008 64 bit
    Problem: - Facing problem in creating socket
    in a method from an already deployed application exe while same method is working from another exe from same environment from same location.
    Description: - We have product component which
    has an exe component and from exe we invoke a method, which is defining in dll, and that dll is developed in MFC VC6.0. In the dll we have a method which downloads images from another system after making socket connection. But every time we are getting Error
    code 7, it is not giving desire result while same method is working from another exe from same environment from same location. And also me dll is deployed on many systems and giving proper output from same application.
    Already Attempt: - Because error is coming on
    client side so what we did, we created a driver in C# which invokes same method from same environment(on client machine) using same dll and we are astonished because it worked fine there.
    Kindly Suggest: -
    We are not able to figure out root cause because nothing is coming in windows event logs but what I did, for finding the problem line, I wrote logs on each line and found the exact line in application exe which is not working,
    actually  it is not executing Create () method,
    I will give snippet of the code for understanding the problem because we are not finding any kind solution for it.
    Kindly assist us in understanding and fixing this problem.
    Code Snippet: -
    Int Initialize (LPTSTR SiteAddress, short PortId)
    try
    CClientTSSocket *m_pJtsSockto;
    m_pJtsSockto = new CClientTSSocket;
    LONG lErr = m_pJtsSockto->ConnectTS(csIPAddress,PortId);
    ErrorLog (0, 0, "--------ConnectTS has been called ------------","" );
    catch(...)
    DWORD errorCode = GetLastError();
    CString errorMessage ;
    errorMessage.Format("%lu",errorCode);
    ErrorLog (0, 0, "Image System", (LPTSTR)(LPCTSTR)errorMessage);
    return  IS_ERR_WINDOWS;
    Note: -
    CClientTSSocket extends CAsyncSocket
     IS_ERR_WINDOWS is a macro error code which value I found 7.
    LONG ConnectTS(CString strIP, UINT n_Port)
    ErrorLog(0,0,"ConnectTS is calling Create [is going to call]","");
    if(!Create())
    ErrorLog(0,0,"ConnectTS is calling [Create not called successfully] ","");
     n_Err = GetLastError();
     ErrorLog(n_Err,0,"ConnectTS is calling1111111111111111Erorrrrrrrrrrrrr","");
    return NET_INIT;
    ErrorLog(0,0,"ConnectTS is calling2222222222222222222","");
    if(!AsyncSelect(0))
    n_Err = GetLastError();
    return NET_INIT;
    if(!Connect(strIP,n_Port))
    n_Err = GetLastError();
    ErrorLog(n_Err,0,"ConnectTS","");
    return SERVER_NOT_CONNECTED;
    Code description: -
    From
    int GETImage_MT() method we call Initialize() method and pass client machine IP and Port and there we call
    ConnectTS() method, In this method we Create() method and finally it returns the error code as mention in macro 7.
    Logs after running the program: -
    --------ConnectTS has been called ------------
    ConnectTS is calling Create [is going to call]
    Image System 
    0
    Note: - According to logs, problem is coming in Create method().
    Here 0 is errorMessage received in catch block. And from catch block it returns macro value 7. And when we run same method individually from same machine, same environment through same dll
    from different exe, it is working fine and we are facing any kind of problem. While same problem application was working properly earlier but now continuously it showing problem.
     Kindly assist us to resolve the issue.

    Pointer variable was already initialized; I have mention in code; kindly assist us.
    Dll Created In: - MFC VC 6.0
    Application Exe Developed In: - VC 6.0, C# and VB.net (Applications which are using dll)
    OS: - Windows XP sp2 32bit / Windows Server 2008 64 bit
    Problem: - Facing problem in creating socket
    in a method from an already deployed application exe while same method is working from another exe from same environment from same location.
    Description: - We have product component
    which has an exe component and from exe we invoke a method, which is defining in dll, and that dll is developed in MFC VC6.0. In the dll we have a method which downloads images from another system after making socket connection. But every time we are getting
    Error code 7, it is not giving desire result while same method is working from another exe from same environment from same location. And also me dll is deployed on many systems and giving proper output from same application.
    Already Attempt: - Because error is coming
    on client side so what we did, we created a driver in C# which invokes same method from same environment (on client machine) using same dll and we are astonished because it worked fine there.
    Kindly Suggest:
    - We are not able to figure out root cause because nothing is coming in windows event logs but what I did, for finding the problem line, I wrote logs on each line and found the exact line in application exe which is not
    working, actually it is not executing Create () method, I will give snippet of the code for understanding
    the problem because we are not finding any kind solution for it. Kindly assist us in understanding and fixing this problem.
    Code Snippet: -
    Int Initialize (LPTSTR SiteAddress, short PortId)
    try
    CClientTSSocket *m_pJtsSockto;
    m_pJtsSockto = new CClientTSSocket;
    LONG lErr = m_pJtsSockto->ConnectTS(csIPAddress,PortId);
    ErrorLog (0, 0, "--------ConnectTS has been called ------------","" );
    catch(...)
                       DWORD errorCode = GetLastError();
                       CString errorMessage ;
                       errorMessage.Format("%lu",errorCode);
                       ErrorLog (0, 0, "Image System", (LPTSTR)(LPCTSTR)errorMessage);
                       return  IS_ERR_WINDOWS;
    Note: - CClientTSSocket extends CAsyncSocket
     IS_ERR_WINDOWS is a macro error code which value I found 7.
    LONG ConnectTS(CString strIP, UINT n_Port)
              ErrorLog(0,0,"ConnectTS is calling Create [is going to call]","");
              if(!Create())
                       ErrorLog(0,0,"ConnectTS is calling [Create not called successfully] ","");
              n_Err = GetLastError();
              ErrorLog(n_Err,0,"ConnectTS is calling1111111111111111Erorrrrrrrrrrrrr","");
                      return NET_INIT;
              ErrorLog(0,0,"ConnectTS is calling2222222222222222222","");
              if(!AsyncSelect(0))
                       n_Err = GetLastError();
                       return NET_INIT;
              if(!Connect(strIP,n_Port))
                       n_Err = GetLastError();
                       ErrorLog(n_Err,0,"ConnectTS","");
                       return SERVER_NOT_CONNECTED;
    Code description: - From int GETImage_MT() method
    we call Initialize() method and pass client machine IP and Port and there we call ConnectTS() method, In
    this method we Create() method and finally it returns the error code as mention in macro 7.
    Logs after running the program: -
    --------ConnectTS has been called ------------
    ConnectTS is calling Create [is going to call]
    Image System  0
    Note: - According to logs, problem is coming in Create method(). Here
    0 is errorMessage received in catch block. And from catch block it returns macro value 7. And when we run same method individually from same machine, same environment through same dll from different exe, it is working fine and we are facing any kind of problem.
    While same problem application was working properly earlier but now continuously it showing problem.
     Kindly assist us to resolve the issue.

  • Messages from sender being overwritten by another in my inbox- why?

    I am missing messages from senders because they are being overwritten by messages from another sender when they get to my inbox. The original sender is listed in the header as "From", but the rest of the info in the header is for the other sender. Both senders are expected (both are newsletters). This happens randomly and has been happening for a couple months. Any ideas on what is happening?
    Update: This is continuing to happen as of today ( 19-Nov-2014). One message was downloaded and filtered to one of my local folders correctly, but then it also overwrote another message currently downloaded in my inbox, but left the Thunderbird inbox 'from' and 'subject' fields intact indicating the sender of the message that it overwrote in my inbox. But when I open it, I get the same newsletter that was filtered to the folder (in the same download batch) as the newsletter that opens in my inbox with the sender/subject of the other newsletter. This is very frustrating... I'm considering alternative to Thunderbird.

    Hi,
    I'm with Russ. This sounds ugly and I've never seen it before. However, there is another interesting thing that happened to someone else in 9.0.4 version recently where the workbook was owned by one owner, shared to another, a modification made to the workbook by the shared to userid. The original workbook accepted the change. It sounds like this was caused by IDENTIFIER issues. Could it be possible, (improbable I think), that the IDENTIFIER on each worksheet is the same? I don't know how this could happen but I bet a million dollars once (that I don't have) that the workbook situation couldn't happen. To check this, right click on each worksheet name and checkout the IDENTIFIER. I also think you should log a SR. It would be nice if you would post the resolution here once one is found.
    The workbook issue has been logged as bug 7565438 . (problem identified by stephen lee)
    Thanks for sharing an interesting issue!
    Nancy

  • How to recover Inadvertently removed Worksheet from Discoverer workbook.

    Hi,
    i have lost a worksheet from my discoverer report, this worksheet i used to run on daily basis. is there any way to recover the worksheet from Database or from EUL tables.
    Thanks!

    Hi,
    Unless you have a backup of the database table or a backup of the workbook in an .eex file then I am afraid there is no way to recover the worksheet.
    Rod West

  • Copying Query & Formatting on Worksheet to New Worksheet in Same Workbook

    Hi,
    Can anyone advise me the quickest way to copy a query that is working on one worksheet to a new worksheet. More importantly how do I retain the formatted features of the worksheet from which I am coping from? I have tried to copy the query to a new worksheet which is OK but I cannot seem to retain the format features from the original worksheet. Am I missing something simple?  We are on version 3.5.
    Thanks

    Shanky_621: Thanks for taking the time to help. The following blog article talks about what I'm trying to do:
    http://support.microsoft.com/default.aspx?scid=kb;EN-US;914288
    The goal is to recreate the inefficent plan on a test database without copying the data. The article talks about this as a "statistics only copy".
    You noted, "SQL server generating query plan is internal mechanism into which we cannot interfere unless we use Query hint...". The engine uses statistics and histograms to generate plans then choose the most efficent one for execution. Those statistics
    are generated from data in the database, and that process is done periodically. You don't think the engine actively scans each table in a query each and every time a query is run? Right! That would be crazy. It just checks the stats. What I'm trying to
    do is pull the stats from one database into another. The article does a better job explaining this.
    JRStern (Josh): Yes brother! You understand what I'm trying to do. Like you, I am wrestling with a feature/process I've only read about. The actual execution is... not as expected. I actually just found the article I noted to Shanky. I'm trying that process
    now. I'll tell you how it goes.
    Adam

  • Need to delete blank rows from various worksheets in same workbook-reg

    Hi Team,
    I am searching for a macro to delete the blank rows from my worksheets.
    Sub testIt()
    Dim r As Long, endRow As Long, pasteRowIndex As Long, Worksheet As Object
    Application.ScreenUpdating = False
    endRow = 1000
    pasteRowIndex = 1
    For r = 1 To endRow
        If Cells(r, Columns("A").Column).Value = "12345" Then
                Rows(r).Select
                Selection.Copy
                Sheets("12345").Select
                Rows(pasteRowIndex).Select
                ActiveSheet.Paste
                CutCopyMode = False
                pasteRowIndex = pasteRowIndex + 1
                Sheets("NORMAL").Select
    End If
        If Cells(r, Columns("A").Column).Value = "45678" Then
                Rows(r).Select
                Selection.Copy
                Sheets("45678").Select
                Rows(pasteRowIndex).Select
                ActiveSheet.Paste
                pasteRowIndex = pasteRowIndex + 1
                Sheets("NORMAL").Select
        End If
        If Cells(r, Columns("A").Column).Value = "36925" Then
                Rows(r).Select
                Selection.Copy
                Sheets("36925").Select
                Rows(pasteRowIndex).Select
                ActiveSheet.Paste
                pasteRowIndex = pasteRowIndex + 1
                Sheets("NORMAL").Select
        End If
         If Cells(r, Columns("A").Column).Value = "789456" Then
                Rows(r).Select
                Selection.Copy
                Sheets("789456").Select
                Rows(pasteRowIndex).Select
                ActiveSheet.Paste
                pasteRowIndex = pasteRowIndex + 1
                Sheets("NORMAL").Select
    next r
    end sub()
    the above code searches for the value "12345" "45678" "36925" "789456" if found in worksheet (normal) then it picks the value and paste it in new corresponding worksheet with sheet number (12345). while pasting like
    this it has some blank rows so it need to delete the rows help me out of this problem. thanks in advance

    Hi vigneshvicky,
    This code snippet works fine to delete the blank rows, please try it:
    ActiveSheet.UsedRange.Select
    'Deletes the entire row within the selection if the ENTIRE row contains no data.
    Dim i As Long
    'Turn off calculation and screenupdating to speed up the macro.
    With Application
    .Calculation = xlCalculationManual
    .ScreenUpdating = False
    'Work backwards because we are deleting rows.
    For i = Selection.Rows.Count To 1 Step -1
    If WorksheetFunction.CountA(Selection.Rows(i)) = 0 Then
    Selection.Rows(i).EntireRow.Delete
    End If
    Next i
    .Calculation = xlCalculationAutomatic
    .ScreenUpdating = True
    End With
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • "Create Link" in table of contents being overwritten?

    Hello community,
    I'm using Acrobat X. Just one item in my table of contents is linking incorrectly. I've deleted the link and tried making new ones by:
    Using the Link tool under Tools > Content.
    Right-clicking the text and selecting "Create Link."
    For some reason the link keeps taking me past the heading I want and onto the start of the following page. Text is about 2/3 of the way down on the page. I can link anywhere else in the document just fine -- even higher up on the same page. Just not around this one particular heading.
    Any ideas why this is happening? It's driving me mad.
    Thanks in advance.

    Try using the go to a page view action for the link.
    Be well...

  • Filter for One Dim should access all DIM's and another memebr from same Dim access part of another DIM

         Hi All,
    I want o merge below two conditions into single filter, anybody implimented as below,
         1. Dimension BUSINESS_UNIT member IDESCENDANTA(XXXX) users can see all departments for these BU(IDESCENDANTA(XXXX).
         2. Dimension BUSINESS_UNIT member  A , user can see only part of Department like IDESCENDANTS(DEPERTMENTXX) with this combination.
    these conditions i want in single filter, anybody had this type of requirement before, please give me your suggestions to impliment this.
      Thanks
    eSwar

    Hi,
    1. Yes , you need to create separate group for each filter.
    2. Yes, but it depends.
    (In this case filter 1 access which has access to all departments will overwrite/includes the filter 2 access which has access only to one department.)
    See below example for details
    Example:
    Filter_1:Access all products
    @idescendant("product"),@idescendant("market")","jun2013","loc",@idescendant("Account")
    Filter_2: Access only to one product and one market
    "Prod1","Inida","jun2013","loc", "usd" ,"cost"
    Case 1: If you include both the filters to one group then --> Filter_2 has access only to one product "prod1" but Filter_1 has access to all products. So Filter _1 access will overrides Filter_2 access .
    Case 2: Filter _1 has access only to LOC but Filter_2 has access to both LOC and USD. So including both the filters to one group provides access to both the currency.
    Hope this helps. If you still have any doubt let me know.
    Thanks

  • Is there any way to prevent fields from being overwritten when importing data via xdp-file?

    In an pdf-form designed with LCD everytime the form gets merged with an xdp-datafile content of all fields get overwritten, regardless which data-binding (normal, global, none) is assigned to the fields and regardless if the fields are exluded in the xdp-datafile. Is this normal behavior and is there any way to prevent fields from being overwritten?

    The xdp-file is first exported from Acrobat Professional 8 (export data as *.xdp) to get the complete structure. Then in the xdp-file some fields are removed manually and other fields are filled with data. When the modified xdp-file is opened again with Acrobat Professional 8 it grabs the original pdf-form and merges the manually filled fields into the form. With the merge all other fields in the form are overwritten, even if they are not defined in the xdp-file. And that is what I want to avoid. I want to merge the xdp-file into the form and keep the data in fields not defined in the xdp-file.

  • Locking a cell to prevent it from being overwritten

    I want to create a table that restricts data entry to specific cells within the table, keeping cells with formulas that calculate data from being overwritten but I am not seeing any way to "protect" cells from inadvertent data entry. Putting an object over the top of a cell or range of cells and setting its opacity to 0 and then locking it keeps you from selecting the underlying cell with the mouse but you can still tab over to the cell with the direction keys and enter data. Is there a way to lock/protect a cell to keep it from being overwritten?

    b,
    This is an area that Numbers can't really address effectively. The designers don't seem to have considered the possibility of having a document designed by one user and used by others less knowledgeable or trustworthy or careful. If you don't like the workarounds that you found in other discussions your best course is to use another program for now and submit Feedback to Apple if you want to influence future development.
    Jerry

  • Append worksheet from second document with NJAWIN

    Hi,
    I hope somebody can give me a hint joining two excel documents.
    I get following macro when I append the second document as object from filename in Excel:
    Sub Makro1()
    Sheets.Add
    Sheets("Tabelle1").Select
    Workbooks.Open Filename:="C:\exceltest.xls"
    ActiveWindow.Visible = False
    ActiveSheet.OLEObjects.Add(Filename:="C:\exceltest.xls", Link _
    :=False, DisplayAsIcon:=False).Select
    End Sub
    My java code looks like this:
    app.getWorkbooks()._Open(filename1, Boolean.FALSE, Boolean.FALSE);
    DispatchPtr ptr = app.getWorksheets().Add();
    ptr.invoke("Select");
    app.getWorkbooks()._Open(filename2, Boolean.FALSE, Boolean.FALSE);
    Now I get two instances from Excel, instead of appending it.
    How could I get these OLEObjects as shown in Macro?
    Thanks in advance
    rumpi

    Hmm, nobody has answered. I have done this before months. So if smb has the same problem
    my function looks smth like this. I'm glad to hear constructive critic:
    _Workbook wb2append = null;
    try {
    File f = new File(file2append);
    if (!f.exists())
    throw new IOException("File "+file2append+" does not exists!");
    String file2appendName = f.getName();
    wb2append = openXLS(file2append, Boolean.TRUE);
    * Activate first worksheet in workbook
    Worksheet sheetfirst = new _Worksheet(application.getSheets().getItem(new Integer(1)));
    sheet_first.Activate();
    * Rename all worksheets with prefix the filename of this workbook
    if (appendPrefix)
    renameSheetsWithPrefix(wb2append, file2appendName);
    * Copy all worksheets in this workbook after the activated
    * (last) worksheet in the target workbook.
    wb2append.getWorksheets().Select();
    wb2append.getWorksheets().Copy(null, wb_target.getSheets().getItem(new Integer(wb_target.getSheets().getCount())));
    wb2append.Close(Boolean.FALSE);

  • How do I delete a photo from my desktop which keeps showing the following info. every time I try to move it to the trash?:  "DSC_0073.JPG" can't be opened right now because it's being used by another task, such as moving or copying an item or emptying the

    I dragged a copy of a photo onto my desktop from iPhoto, and it seems to be in some state of process/activity (vs. just being a copy of a photo on my desktop).  I tried to delete/move to trash the photo, and I keep getting the following message:  “DSC_0073.JPG” can’t be opened right now because it’s being used by another task, such as moving or copying an item or emptying the Trash. Try again when the current task is complete.
    How do I delete this photo from my desktop?
    Thanks!

    I ended up shutting down my system, and when I started it back up, I was able to drag the photo to the trash and delete it (I did get a message warning that my deleting the photo might negatively affect the application that was "using" it, but I deleted it anyway...it worked...and I'm hoping I didn't adversely affect another application!).
    Thanks so much for your help!

  • Why are active menus and dialog boxes disappearing/being overwritten by the active tab/page content?

    Frequently when selecting a download directory/filename in the "save to" dialog the entire dialog is overwritten with the active page content. It appears the dialog has closed, but if you tab through the dialog the active field/control is written but the rest of the dialog remains hidden/overwritten. This has also happened with the "open file" dialog. The the drop down menus on the menu bar are occasionally being overwritten after being activated/pulled down. I have not been able to determine a common/specific event causing this problem.

    I seem to have fixed it by putting <div  class="clearfloat"></div> after the navigation bar?

  • Session Cookies Being Overwritten Browsing From SSL to Non SSL

    I have created a bug report for this issue as well.
    Please note I am using J2EE session variables so keep that in mind.
    I am seeing session cookies being overwritten when browsing from an SSL connection to a non SSL connection.
    For example:
    Visiting https://www.domain.com/ results in a JSESSIONID cookie being set with details being send for "Encrypted connections only".
    Visiting http://www.domain.com/ results in a JSESSIONID cookie being set with details being send for "Any type of connection".
    Here's the problem:
    Say for example, you're logging into an admin module located at https://www.domain.com/admin/. Once authenticated and some session variables are set, you browse to http://www.domain.com/. When that happens your session cookie (JSESSIONID) is overwritten with a new value and you instantly lose your authentication in the admin module.
    Obviously this is causing massive problems for my clients that bounce back and forth from SSL to non SSL connections which is common for e-commerce websites.
    Steps to Reproduce:
    1. Clear your cookies.
    2. Visit a web page such as https://www.domain.com/. Note the JSESSIONID cookie value.
    3. Visit a web page such as http://www.domain.com/. Note the JSESSIONID cookie value and how it was overwritten.
    This behavior changed in ColdFusion 10. ColdFusion 9 did not overwrite the session cookie.
    Has anyone else experience this?

    Deleting and re-adding my account seems to have fixed it.  I think when I initially added my Google Talk account, it was by using the "Add Jabber Account" under 10.6 or something.  Now, when I re-added my account, I notice both "Google Talk" and "Jabber" are options, so my thought here is that Jabber and Google Talk options are no longer quite the same thing.

Maybe you are looking for

  • How can you send an email out to more than 65 persons at a time?

    I have an email notification list of 175 persons who regularly get communications from me. I have recently discovered that only 65 of them are getting these emails. How can I send to my entire list? Thanks!

  • Problem in select query

    Hi Friends I am using a table a981 and fetching data in internal table but the table has a fieil Country whose technical name is ALAND in dev and LAND1 in production.Now i cannot use LAND1 as it wont let me to activate the report and if i use ALAND i

  • SRM shopping cart attachment to SAP not transferring

    Hi SRM Experts, I have an issue with document attachment which is not coming to SAP R/3 Backend. Scenario 1 1.Create shopping Cart in SRM system with One attachment, 2. Purchase requistion is created in backend replica of SRM shopping cart. but the a

  • Web Gallery export troubles w/ LR 2.3 update (Mac)

    I regularly export web galleries (WG) using templates I have created. Earlier today I began having trouble, where LR2.2 would freeze during a WG export, and I had to force quit LR. At first, because LR was dragging so slowly, I thought it was a near-

  • Unbootable Solaris 10 x86 installed on ZFS root file system

    Hi all, I have unbootable Solaris 10 x86 installed on ZFS root file system. on an IDE HDD The bios keep showing the msg DISK BOOT FAILURE , PLEASE INSERT SYSTEM BOOT DISK please note : 1- the HDD is connected properly and recognized by the system 2-