Msi motherboard 990FXA-GD80 wont work only sending debug code

my motherboard 990FXA-GD80 is not booting to bios ore nothing is coming up to the screen it's only sending debug code:
FF
19
FF
2b
3b
37
36
70
60
72
b2
92
99
52
54
55
56
some times
44
45
46
why are nothing happening and what can it be
i have tried out chaining slots for the memory card and to remove/mount the CPU and still it responds the same
it's a FX-8120 CPU
i have also tried with a
is there someone that knows what can be wrong with the motherboard ples i need some help with this.

FF - means nothing
19 - Pre-memory South Bridge initialization is started
FF - means nothing
2B - Memory initialization. Serial Presence Detect (SPD) data reading
3B - Post-Memory South Bridge initialization is started
37 - Post-Memory North Bridge initialization is started
36 - CPU post-memory initialization. System Management Mode (SMM) initialization
70 - South Bridge DXE initialization is started
60 - DXE Core is started
72 - South Bridge devices initialization
B2 - Legacy Option ROM Initialization <--- possible Graphics Card Problem too
92 - PCI Bus initialization is started
99 - Super IO Initialization
52 - Memory initialization error. Invalid memory size or memory modules do not match
54 - Unspecified memory initialization error
55 - Memory not installed
56 - Invalid CPU type or Speed
the Red area is a very bad set of codes as they are mainly Memory and CPU issues
your some times codes are all DXE IPL is started
ok from that track of codes it looks to me like either a memory problem (MOST LIKELY) or CPU not Supported problem!
ok so Read this>>>> >>Posting Guide<< and give us the parts in your Build and exactly what memory and CPU you have?
also what is the Serial Number of your motherboard (Leave off the last 3 Digits if you do not want to give the full one)? ----- NOTE: its either on the rear of the board or on the UPC label on the Motherboard Box or both!

