Error message ssa_get_reg: ssa=0: reg=0x2C rc=0x80

Hi,
My Catalyat 6509 have the following error message :
21:11:50.878 FW[Mod 01]: ssa_get_reg: ssa=0: reg=0x2C rc=0x80
21:27:12.443 FW[Mod 01]: ssa_get_reg: ssa=0: reg=0x2C rc=0x80
22:13:37.275 FW[Mod 01]: ssa_get_reg: ssa=0: reg=0x2C rc=0x80
22:16:58.100 FW[Mod 01]: ssa_get_reg: ssa=0: reg=0x2C rc=0x80
Please help to mention me what this message mean?
Best Regards,
Jackson

RegHi Jackson,
Please find the details of the error which you are seeing :
21:11:50.878 FW[Mod 01]: ssa_get_reg: ssa=0: reg=0x2C rc=0x80
21:27:12.443 FW[Mod 01]: ssa_get_reg: ssa=0: reg=0x2C rc=0x80
Details:-
SSA (Super Santa Ana) is a name of the ASIC to provide for the transfer of   parallel data in both direction between the line card and fabric.
Card running at 4 or 8Gbps speed. The above message occurs when firmware initializes the SSA but some of the registers are not accessible or the access times out.
If you'll see the message continuously, I'd recommend to reseat first to resync fabric connection.
However, the same message will be displayed after resetting then the module needs to be replaced.
HTH
Regards
Inayath
*Plz rate the helpfull posts.

