Problem with the prompt value

Hi Experts,

need help...

I have a dashboard migrated to 10g and 11g.

11 g, I have 4 guests, 2 guest with limited values of 1 invites, rd guest 3 having limited values of the 2nd invites on...

When I select 2nd guest the 3rd guest showing null values. but in the dash 10g invite him 3rd display of values based on the 2nd quick selection...
I am facing the problem with prompt 11 g.
can you guide me how to solve this problem... is there something that I missed after the upgrade? or pls tell me to solve this problem

Hi try once like that select two guests of dashboard for example the year, half of the year.

In the half-year prompt, click on the 'Options' tab and check "limit values per Option.

In this option, you can select column 'year '. Then, you can get data from half of year year corresponding column.

Thank you
Please indicate if this helps you...

Published by: 979493 on February 25, 2013 03:16

Published by: 979493 on February 25, 2013 03:17

Published by: 979493 on February 25, 2013 03:17

Tags: Business Intelligence

Similar Questions

  • Problem with the default value for OAMessageTextInputBean to the controller layout

    Hello

    I encountered this problem when I expand a controller for the page create a work request (/ oracle/apps/eam/workrequest/webui/EAM_WR_WORK_REQUEST_DETAIL_PL). My goal is to re - fill OAMessageTextInputBean 'Additional Description' after the user clicks "Save" or "apply". When I try to change the value of another field, it works correctly, the problem persists for 'Description Addidional' more precisely. I don't know that I have the correct id (I took it from xml received by jdr_utils.printdocument). The journal does not all controllers running after the attempt to set the value.

    Compare these logs:

    [21]:PROCEDURE:[xxfideltronik.oracle.apps.eam.workrequest.webui.xxPageRegionCO]:Goosfraba, pre-added!
    [21]:EVENT:[fnd.framework.webui.OAMessageTextInputHelper]:OAF LOG: Event : Get Attribute Value, in: oracle.apps.fnd.framework.webui.OAMessageTextInputHelper: View:null ,Attribute:EAM_WR_WORK_REQUEST_DETAIL_PL426_EamWrRqlog , Return Value without datatype conversion :4321
    [21]:PROCEDURE:[xxfideltronik.oracle.apps.eam.workrequest.webui.xxPageRegionCO]:Goosfraba, added!
    

    [Descriptive information, does not work]

    and:

    [64]:PROCEDURE:[xxfideltronik.oracle.apps.eam.workrequest.webui.xxPageRegionCO]:Goosfraba, pre-added!
    [64]:EVENT:[fnd.framework.webui.OAMessageTextInputHelper]:OAF LOG: Event : Get Attribute Value, in: oracle.apps.fnd.framework.webui.OAMessageTextInputHelper: View:RequestDetailsVO ,Attribute:PhoneNumber , Return Value without datatype conversion :null
    [64]:EVENT:[fnd.framework.webui.OAMessageTextInputHelper]:OAF LOG: Event : Set Attribute Value, in: oracle.apps.fnd.framework.webui.OAMessageTextInputHelper: OldValue:null ,New Value:4312
    [64]:PROCEDURE:[xxfideltronik.oracle.apps.eam.workrequest.webui.xxPageRegionCO]:Goosfraba, added!
    

    [Phone number, works fine]

    Here is my code for the method of the processFormRequest controller:

    public void processFormRequest(OAPageContext pgCtx, OAWebBean wBean){
         super.processFormRequest(pgCtx, wBean);
        
         String description = pgCtx.getParameter("EamWrRqlog");
         log("Goosfraba: " + description, pgCtx);
    
         if(description != null){
              OAMessageTextInputBean additionalDescription = (OAMessageTextInputBean) wBean.findChildRecursive("EamWrRqlog");
              if(additionalDescription != null){
                   log("Goosfraba, pre-added!", pgCtx);
                   additionalDescription.setValue(pgCtx, description);
                   log("Goosfraba, added!", pgCtx);
              }
         }
    }
    

    A solution would be: -.

    1. create a transitional VO with an attribute, LongDescription.

    2 associate this attribute with the EamWrRqlog field.

    3. in the processFormRequest, set the TransientVO attribute value

  • problem with the default value of the parameter in function

    Hi all
    create or replace FUNCTION date_post_message (
    user_lock_in  IN  users.user_lock%TYPE,
    form_type_in  IN users.form_type%TYPE DEFAULT 0 ,
    date_in       IN                       DATE)
    RETURN BOOLEAN
    IS
    v_num number(1);
    BEGIN
    IF user_lock_in = 1 THEN
       RETURN FALSE;
    END IF;
    IF form_type_in NOT IN (1,2) THEN
       RETURN FALSE;
    END IF;
      SELECT 1
      INTO v_num
      FROM changes
      WHERE date_post_msg <= date_in ;
      RETURN TRUE;
    exception
    WHEN NO_DATA_FOUND THEN
    RETURN FALSE;
    END date_to_post_msg;
    problem: there is null, the function ignore the form_type_in default value 0.
    Why? the default value is valid only in the parameter of the procedure?
    Thanks to Advnaced
    Naama

    Naama wrote:
    If a value is null to convert it to 0? I mean in the part of the statement of the parameter

    No, can't do this in the signature. You will need to manage this by validating the parameters passed at the beginning of the function.

    It is quite simple. In your case, you might as well test for NULL and fail to function like this:

        FUNCTION date_post_message(
                user_lock_in IN NUMBER,
                form_type_in IN NUMBER DEFAULT 0 ,
                date_in      IN DATE)
            RETURN BOOLEAN
        IS
            v_num NUMBER(1);
        BEGIN
            dbms_output.put_line('Value of parameters : user_lock_in : '||user_lock_in || ' : form_type_in : '||form_type_in||' : date_in : '||date_in );
            IF user_lock_in = 1 THEN
                RETURN FALSE;
            END IF;
            IF form_type_in IS NULL THEN
                RETURN FALSE;
            ELSIF form_type_in NOT IN (1,2) THEN
                RETURN FALSE;
            END IF;
            RETURN TRUE;
        EXCEPTION
        WHEN NO_DATA_FOUND THEN
            RETURN FALSE;
        END;
    

    In other cases of use I would issue a local variable and treat it like this:

            IF form_type_in IS NULL THEN
                l_form_type := 0;
            ELSE
                 l_form_type := form_type_in;
            END IF;
    

    Of course, the code should use the local variable rather than the parameter.

    It is a good practice to validate values passed in parameters at the beginning of a function. If you really want to go to the city, discover the Design By Contract.

    Cheers, APC

    Published by: APC on November 9, 2011 13:36

    Example added, as requested by OP

  • Problem with the caption.value. #text

    I'm do my first measures in the FormCalc language to create PDF Forms to distribute , et what I have to do here is to try to change the caption text of a text field based of a decision made previously by a drop down field in the small script I tried to write it as follows:

    var text = Choose ()Elenco1.rawValue ""request number""", " "number required"""( )

    if ()Elenco1.rawValue == 1( ) then
    $ . Caption.Value . text.value # text =
    $ . RawValue Num2Date = (Date (), "YY / MDD_IHS)
    ElseIf ()Elenco1.rawValue == 2( ) then
    $ . RawValue Num2Date = (Date (), "YY / MDD_UNI)
    endif

    but fails in the first line . What is the problem ?
    Ascolta
    Fonética Partitura

    You can change the caption TextField1 when running at below the syntax help.

    $.resolveNode("__TextField1__.caption.value.#text").value = "New Caption";

    Thank you

    Srini

  • How to use the prompt value in the column of the report

    Hello

    I have a quick report column which is 'Adj Type' that contains values 10,20,30, and when the user selects Adj Type = 10, this value should be passed on to the column of the report.

    For example. Value in column 1 is 10 and this should multiple with the prompt value and production is expected to be 10 * 10.

    Ideas how to capture the prompt values in the column of the report for the calculation.

    Hi hsekar,

    (1) declare a presentation online in the section variable set Variable--> Variable--> P_var presentation

    (2) in Fx Table_name. Your_column * @{P_Var}

    @{P_var} {20} (20 is the default, it replaces when a user selects the value in the command prompt

    Thank you
    Saichand.v

  • Anyone having problems with the GENERATED_KEY in CF8 lately?

    Anyone else have problems with the GENERATED_KEY value returned by a cfquery when using ColdFusion 8 and MySQL?

    I'm inserting records in a MySQL 5.0 DB and then enter the result. GENERATED_KEY and assigning my ID of objects field. Nothing spectacular here.

    In my test harness, everything works fine but when I download files to my host I get this error;
    An error has occurred at the request:
    Error code: Server.Processing
    Details of the fault:
    Error string: cannot call CFC - element GENERATED_KEY is undefined in QCREATERESULT.

    I thought that there must be a bug I introduced so I check my code and ensured that it worked on my system and Uploaded the cfc again just to be sure there was nothing broken in transit.

    Always had problems.

    So, I checked the Web and found that the MySQL Connector/J version 5.1.5 has a problem with that. I contacted my provide my Site host and has asked to check the environment that I was for me.

    I was told it is ColdFusion 8 (as it should be.)

    At the beginning when I asked what version of Connector/J server on that I had used on me version 3.51. This is not a version of connector for all those of you who did not have to deal with it. (At least one that would have shipped with CF8.) That sounded more like the version of the MySQL server, but I was supposed to be on a 5.0 Server and my account information specify also the same, so I let this drop for now.

    After having to explain how to find a way to know what the version of the connector was attached their support they told me that it was 5.05 (has happened to the version that I already told him was the version I thought comes with CF8, if I'm wrong.)

    And I asked him to confirm that the DB was version 5.0.

    So assuming that told me the truth. I can't find a reason why the GENERATED_KEY are not returned.

    My CFQuery insert code looks like this;

    < cffunction name = "crΘer" output = "false" access = "private" returntype = 'Cancel' >
    < cfset var qCreate = "" >

    < cfset var local1 = Field1 () >
    < cfset var local2 = Field2 () >
    < cfset var local3 = Field3 () >
    < cfset var local4 = Field4 () >
    < cfset var local5 = Field5 () >
    < cfset var local6 = Field6 () >
    < cfset var local7 = Field7 () >
    < cfset var local8 = Field8 () >

    < cftransaction isolation = "read_committed" >
    < cfquery name = "qCreate" datasource = "datasource" username = "userName" password = "password" result = "qCreateResult" >
    Insert into myTable (Field1, Field2, Field3, Field4, sphere5, case Field6, Field7, Field8)
    values)
    < cfqueryparam value = "" #local1 # "cfsqltype ="CF_SQL_VARCHAR"/ >,"
    < cfqueryparam value = "" #local2 # "cfsqltype ="CF_SQL_VARCHAR"/ >,"
    < cfqueryparam value = "" #local3 # "cfsqltype ="CF_SQL_VARCHAR"/ >,"
    "< cfqueryparam value =" "#local4 #" cfsqltype = "CF_SQL_INTEGER" = null "#iif ((local4 eq""), ("yes"), ("No.")) #" / >.
    < cfqueryparam value = "" # locale5 # "cfsqltype ="cf_sql_integer"/ >,"
    < cfqueryparam value = "" #local6 # "cfsqltype ="cf_sql_integer"/ >,"
    < cfqueryparam value = "" #local7 # "cfsqltype ="cf_sql_varchar"/ >,"
    < cfqueryparam value = "" # locale8 # "cfsqltype ="cf_sql_integer"/ >"
    )
    < / cfquery >
    < / cftransaction >
    < cfset variables.objectID = qCreateResult.GENERATED_KEY >
    < / cffunction >

    [No I am not really using Field1, 2, 3 in my code and my password is not actually password, but you get the point].

    Again, this works in my lab. (CF8, MySQL 5.0, Apache, standard Connector/j) That is what it is?

    Personally, I think that my environment is not what it was supposed to be regardless of what I was told. The rep that I was talking doesn't seem to know much about ColdFusion and at the end of the conversation, he said as well and opened a ticket. Not very useful, but at least not rude.

    However, I want to be fair and check all the possibilities. If you see something wrong with my Code let me know that I'm rather crazy eyes will then return to writing queries to get the id.

    Thanks in advance!

    -Joe

    PS: Just before posting this I tried to add < cfset var qCreateQuery = "" / > to the list of the variables just to see if it would change what anyone and it doesn't work. " Still works on my system, but not on them.

    Found the problem.
    The environment has been set up correctly, but the DSN apparently obtained the value a MySQL 3.51 Driver to the administrator.
    It's something that my hosting service, I have no control on however I also don't even think about asking them to check for me either. I forgot that CF has even a version 3 driver for MySQL.

    So my hats off to HostMySite technicians who concluded that, for me and for anyone having the same problem, I suggest you also check the same.

  • Problem with the format of the values in the command prompt (when you use multiple values)

    Hi all

    I have problem with the format of the values in the command prompt when you use multiple values.

    Value is year (2009) and when I use it in the drop-down list that is formatted, all right, as 2009, but when I use several values I get number as 2009,00. I put in year column format number with 0 decimal places and save by default in the year column. Year is formatted well anywhere in the query, such as 2009. Why is - what happens at the command prompt when you choose multiple values in prompt dashboard?

    Thank you

    I think the YEAR Data Type could be defined DOUBLE RPD.

    Use the CAST function in the formula (fx) and the output from test.

    CAST (INT YEAR)

    Hope, it will help you.

  • I am facing a problem with the beep.vi. I have a DAQ program, which acquired the signal and compare it to a threshold value. When a signal is out of range, a Visual and sound alarm has occurred. I use the VI beep.vi to generate the sound.

    I am facing a problem with the beep.vi.  I have a DAQ program, which acquired the signal and compare it to a threshold value. When a signal is out of range, a Visual and sound alarm has occurred. I use the VI beep.vi to generate the sound. Everything works fine except the sound alarm. It gives the table 1 d of type mismatch. I tried to fix this by placing it in a box structure. But it still does not work. If someone could help? Please find attached my VI. Best wishes to all visitors to the Forums of Discussion OR.

    Ihab El-Sayed

    published here: http://forums.ni.com/t5/LabVIEW/Playing-sound-based-on-exceeding-a-threshold-value-1D-array-data/m-p...

  • Problem with the change in value of listbox event

    Hello

    I have a problem with the help of Listbox value change event. The code that I have attached is a simplified version of the largest program, but the problem is the same. One of the loops of Nonna is responsible for handlig occurring events ant the other is responsible for the execution of the program. In the project of oryginal I use a listbox control to determine which plots graphic display of a waveform is visible (first position of the listbox-> only plot first visible etc.). In the attached vi, I just show the current value of the listbox control. The problem is the event runs only once and then the program crashes. I want to be able to change the value of the listbox work both at idle and in State of a program, but when I put the structure of the event in both States, he does not. I'd be very grateful if someone smarter than me could tell me where I made my mistake. I want my program to be able to manage the keys and listbox events in States (slow down and knit) program.

    You have two structures of event in two cases different from the structure of the case, and both are tuned to listbox events has changed. Because only once can be triggered at any time, the VI crashes (lock events the front panel (default) until the event can complement).

    You must use a unique event structure managing all events.

    The overall program architecture looks like inside-out for me.

    For the buttosn, you must use action lock (switch not release!) and use the value changed events.

  • Problem with the network connection Wireless since installation of win 7.

    I ve just installed Windows 7 last week and no problems until yesterday when all of a sudden my laptop can´t to connect to my wireless network... Strange because my Iphone can't, so it seems like there is no problem with the network.
    And the funny part is that when it detects one network different, other than mine, it connects and works very well!

    I ve tried unplugging the laptop and Wi - Fi connection, but it just says that it can´t to connect to the network... He finds it, but when I click on connect it says only: No..

    What to do?

    Hi KlinzmannFussballspielerin,

    Welcome to the Microsoft Answers community.

    Before you try the procedure below, change the security settings for the firewall at various levels and check if the problem persists.

    I suggest you to update the network drivers.

    Steps to update of network driver:

    1. click on the Start button.

    2. in the search box type devmgmt.msc, and then press ENTER.

    3. Select the network device and right click on it

    4. now, select Properties.

    5. in the Properties window, on the driver tab, click Update driver.

    6. After installing the updates, restart the computer.

    For more information visit http://windows.microsoft.com/en-US/windows-vista/Finding-drivers-What-to-do-when-your-hardware-wont-work-with-Windows-Vista

    To solve your problem, try to turn on network discovery. To do this follow the steps below:

    1. Open advanced sharing settings by clicking the Start button, then Control Panel. In the search box, type network, click Network and sharing Center, and then, in the navigation pane, click on change settings for sharing advanced.

    2. click on the chevron to expand the current network profile.

    3. click turn on network discovery and then click on save changes. If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

    To learn more about this feature, please visit the below mentioned link:

    http://Windows.Microsoft.com/en-us/Windows7/what-is-network-discovery

    If the problem persists then I suggest you to reset the network adapter settings. Then follow the steps below

    To reset the stack TCP/IP go to this article and either click on "Fix it for me" or follow the instructions to fix it yourself:

    http://support.Microsoft.com/kb/299357

    Disable the IP helpdesk:

    1 hold the Windows key and type R, type "services.msc" (without the quotes) and press enter

    2. scroll down to the IP assistance service, right-click on it and select Properties

    3. in the drop-down list box that says "Automatic" or "Manual", set it to disabled and then click 'apply '.

    4. then click on "Stop" to stop the service from running in the current session

    5. click on OK to exit the dialog box

    Disable IPv6:

    Try to uninstall IPv6 on all interfaces, the removal of virtual cards of IPv6 and reset the TCP/IP stack. To remove the IPv6, go to the properties for each network adapter, and deselect the check box next to the Protocol "Internet Protocol version 6 (TCP/IPv6), which will turn off, or select it and click on uninstall, which withdraw power off the computer.» Then go into Device Manager and remove any 4to6 adapters, adapters miniport WUN or tunnel adapters.

    NOTE: You should do this for each network connection.

    Disable the DHCP broadcast flag: link: http://support.microsoft.com/default.aspx/kb/928233

    Important: This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:

    http://support.Microsoft.com/kb/322756

    (How to back up and restore the registry in Windows)

    Windows Vista cannot obtain an IP address from certain routers or some non-Microsoft DHCP servers

    To resolve this issue, disable the DHCP BROADCAST flag in Windows Vista. To do this, follow these steps:

    1. Click Start, type regedit in the search box, and then click regedit in the list programs.

    If you are prompted for an administrator password or for confirmation, type your password, or click on continue.

    2. Locate and then click the following registry subkey:

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\ {GUID}

    3. in this registry path, click the (GUID) subkey that corresponds to the network adapter that is connected to the network.

    4. on the Edit menu, point to new, and then click DWORD (32-bit) value.

    5. in the new area #1, type DhcpConnEnableBcastFlagToggle and press ENTER.

    6 right-click DhcpConnEnableBcastFlagToggle, then click on modify.

    7. in the value data box, type 1 and then click OK.

    8. close the registry editor.

    By setting this registry key to 1, Windows Vista's trying to get an IP address using the BROADCAST flag in DHCP Discover packets. If that fails, he will try to obtain an IP address without using the BROADCAST flag in DHCP Discover packets.

    Hope this information is useful.

    Let me know if it worked.

    Thank you, and in what concerns:

    Umesh P - Microsoft Support

    Visit our http://social.answers.microsoft.com/Forums/en-US/answersfeedback/threads/ Microsoft answers feedback Forum and let us know what you think.

  • Problems with the dash invite you - 11.1.1.6 on Win 2008 64 bit

    Hi, I'm just curious to know if anyone who is using the / tests 11.1.1.6 on a 64-bit environment Windows 2008 is problems with the dashboard of the guests.

    I see the questions where the guests of dashboard are appearing with a NULL option - i.e. If a dimension has values A, B and C, I see the prompt appears as:

    NULL VALUE
    A
    B
    C

    There are NO NULL values in the data, and I see that the related query returns only 3 rows. It feels like something is broken with 11.1.1.6, but just curious to know if other people see it.

    BTW, this happens with all types of guests - check boxes, radio buttons, pick lists, etc. But strangely, it does not occur with the data of 'sound' - don't know if it's because it's from XML instead of the database?

    THX,
    Scott

    Just because I'm also curious.

    In the physical column from the physical layer, the NULL checkbox is checked?

    See you soon
    Nico

  • I'm having a problem with the pictures on some pagies partially of fully duplacating other tiles nearby. Only occurs with Firefox.

    I'm having a problem with the photos on some pages partially to duplicate completely other tiles nearby. Only occurs with Firefox. The thumbnails are refreshed when I move the cursor over them, but again distort when you scroll the page. I have a few images, but cannot up-load them on this page of support for some reason any. Maybe I can email you if you need?

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problem.

    • Put yourself in the DEFAULT theme: Firefox/tools > Modules > appearance
    • Do NOT click on the reset button on the startup window Mode safe

    You can check the preferences of network.http. * on the topic: config page and make sure that they have the default value.
    You can restore the default user set prefs ("BOLD") via the context menu.

  • problems with the firefox search engine

    When using my hotmail email today when I I closed it got stuck with the msn home page, I have managed to recover the firefox home page, but the search is made by BING, I don't want that I want as before google. It seems if be produced since firefox 18 was delivered

    Can any body help to get this back as before

    Try to reset default preferences with the SearchReset extension:

    Note that the SearchReset extension runs only once and then uninstalls automatically, so it will not appear on the page "> Firefox Add-ons" (topic: addons).

    You can check the pref browser.search.defaultenginename (s) on the topic: config page to see if it has the value of Google by default.

    If there is a problem with the search through the default value: home page and then try to reset the search engine used on the subject: homepage.

    Reset the pref browser.startup.homepage_override.mstone through the context menu by default on the topic: config page and close and restart Firefox to restore the on: default home page.

    1. Open the topic: config page through the address bar
    2. Type in the filter bar: mstone
    3. Right-click on the browser.startup.homepage_override.mstone line, and then select: Reset
    4. Close and restart Firefox

    If this did not help, then remove the button Delete the chromeappsstore.sqlite file in the Firefox profile folder and repeat the foregoing.

  • Satellite U500-17F: problems with the new HARD drive

    Hi everyone, I got some troubleshooting with my Satellite and a new drive, I bought recently, because that is already damaged because of too many bad sectors. One is a Western Digital Scorpio Black 320 Bg (WD3200BEKT model number). It should be a fast reader but is not with my Satellite.

    After having mounted the drive in the laptop, I ran a new installation (with full disk format} Windows 7 (64 bit) with all the necessary drivers (that I downloaded directly from the Page of Support Toshiba.)

    The problem is that the laptop needs a lot of time to start and also to disable, and whenever I try to run an application or start a program (for example Firefox, or just a few windows applications), the laptop freezes for about 30 to 60 seconds, the drive no longer works (you can hear leaders put in position 'parking' and the HDD LED control is constant) ", no lights flashing).

    It seems that the drive (during this 30-60 seconds) in something as a stand-by mode. I ran a few Western Digital diagnostic tools and the car looks all right to 100%. It works also without any problems in the other laptop (HP Pavilion DV6500). Could this be a problem with the controller (Intel ICH9M - E ATA AHCI controller) driver?

    Any suggestion?
    Thanx

    Hello

    You use the latest version of the BIOS?
    Please check if you need a BIOS update. Of course I read in a few discussions on the similar question of Win XP you use Win 7 but its value to check the update of the BIOS and U500 series.

    In addition, I recommend check you the power of Windows 7 options.
    Disable in the power profile that you use power saving HDD.

    Just a question:
    You use the option AHCI in the BIOS?
    As far as I know it of possible to use either a compatible SATA AHCI mode.
    AHCI must be used because this option would use full SATA performance.

  • Problems with the installation of recovery - Satellite A300D - BSOD

    Hello

    The laptop in question (TOSHIBA Satellite A300D) recently stopped starting (BSoD).

    So, I tried using the recovery disk, but there is no help. What happens is:
    -After about 10 minutes of waiting, the first language menu load, so I click on "next".
    - Then I again click Next and accept the message that my HARD drive will be erased
    - Then I see a cmd prompt that says "try to remove all the letters of partitions possible...". »
    -There is also a minimized command prompt that says something like "RAID failed to initialize."
    -And then nothing happens.

    Is this a hardware problem? I also tried a full installation (instead of recovery), which, even once, is simply not. None of the errors is - it just freezes.

    Any help appreciated.
    Thank you.

    It is not easy to tell what can be the problem, but if you were not able to install the OS by using two different facilities CDs/DVDs, so there must be a problem with the HARD drive.

    The warranty is still valid?
    I mean you can contact the nearest Toshiba authorized service provider and explain the situation. They can swap the HDD and again test the recovery procedure.
    Can you get somewhere 2,5 SATA HDD for testing?

Maybe you are looking for

  • Marked move messages to folder rule

    I just want one thing very simple: I'm Mark messages be removed and placed in a folder of my choice. How can I do this? Why is this basic function not yet standard in email like a button or something?

  • Re: Need extra cooling for Satellite A110

    Hey people, I have a Satellite A110 and he has trouble with cooling. I heard that there is more cooling systems for laptops, but my question is if it's possible for my laptop as well. Greetz Tom

  • DV7 Graphics Score on Windows experience index (Radeon 6770 M problem?)

    Can someone explain why the HP dv7t 6000 CTO (prod. No.) XW899AV) displays a score for graphics Windows experience index and the reviews which is higher with the Mobile Intel HD Graphics active (6.3) than with the Radeon HD 6770 M (4.1)? I don't know

  • My passport S/Nwx61acop3826 device

    Help my open my passport S/N wx61acop3826 please

  • Restore the system configuration files

    I was running the restoration of the system of the laptop and the battery dies before completing the restoration of the system. After loading it that the laptop does not start it makes a loop on the system recovery options.