Similar Messages

  • CRM_ORDER_MAINTAIN works only in debug mode

    Hi Experts,
    I am currently facing a strange issue. I am trying to add a line item to a service ticket, but the code works only in debug mode. Sample code is given below:
    lv_product_i-ref_handle = '0000000001'.
    lv_product_i-ref_guid = lv_header_guid.
    INSERT lv_product_i INTO TABLE lt_product_i.
    ls_orderadm_i-header = lv_header_guid.
    ls_orderadm_i-itm_type = 'ZSG5'.
    ls_orderadm_i-number_int = '0000000010'.
    ls_orderadm_i-ordered_prod = 'SERVICEITEM_SG5'.
    ls_orderadm_i-handle = '0000000001'.
    ls_orderadm_i-mode = 'A'.
    ls_orderadm_i-itm_proc_ident = 'SRVC'.
    INSERT ls_orderadm_i INTO TABLE lt_orderadm_i.
    ls_input_fields-ref_handle = '0000000001'.
    ls_input_fields-objectname = 'ORDERADM_I'.
    CLEAR ls_field_names.
    ls_field_names-fieldname = 'HANDLE'.
    APPEND ls_field_names TO ls_input_fields-field_names.
    ls_field_names-fieldname = 'HEADER'.
    APPEND ls_field_names TO ls_input_fields-field_names.
    ls_field_names-fieldname = 'ITM_PROC_IDENT'.
    APPEND ls_field_names TO ls_input_fields-field_names.
    ls_field_names-fieldname = 'ITM_TYPE'.
    APPEND ls_field_names TO ls_input_fields-field_names.
    ls_field_names-fieldname = 'MODE'.
    APPEND ls_field_names TO ls_input_fields-field_names.
    ls_field_names-fieldname = 'NUMBER_INT'.
    APPEND ls_field_names TO ls_input_fields-field_names.
    ls_field_names-fieldname = 'ORDERED_PROD'.
    APPEND ls_field_names TO ls_input_fields-field_names.
    INSERT ls_input_fields INTO TABLE lt_input_fields.
    CALL FUNCTION 'CRM_ORDER_MAINTAIN'
    EXPORTING
    it_product_i = lt_product_i
    CHANGING
    ct_orderadm_i = lt_orderadm_i
    ct_input_fields = lt_input_fields
    EXCEPTIONS
    error_occurred = 1
    document_locked = 2
    no_change_allowed = 3
    no_authority = 4
    OTHERS = 5.
    LOOP AT lt_orderadm_i INTO lv_tempvar.
    lv_item_guid = lv_tempvar-guid.
    ENDLOOP.
    The item guid is coming as initial and no item is being added.But if i put a breakpoint in CRM_ORDER_MAINTIAN, then the guid is being generated properly. Any pointers why the code is behaving like this or someone has faced a similar issue before?
    Thanks and Regards,
    Rohit

    Hi Rohit,
    The above said is also correct + U have to write
      CALL FUNCTION 'CRM_ORDER_SAVE'
        EXPORTING
          IT_OBJECTS_TO_SAVE = GT_OBJ_GUIDS
        IMPORTING
          ET_SAVED_OBJECTS   = GT_SAVED_OBJECTS
        EXCEPTIONS
          OTHERS             = 2.
      COMMIT WORK.

  • CRM_ORDER_MAINTIAN works only in debug mode!

    Hi Experts,
    I am currently facing a strange issue. I am trying to add a line item to a service ticket, but the code works only in debug mode. Sample code is given below:
    lv_product_i-ref_handle = '0000000001'.
    lv_product_i-ref_guid = lv_header_guid.
    INSERT lv_product_i INTO TABLE lt_product_i.
    ls_orderadm_i-header = lv_header_guid.
    ls_orderadm_i-itm_type = 'ZSG5'.
    ls_orderadm_i-number_int = '0000000010'.
    ls_orderadm_i-ordered_prod = 'SERVICEITEM_SG5'.
    ls_orderadm_i-handle = '0000000001'.
    ls_orderadm_i-mode = 'A'.
    ls_orderadm_i-itm_proc_ident = 'SRVC'.
    INSERT ls_orderadm_i INTO TABLE lt_orderadm_i.
    ls_input_fields-ref_handle = '0000000001'.
    ls_input_fields-objectname = 'ORDERADM_I'.
    CLEAR ls_field_names.
    ls_field_names-fieldname = 'HANDLE'.
    APPEND ls_field_names TO ls_input_fields-field_names.
    ls_field_names-fieldname = 'HEADER'.
    APPEND ls_field_names TO ls_input_fields-field_names.
    ls_field_names-fieldname = 'ITM_PROC_IDENT'.
    APPEND ls_field_names TO ls_input_fields-field_names.
    ls_field_names-fieldname = 'ITM_TYPE'.
    APPEND ls_field_names TO ls_input_fields-field_names.
    ls_field_names-fieldname = 'MODE'.
    APPEND ls_field_names TO ls_input_fields-field_names.
    ls_field_names-fieldname = 'NUMBER_INT'.
    APPEND ls_field_names TO ls_input_fields-field_names.
    ls_field_names-fieldname = 'ORDERED_PROD'.
    APPEND ls_field_names TO ls_input_fields-field_names.
    INSERT ls_input_fields INTO TABLE lt_input_fields.
    CALL FUNCTION 'CRM_ORDER_MAINTAIN'
    EXPORTING
    it_product_i = lt_product_i
    CHANGING
    ct_orderadm_i = lt_orderadm_i
    ct_input_fields = lt_input_fields
    EXCEPTIONS
    error_occurred = 1
    document_locked = 2
    no_change_allowed = 3
    no_authority = 4
    OTHERS = 5.
    LOOP AT lt_orderadm_i INTO lv_tempvar.
    lv_item_guid = lv_tempvar-guid.
    ENDLOOP.
    The item guid is coming as initial and no item is being added.But if i put a breakpoint in CRM_ORDER_MAINTIAN, then the guid is being generated properly. Any pointers why the code is behaving like this or someone has faced a similar issue before?
    Thanks and Regards,
    Rohit

    Well, during debugging an implicit COMMIT WORK is executed on a regular basis. This might cause the ITEM GUID to be created during debugging.
    However, normally, after CRM_ORDER_MAINTAIN, you should use the CRM_ORDER_SAVE as well. This will return a list of SAVED_OBJECTS. If all objects were saved correctly, do an explicit COMMIT WORK.
    Works fine for us.....

  • Function Module working only in debug mode

    Hi all,
    The following Function Module works only in debug mode. The purpose of this FM is to create a notification and to put it in progress status. If I put a breakpoint before "CALL FUNCTION 'BAPI_ALM_NOTIF_PUTINPROGRESS'" it works. If I execute this FM without putting a breakpoint at that place it creates the notification but doesnt put it in progress status.
    In other words, the last BAPI call doesnot work if I dont put a breakpoint before.
    Can somebody help me to find out where is the problem?
    Thanks,
    Younes
    FUNCTION ZFM_CREATE_NOTIF_IN_PROCESS.
    ""Local interface:
    *"  IMPORTING
    *"     VALUE(NOTIFTYP) TYPE  CHAR2
    *"     VALUE(NOTIFHEADER) TYPE  BAPI2080_NOTHDRI
    *"  EXPORTING
    *"     VALUE(NOTIFNUMBER) TYPE  CHAR12
    *"     VALUE(NOTIFCURSTATUS) TYPE  CHAR40
    DATA: gs_bapi2080_nothdre TYPE bapi2080_nothdre,
          gt_return TYPE TABLE OF bapiret2.
    The notification is created with a temporary number
    CALL FUNCTION 'BAPI_ALM_NOTIF_CREATE'
      EXPORTING
        notif_type         = NOTIFTYP
        notifheader        = NOTIFHEADER
      IMPORTING
        notifheader_export = gs_bapi2080_nothdre
      TABLES
        return             = gt_return.
    READ TABLE gt_return TRANSPORTING NO FIELDS WITH KEY type = 'E'.
    CHECK sy-subrc IS NOT INITIAL.
    *The notication will be saved with a number which isnt temporary
    CALL FUNCTION 'BAPI_ALM_NOTIF_SAVE'
      EXPORTING
        number      = gs_bapi2080_nothdre-notif_no
      IMPORTING
        notifheader = gs_bapi2080_nothdre
      TABLES
        return      = gt_return.
    READ TABLE gt_return TRANSPORTING NO FIELDS WITH KEY type = 'E'.
    CHECK sy-subrc IS NOT INITIAL.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    The Notif is already created, it will be put in progress status
    NOTIFNUMBER = gs_bapi2080_nothdre-notif_no.
       CALL FUNCTION 'BAPI_ALM_NOTIF_PUTINPROGRESS'
            EXPORTING
              NUMBER             = NOTIFNUMBER
              LANGU              = SY-LANGU
           IMPORTING
             SYSTEMSTATUS       = NOTIFCURSTATUS
           TABLES
             RETURN             = gt_return.

    Hi Emmanuel,
    Now I get your problem: you want to wait to have the commit finished! The call to BAPI_TRANSACTION_COMMIT has an optional parameter 'WAIT' which is space by default which causes only a commit. When you set this parameter to 'X' it will do a commit work and wait.
    This should solve your problem!
    Regards,
    John.

  • 990FXA-GD80 wont start

    Hi everybody, maybe someone could help here ?
    Because my "old" msi  770-C45 died, i bought a 990FXA-GD80, but it does not want to start. i can start the computer, but nothing hapen, no display, no boot on hard drive or DVD. I've tried to change  cpu, ram, graphic card, no result. could the motherboard be dead already ? The cpu phase leds are off, 1 ram led is on, and 1 NB phase led is on. Please help.
    Thanks

    https://forum-en.msi.com/index.php?topic=132628.msg998105#msg998105
    Powersupplied died with the other board blowing up??

  • 990FXA-GD80 wont boot pls help

    i got meself a 990FXA-GD80 mainbord with FX1850 3.6 CPU put it all in got it to turn on but had to order a new sata cd drive wile i wait for it to come PC world is sallin a IDE to Sata converter so i grabed on so i could get windows loaded on pluged it all in turned me computer on an nothin well i say nothin all the bord powers up all me little blue light come on fans all go round but it wont start to boot an the debug leds just show up ff really quick then changes to 19 an nothin eles happens thanks Paul

    >>Posting Guide<<

  • Badi working only in Debug mode

    Hi experts,
    It's my first time with Badi, and I'm facing a issue I can't understand.
    I've activated badi ME_PROCESS_PO_CUST , and everything work's fine .
    From the method "Close" I call a Z... function which writes data on a custom table.
    I've tested  it and the system correctly update the table , but when I deactivate  the debug  in the badi's method , it looks like the badi is not implemented and the system doesn't pass trough the function. 
    Can somebody adress me to solve it ?
    Thank you in advance for any help.
    Ciao.

    Thank you for your help Sudhir , but the table update it's done by the custom function which should be called by the BAdI. My issue is that the BAdI's method works only if I set a break-point on it. If I do not put a break-point on the BAdI , the function is not called at all !!.
    Thanks again for your suggestion.

  • Deserialization works only in debug mode

    When I try to deserialize an XML document (defined via File-Connection) it works fine in debug mode but I get an error in non-debug-mode. What's the problem here?
    Error: 2011-12-29 19:31:40.25
    Code: 0x00000001
    Source: Read data from SAP
    Description: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.InvalidOperationException: There is an error in X
    ML document (0, 0). ---> System.TypeInitializationException: The type initializer for 'Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderList1' threw an exception
    . ---> System.NullReferenceException: Object reference not set to an instance of an object.
    at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderList1..cctor()
    --- End of inner exception stack trace ---
    at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderList1..ctor()
    at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializerContract.get_Reader()
    at System.Xml.Serialization.TempAssembly.InvokeReader(XmlMapping mapping, XmlReader xmlReader, XmlDeserializationEvents events, String encodingStyle)
    at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle, XmlDeserializationEvents events)
    --- End of inner exception stack trace ---
    at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle, XmlDeserializationEvents events)
    at System.Xml.Serialization.XmlSerializer.Deserialize(TextReader textReader)

    Yes, there is a potential for a bug. Thus, feel free to log it in
    MS Connect.
    You need to deploy it to the GAC, too. I will better point you to a blog post that covers this: http://www.hoekstra.co.uk/index.php/software-mainmenu-36/ssis-mainmenu-75/73-create-and-use-a-c-assembly-for-ssis.html?start=1
    I suggest when you go live you create a script that will take care of all, but it is not too too laborious.
    Arthur My Blog
    Are you 100% sure? Because I can see that SSIS seeks for the dll in ...DTS/binn. So I see no need to pollute the GAC with this dll.
    My dll is not deployed into the GAC and when I remove it, it will no longer work. I think it works in DTS/binn because the DTExec.exe is located there?
    LOG: This bind starts in default load context.
    LOG: Using application configuration file: c:\Program Files\Microsoft SQL Server\100\DTS\binn\DTExec.exe.Config
    LOG: Using machine configuration file from c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\config\machine.config.
    LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
    LOG: Attempting download of new URL file:///c:/Program Files/Microsoft SQL Server/100/DTS/binn/ClassLibrary1.DLL.
    LOG: Attempting download of new URL file:///c:/Program Files/Microsoft SQL Server/100/DTS/binn/ClassLibrary1/ClassLibrary1.DLL.
    LOG: Attempting download of new URL file:///c:/Program Files/Microsoft SQL Server/100/DTS/binn/ClassLibrary1.EXE.
    LOG: Attempting download of new URL file:///c:/Program Files/Microsoft SQL Server/100/DTS/binn/ClassLibrary1/ClassLibrary1.EXE.

  • MSI 990FXA - GD80 Wont Boot.

    Hi,
    My GD80 board wont boot past code 99, it was fine yesterday but now wont do anything.
    It comes up with a list of the HDD devices, and any optical drives, the unganged status of the ram, and says press F1 to setup or F2 to continue. I have tried different keyboards(several), different mice/no mouse connected, also 1 single stick of ram instead of the 4x4gig corsair. In fact, all of the usual stuff for trouble shooting. this is a premium board, I find it hard to believe this cannot be fixed somehow.
    Any help appreciated.
    thanks.

    The problem is the same as the screenie above. I know that the board in the picture is a GD65, however other than the board version, everything else is the same. I pressed F1, just hangs with prompt entering Setup...... if i press F2 it just sits there doing nothing.

  • MSI NBox 5900 Ultra wont work at 8x AGP

    I recently bought a MSI 5900 Ultra 256 in the NBox package. I installed it and loaded the latest drivers and began playing DAOC. It was great for half an hour then it locked up. I also had an issue where my refresh rates were really bad and it was drawing like one frame every 10 seconds.
    I rebooted the pc and turned off 8x agp. Botted it back up and played for the rest of the evening.
    I just put in a new 500 watt PS with a 32A 12 v rating, so I would hope the PS isnt at fault. I also had recently cleaned all my nvidia drivers off the machine as I had installed an ATI 9600xt.
    Please help.
    I already spent a week working on an XFX 5900 ultra that I ended up sending back, I dont want do that again. Also, I have noticed a number of other folks here who have had the same issue.

    I have the latest bios and drivers on my pc. I am not too sure what the grease has to do with it not working in 8x mode. I am not real sure what the 3.3 and 5v Amps are actually. The image on the website is very blurry. I looked up a review and found this information:
    3.3v 28 A
    5v    30 A
    3.3v / 5.0v Combined Load - 200W
    3.3v / 5.0v / 12.0v Combined Load - 480W
    The review was found here:
    http://www.systemcooling.com/modules.php?name=News&file=article&sid=1371
    I am going to try a full whip and reload of my machine. If this doesn't work I guess I will return the card and go ATI from here on out.
    Could this have something to do with the fact that the motherboard is an nvidia chipset? Do MSI mother boards have issues running nvidia FX cards?

  • Xmp profile on 990FXA-GD80 not working

    hi guys
    i bought a upgrading ram kit http://www.newegg.ca/Product/Product.aspx?Item=N82E16820104370 and when  i set xmp profil in bios it refuses to boot but when i manually set frequency (2133 mhz) and timings it works fine so is it the ram or the mobo ??

    Quote from: gamer35 on 01-September-13, 17:42:33
    msg from msi support
    Thanks for sharing. I removed the ftp link given to you by MSI (as it is not meant for public), uploaded the beta to our beta section and replaced the link.
    Quote from: wiesel201 on 01-September-13, 03:55:44
    Thank you. I can´t upload files tho the global forum, that´s why i can give only download-links to the german MSI-forum.
    I know that's why I added it. If we don't have a file added so far adn you'd like to contribute it you can also pm me and I'll upload it.

  • My keyboard wont work only certain keys do can anyone help?

    i let my little cousin barrow my laptop and she wash playing some game online and when.she gave it me  back only certain keys work

    Try a NVRAM/PRAM reset. Instructions are a few paragraphs down from the top.
    http://support.apple.com/kb/ht1379

  • My program works only in debugging mode

    Dear All,
    I am just starting to use LabVIEW and developing a instumental driver. 
    The program is rather sequentially designed because I am only used to work with text-based program. 
    The current program is working in debugging mode without any error message.
    To give an idea of how it is composed:
    1. Set up the serial port setting (machine address, baud rate, parity, etc)
    2. Send to the instument the name of a short program to be run. 
    3. Send mutiple string commands to the instruments.  Those string commands construct a short program to control the instrument.
    4. Send another string command to run the short program
    The issue is that it does not work in excution mode.  It looks to me that the communication between the instrument and computer seems to be too fast. 
    Since the program is designed in a sequential manner, it does not have any while-loop or for-loop so I cannot add any timing function. 
    Could anyone give me a hint or a right direction to fix this issue?  It would be really appreciated.  Thank you.
    Solved!
    Go to Solution.

    You could do something like the attached modification.Note how I modified the connector pane for the subVI to use the conventional 4-2-2-4 pattern and notice where I connected the terminals.
    NOTE: I am assuming the VI is supposed to run just once, and that you're not using the Run Continuously button in the toolbar. You're not, right?
    Attachments:
    NE-100_StairFlow_w_RUN00 MOD.vi ‏27 KB
    NE-100_RAT_00_XX MOD.vi ‏18 KB

  • ERMS - Email Linking works only in DEBUG mode!

    Hi All,
    We are on ERMS in CRM 7.0 SP04.
    I am facing a strange issue.
    I have configured a Rule Policy so that when a user send an email to a particular email id a service ticket is created. A small subset of this functionality is that the email that the user sends should get liked to the service ticket that is created under the Processing Log assignment block.
    Now the strange thing is that during normal execution the email does not get logged with the service ticket but when I debug the workflow step using crm_erms_logging the functionality works perfectly and the email gets logged with the service ticket.
    I suspected issues with authorization of the WF-BATCH user but after assigning auths similar to the debug user also the problem is not resolved.
    Quick response would be highly appreciated.
    Kind regards,
    Gaurav

    Hi Gaurav,
    Role: WF_BATCH  has access to the follwoing:
    CRM_ORD_LP
    CRM_ORD_OE
    CRM_ORD_OP
    CRM_ORD_PR
    These objects are responsible for the CRM Order access and needs access to transaction types which you are using in the system. Use "*" or enter transaction type which you are using.
    Let me knwo if it still does not work.
    Regards,
    Namita
    Edited by: Namita Singh on Oct 14, 2009 10:32 AM

  • Enhancement works only in debug mode

    Hi all,
    Need help with the issue that I have.I have written an enhancement , in one of the includes that is being called by MIRA(LMR1MF1H) tcode, to set the document type , based on condition.Below is the code snippet :
    Import the flags from memory id
    import is_invo from memory id 'IS_INVO'.
    import is_crme from memory id 'IS_CRME'.
    import is_pdf from memory id 'IS_PDF'.
    * Check whether PDF or scanned document and change doc type to Y3 or Y4
      if is_pdf eq 'X'.
    *    Check if invoice
         if is_invo eq 'X'.
           rbkpv-blart = 'Y3'.
         elseif is_crme eq 'X'.
           rbkpv-blart = 'Y4'.
         endif.
      wait up to 1 seconds.
      endif.
    * Free memory
      free memory id 'IS_INVO'.
      free memory id 'IS_CRME'.
      free memory id 'IS_PDF'.
    Now, When I execute directly, the document type is not getting set...I assume the control is not going to my code at all..as there is no other place where the doc type gets modified...
    However, when i execute in debug mode, it works perfectly fine...Any inputs on why this behaviour ?

    Hi ,
    I am not sure what is going wrong..I think the control is not going to the enhancement point at all ! I set a default value for the flag and still the document type doesnt change..Let me explain the flow of the code, that is written, it may help you guys in understanding..
    I have a Z report, in which, I am preparing the bdc data and also setting the flag is_pdf, based on some criteria.
    In this Z report, I am calling transaction MIRA.Now, MIRA tcode is calling FORM init_miro( in the include LMR1MF1H).Just before this form ends , I have my enhancement code(given above in my first post) written, to change  the doc type...
    Now, to test, I set the is_pdf flag to 'X', but still the doc type doesnt change...so I assume the control is not going there at all
    Also, I am not sure how to use the shared buffer concept..please suggest..

Maybe you are looking for