Similar Messages

  • Reg Error: Message No FF 747 in MIRO Subsequent Credit.

    Hello
    While posting a subsequent credit in miro system is giving error message.
    message is The tax amount must not be greater than tax base amount.
    it is like credit memo for high priced amount in invoice.
    could you please put some light on this.
    thanks in advance.
    Gerhard

    Hi
    In tax code give 0% tax so that it will not caliculate any tax on that. Hope this will help you.
    Regards
    Muralidhar
    To say thanks reward points

  • Reg:Error message in MIGO Transaction

    Hi All,
    I added the new tab strip in MIGO Screen. now i need to make all the fields as mandatory. so using BADI (MB_MIGO_BADI) i gave the mandatory check ( if the Zfield = ' ', then error message) while clicking the check button before posting the material number. But it prevents to proceed further, simply it skips the transaction because of error message. and at the same time 'i should not use the information message'. my requirement is 'Error message should be populated after clicking the check button but it should allow to enter the mandatory fields after the error message'. i.e it should not skip the transaction after the error message.
    Please help me.
    Thanks & Regards
    Vijay.R

    Hi
    Probably the message is called dynamically, so u should try to check by debug when that message is raised.
    U can set a break-point for the statament MESSAGE.
    Max

  • Reg. Error message during Purchase order more than PR.

    Dear Sir
    After putting Purchase order for a Purchase requisition we can able to rise Purchase order for a PR. We a error message. Kindly give the solution this problem.
    How to set error message in this case.
    Thanks
    Rajj.

    Hi
    If u want to restrict PO creation with more than PR Qty u can set error message in OME0 or path as follows
    SPRO>Materials Management>Purchasing>Environment Data>Define Attributes of System Messages-->system message
    06 076
    Set the message no : 06 076 as error messages.
    Then when All The PR qty already convert to PO,then system will not allow another PO to created for this PR.
    Vishal...

  • Reg:- Custom Error Message for 404 error in KM Document iView

    Hi All,
    We have a requirement to display a custom error page instead of the standard"404 - The requested resource is not available" displayed in KM document iView, when the resource in question doesn't exist.
    Is it possible to display custom error message? If so, how can we achieve this functionality? What are the settings to be made?
    Appreicate your help.
    Thanks and Regards,
    Pavithra

    Hi Ravi,
    Thank you for the reply.
    But the scenario what I am talking about is different from the one mentioned in the link.
    I am using a KM Document iView. In the iView parameter, Path to Document, I have given the path to a document which does not exist in KM.
    For example, Path to Document - /documents/Test Folder/abc.html.
    There is no document by the name abc.html in KM.
    In this case, I get an error called "404 - The requested resource is not available." How can I get rid of this message and show a custom message instead?
    Please note that, this message appears at the iView level (and not page level as mentioned in the link)
    Appreciate your help.
    Regards,
    Pavithra

  • Reg:error messages display in wdabap

    hi expert
    could you please say what i need to pass the values which are mandatory in this error message coding .can you please share some the documents related to error messages display.
    method ONACTIONEXECUTEACTION .
    if sy-subrc ne 0 .
    get message manager
    DATA LO_API_CONTROLLER     TYPE REF TO IF_WD_CONTROLLER.
    DATA LO_MESSAGE_MANAGER    TYPE REF TO IF_WD_MESSAGE_MANAGER.
    LO_API_CONTROLLER ?= WD_THIS->WD_GET_API( ).
    CALL METHOD LO_API_CONTROLLER->GET_MESSAGE_MANAGER
      RECEIVING
        MESSAGE_MANAGER = LO_MESSAGE_MANAGER
    report message
    CALL METHOD LO_MESSAGE_MANAGER->REPORT_ATTRIBUTE_ERROR_MESSAGE
      EXPORTING
        MESSAGE_TEXT              = 'THE ENTERED TICID IS NOT AVAILABLE' .
        ELEMENT                   =
       ATTRIBUTE_NAME            =
       PARAMS                    =
       MSG_USER_DATA             =
       IS_PERMANENT              = ABAP_FALSE
       SCOPE_PERMANENT_MSG       = CO_MSG_SCOPE_CTXT_ELEMENT
       MSG_INDEX                 =
       CANCEL_NAVIGATION         =
       IS_VALIDATION_INDEPENDENT = ABAP_FALSE
       ENABLE_MESSAGE_NAVIGATION =
       VIEW                      =
    RECEIVING
       MESSAGE_ID                =
    else .
    DATA LO_COMPONENTCONTROLLER TYPE REF TO IG_COMPONENTCONTROLLER .
    LO_COMPONENTCONTROLLER =   WD_THIS->GET_COMPONENTCONTROLLER_CTR( ).
      LO_COMPONENTCONTROLLER->GETDATA(
      WD_THIS->FIRE_OUTVIEW1_PLG(
    endmethod.
    endif.
    thanks in advance
    Deepika
    Edited by: deepika_indian on Aug 18, 2010 7:32 AM

    Hi Deepika,
    Here for the method REPORT_ATTRIBUTE_ERROR_MESSAGE, mandotory fields are
    MESSAGE_TEXT
    ELEMENT
    ATTRIBUTE_NAME
    Here ELEMENT  v need to pass lv_el_context type ref of IF_WD_CONTEXT_ELEMENT.(Context Elemet Reference).
    Suppose your context having an attribute 'KUNNR'.
    So, here v need to pass in the below manner to raise an exception
        DATA lo_el_context TYPE REF TO if_wd_context_element.
        DATA ls_context TYPE wd_this->Element_context.
        DATA lv_gr2_visible TYPE wd_this->Element_context-kunnr.
    *   get message manager
      data lo_api_controller     type ref to if_wd_controller.
      data lo_message_manager    type ref to if_wd_message_manager.
      lo_api_controller ?= wd_This->Wd_Get_Api( ).
      CALL METHOD lo_api_controller->GET_MESSAGE_MANAGER
        RECEIVING
          MESSAGE_MANAGER = lo_message_manager
    *   report message
      CALL METHOD lo_message_manager->REPORT_ATTRIBUTE_ERROR_MESSAGE
        EXPORTING
          MESSAGE_TEXT              = 'MESSAGE TEXT TO DISPLAY'
          ELEMENT                          = lo_el_context
          ATTRIBUTE_NAME           = 'KUNNR'
    *      PARAMS                    =
    *      MSG_USER_DATA             =
    *      IS_PERMANENT              = ABAP_FALSE
    *      SCOPE_PERMANENT_MSG       = CO_MSG_SCOPE_CTXT_ELEMENT
    *      MSG_INDEX                 =
    *      CANCEL_NAVIGATION         =
    *      IS_VALIDATION_INDEPENDENT = ABAP_FALSE
    *      ENABLE_MESSAGE_NAVIGATION =
    *      VIEW                      =
    *    RECEIVING
    *      MESSAGE_ID                =      .
    Kindly revert for further clarification.
    Regards,
    Amarnath S

  • Reg.Customized error messages

    Hi All,
    How to get customized error messages in MONI in Error pipe.
    Is there any way to do?
    Thanks,
    Regards,
    Naresh

    Hi
    You can get custom error messages using Fault message Type.
    Even more customerization can be achived using ABAP
    Refer following
    Fault Message Types - A Demo (Part 1)
    Handling Web Service SOAP Fault Responses in SAP NetWeaver XI
    The specified item was not found.
    Interesting ABAP tables in XI – Part I
    Error handling framework
    Error Handling Framework XI(Out-of the box)-Episode 1
    Error Handling Framework XI(Out-of the box)-Episode 2
    Thanks
    Gaurav

  • ERS Settlement Error message Reg

    Dear All,
                      Im doing the ERS settlement configuration first time i have configured the Messages and outputs but at the time of settlement run it is showing error message as "ERS Settlement No message was found for partner 305469 company code 1000"
    how to resolve this issue...
    REgards
    Anand.

    hi,
    have you configured the condition record for the output  type ERS with that particular vendor what you are using.
    check and revert back.
    Regards,'
    velu

  • Resolving "Reg Svr32" Error message on startup

    I keep getting the following Error Message on startup:
    "RegSvr32"
    The Module C:\ProgramData\qayspiig.dat failed to load.
    Help

    Hello @Sam-l,
    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I understand you keep getting a RegSvr32 error on startup on your computer and want to get it fixed. I would be happy to assist you, but first I would encourage you to post your product number for your computer. I am linking an HP Support document below that will show you how to find your product number. As well, if you could indicate which operating system you are using. And whether your operating system is 32-bit or 64-bit as with this and the product number I can provide you with accurate information.
    How Do I Find My Model Number or Product Number?
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Please re-post with the requested information and I would be happy to provide you with assistance. Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • About Error Message - Reg.....

    Hi Gurus,
    How can i change the error message into warning message?
    How can we delete the Master Data from the database?
    Thanks in advance.
    Regards
    YuBi

    How can i change the error message into warning message?
            If you want to change that in program ,then change E001 to W001
            Message W001 with Text-001

  • REG:User facing the error message ...

    Hi ,
          The below given error message is faced by the user
    <b>Program/Func=Invalid Instance:DE1 path and Filename Error opening file</b>
    Can any one let me know what may the reason .....
    Regards,
    veera

    then the file u have created must be on ur local presentation server.
    when u r connecting thru Citrix, then it will refer to Remote Desktop which will be only one.
    so try to maitain the file on the Remote (citrix) desktop and try to execute ur program.
    It will work,.
    revert back if any issues,
    Reward if helpful.
    regards,
    Naveen

  • Reg: J1IV error message

    Hi Guru,
    while i am take the prinout by using the J1IV. The following error message appear for this i need to configur anything.
    Output V1 (application V1) is not defined in table T685B.
    kindly give me the valid information on this issue.
    Thanks
    Best Regards
    siva

    Hi Deivakaniraja R,
    i have verified the value in the NACE T: code but in that V1 and output Type JEXC not maintained.
    how to maintaine that. kindly give me the details to maintaine this information.
    thanks.
    Best Regards
    siva

  • Reg:Internal Popup Window:Error messages

    Hi All,
            I am using a Internal Popup Window, but the error messages of "Popup window" is shown in the "Parent Window" instead of showing in "Popup Window". please suggest me to get the Error messages in "Internal Popup Window"
    Thanks
    Nagaraju

    Hi Naga,
    Disable the parent iviews message area before calling the child(popup) window. Then you can get the message in the child(popup) window.
    According to documentation, oldest (parent) message area would be used if there are more than one windows (in a layout).
    see this thread also How to display messages in pop up windows?
    PradeeP

  • ITunes won't start up, no error message, appears in task manager

    Hi,
    I have been running this system since quite a while and haven't had problems with iTunes for a while. I updated to the recent version not to long ago and it worked then once or twice, I even bought a game for the iPod (Tetris)...
    Now iTunes doesn't start up anymore. I haven't installed anything new and I am virus free.
    I try to launch iTunes and but the UI will not appear. I can see that it's loaded (or stuck somewhere) as the application is in the processes tab in the task manager and doesn't disappear.
    Obviously I did the usual: curse a lot, removing everything incl. any traces of quicktime and itunes in the reg, 'application data' folders, the mysterious 'My Music' directory in my docs, reinstalling different versions of iTunes and quicktime, running hijack-this to see what processes I can't recognise, curse even more (**** MS monopoly) and reading a lot on the net and on this particular website.
    There are holes in my firewall to accomodate iTunes. I use Sophos anti-virus software (not becasue I chose too).
    Is there anything you could recommend?
    Reinstalling windows is really not an option here, as I use this computer for work too.
    I also use Linux on a seperate partition (Fedora 7), but I know that there were issues with iPod support on Linux and it once broke the whole **** database. Maybe Apple can one day release some software for Linux users? Afterall OS X is just a unix based OS anyways...
    Please help, I wasted so much time on this already

    Hi, dengar.
    Let's try to get an idea of what might be going on by running through b noir's "smack" for iTunes launch failures.
    Based on your original post, I'm going to bypass some of the preliminary questions and make the following assumptions - if any of these assumptions are wrong, post back and we'll follow a different path.
    Assumptions -
    1) There is no error message associated with your iTunes launch failure.
    2) QuickTime itself launches on your computer without any problems.
    3) When you reboot your computer and attempt to launch iTunes, iTunes.exe appears and remains in the Processes list.
    If those assumptions are all true, I'd refer you to this article in the Apple Knowledge Base.
    Message was edited by: The Mimico Kid

  • HT1926 reinstalled itunes after unistalling it due to error message during update. after it was completly unistalled still has the same error message: service "apple mobile device" (apple mobile device) failed to start, verify you have sufficient priviled

    I was prompted to update itunes this evening. I did and in the process, it came up with the following error message: Service "apple mobile device" (apple mobile device) failed to start. Verify you have sufficient priviledges to start system services. I unistalled itunes completly and reinstalled but am still getting the same error message. If I click "ignore" the program will finish downloading but will not launch due to "not being installed correctly". Please help, I use this program alot with my first grade classroom and they're expecting their listening center in the morning.

    Hey I finally got an older vesion of itunes to work!!! 10.7  x64 for windows 7
    After uninstalling all apple products even  quicktime
    I had to delete everything from (program files, and program  files x64, program data,)
    And all downloads from apple, and I went in to search deleted  other stuff from apple, and itunes
    But definently not my itunes library and Playlist
    Down loaded 10.7 x64 for windows 7, but checked (do not start  when done)
    Then I emptied my recycling bin and restarted my  PC
    I ran geek tech tool box same as reg cure pro, also PC Tools  registry cleaner, and CC Cleaner
    Then I emptied my recycling bin and restarted my  PC
    And wallah... It finally works, and I Love the older version  anyways.
    Easier to download and transfer  music!!!!!

Maybe you are looking for

  • How to open with technical flat calibration in 7.0

    In earlier versions, Camera Raw gave an option to set "Blacks" = "Brightness" = Contrast" = "0", and set a straight tone curve.  With color space set to Adobe RGB, this opens with EXACTLY a calibrated power of 2.2.  This gives a very flat looking ima

  • Java Plug-in Update on Oracle AS

    Hi All, On my test Oracle Application Server where I have Discoverer installed, I updated my configuration.xml file, but when I log into the Application Server Control as ias_admin and navigate to the Discoverer Plus (Application Server: disccoverer.

  • Starting virtual machine in VMware Fusion disables bluetooth

    When I connect to a virtual machine (winXP), I get an error message in OSX, and the bluetooth icon greys out. I can't get bluetooth back to work unless I reboot. Powering down the virtual machine doesn't help. Even the bluetooth icon in system prefer

  • ISQLplus data for local host

    For iSqlplus localhost no data exists for the tables.Should I go ahead and insert new values or is there any other solution for it?

  • I get an error when restoring my ipad to factory setting

    I get an error when restoring my ipad to factory setting