System Status loop - px6-300d

My px6-300d has a "Processing loop" that never ends, beside clock/version/bios information.
What could be happening?

Hello allmac
That is the share data usage graph.  This tends to take longer to complete the more data is stored on the unit.  I have also seen media server slow the process when enabled.  
LenovoEMC Contact Information is region specific. Please select the correct link then access the Contact Us at the top right:
US and Canada: https://lenovo-na-en.custhelp.com/
Latin America and Mexico: https://lenovo-la-es.custhelp.com/
EU: https://lenovo-eu-en.custhelp.com/
India/Asia Pacific: https://lenovo-ap-en.custhelp.com/
http://support.lenovoemc.com/

Similar Messages

  • Failed firmware upgrade on PX6-300D

    Upgraded my PX6-300D to 4.1.102.29716 and on reboot the LED status bar stops at 95% and the System Status Indicator is solid red and the Drive Activity Indicator is solid red.  What is the next step in troubleshooting this problem?

    Hello gnomikk,
    For a px6 that is getting hung in the boot sequence, I would try booting the NAS with no drives installed.
    If it boots, try adding the drives, one-by-one, giving about a miniute between each one, while the NAS is still powered up.
    If the NAS will not boot with the drives removed, you will need to contact your local support here:
    https://lenovo-eu-en.custhelp.com/app/answers/detail/a_id/14722

  • Change System Status of SO item dynamically based on Reason for Rejection

    Hi ppl,
    Our SAP user has raised a requirement as described below:
    In sales order (in creation mode (VA01) or change mode (VA02)), if at the item level, the reason for rejection is mentioned, then the system status for that item should be automatically set to Technically Complete SET (TECO); and if the user removes the reason for rejection for the item, then the system status Technically Complete should be RESET automatically.
    We are looking for any user-exit or BADI available which would be allow this dynamic change of system status based on the reason for rejection field. (No manual interaction for setting or resetting the system status).
    Technically, the functionality is based on the below fields:
    Reason for Rejection: VBAP-ABGRU
    System Status: JEST-STAT
    Please provide suitable inputs.
    Thanks,
    Dawood
    Edited by: Dawood.S.Ghasletwala on Jun 29, 2009 3:14 PM

    program: SAPMV45A
    User exit: USEREXIT_SAVE_DOCUMENT_PREPARE.
    loop at xvbap where updkz NE 'D'.
      if not xvbap-abgru is initital.
        "set your system state here.
      else.
       "reset your system state here.
      endif.
    endloop.
    hmmm you can as well try if you got all you need to know already in userexit: USEREXIT_CHECK_VBAP.
    Edited by: Florian Kemmer on Jun 29, 2009 11:53 AM

  • KO03- system status

    Hi Experts
    My report extracting all data in to text file and output to ALV. Internal order number is in Selection screen(Range).
    My requirement is,
    1) If Order number is in selection screen, check the 
         system status filel in KO03 t.code.
    2) if System status is TECO do not extract the data for this order.
    3)Display the message the message(Order is already closed) in selection screen.
    4) System status is not equal to TECO, extract data
    Pls help me

    Hi Kumar,
    follow the steps.
    1. Retrieve OBJNR of the document number from VBAP into I_VBAP table  selecting vbeln posnr objnr fields
    2. LOOP AT i_vbap INTO wa_vbap and call the FM 'STATUS_READ' and get stsma = v_qstsma TABLES status           = i_qstatus
        passing objnr   = wa_vbap-objnr
        Now select istat txt04 txt30 FROM  tj02t INTO TABLE i_tj02t
           FOR ALL ENTRIES IN i_qstatus
          WHERE istat EQ i_qstatus-stat
            AND spras = sy-langu.
    Allot points if this is usefull.

  • System status in plant maintenance

    Hi :
    I still have doubt in using  FM status_read and tables jest and tj02t.
    My requirement is to select work orders( auart), planned hrs( arbei), actual hrs( ismnw ) based on 'date range', 'work order type', func location ( tplnr ), 'abc indicator ( abckz).
    i have to list all work orders:
    for a particular planning plant say '1000' , systm status including CNF, TECO, CLSD, excluding PCNF , CRTD , DLFL and REL, I have to include all work orders except SM02 and CP01 and also exclude work orders scheduled outside query period .
    When the above is done, i need to sum planned work work hours scheduled for that week , divided by sum of planned work hrs.
    I am done with select statement part, how can i find system status or how to calculate system status .
    thx.
    Raghu

    once u pass required data to this FM , u will get all status of the PM order , from that status table u have to check weather it is closed or Technically Completed or Confirmed orders. So here  u have to looop status table with these conditions.
    sample code will be.
    loop at itab.
    read statustab with key order = itab-order
                                       stat  = 'CLSD'.
    if sy-subrc ne 0.
    check for TECO.
    if sy-subrc ne 0.
    check for CNF.
    else.
    here no need to consider other orders which are not in that given list.
    endif.
    endif.
    endif.
    endloop.
    Regards
    Peram

  • Linking the system status to user status.

    Dear all,
    In the customising we have the provision of creating user profile. My requirement is if the system status is having a certain value like ESTO - in the equipment master then this should automatically set the defined user staus and prevent user from modifing the record (equipment master) and when the system staus is changed as AVLB, then the user status should also change and permit user to modify the record.
    Experts help is expected.
    Can anyone suggest any method of adopting the same - is there any settings for this.
    Regards,
    M.M

    I was able to get the statuses in a table , and as theer are more than one entry fo each of teh WBS so I need to concatenate the systme statuses together and user statuses togerher and finally concatenate the user status and system staus togehter in one field .
    SO like fo system status I ahve 3 entreis , I need to concatenate them into one . But somehow when I loop and try concatenating them only the last entry is registeredd and similary for the user status too . Is there a= way I can concatenate so all teh three entries show in like a string
    Right now the system status are AVEC, CTRD, SYST in my internal table as three values , how do i concatenate them into one string?
    Thanks

  • Production Order System Status

    Hi Experts,
    What table is used to store the System Status of an Order?  Is it with CAUFV? 
    Scenario is i need to extract ACTIVE Production Orders with CRTD status.  DO i just select CRTD or do i need to consider other parameters as well, like deletion flag, teco etc?
    Thanks guys!

    Manoj,
    Give below code snippet to your aBAPER:
    Retrieve the status of the orders
    SELECT objnr stat
        FROM jest
        INTO TABLE i_jest
        FOR ALL ENTRIES IN i_objnr   "cONTAINS Prod Order Number
       WHERE objnr = i_objnr-objnr
         AND  stat =      I0001  
         AND inact = ' '.                 "Inactive flag
    Check if the order is currently in the status Cretaed
      LOOP AT i_jest.
        CALL FUNCTION 'STATUS_CHECK'
             EXPORTING
                  client            = sy-mandt
                  objnr             = i_jest-objnr
                  status            = i_jest-stat
             EXCEPTIONS
                  object_not_found  = 1
                  status_not_active = 2
                  OTHERS            = 3.
    If sy-subrc = 0.
    "Order in created status
    else
    "order not in created ststus
    endif.

  • Lock the BT field though system status

    Hello,
    we need to lock all the field in our contract(ZTA) all the time, even if the contract changes user status(E0002  --> E0003, E0004...). Is there any system status to avoid to modify the fields at header and item level? And even at the first status, Opened?(this is because the contract always going to be copy of the quotation, so none modifications)
    Each user status contents a transactional control, INPR, CONC, FINI... with different actions I0005, I0008... (checking BS33) but i don´t find the proper one. if there is any document about, it would be perfect.
    Thank you in advance.
    Luis Angel Fernández

    Hi Luis,
    In the Badi implementation proceed as follows :
    1. Do whatever check you want to carry out for the status. You can use the CRM_ORDER_READ function module to get the status of the transaction. Pass is_fieldcheck_com-ref_guid in a table to CRM_ORDER_READ to do so.
    2. After that loop on the table ct_input_field_names and do the following.
      LOOP AT ct_input_field_names INTO wa_input_field_name.
        wa_input_field_name-changeable = 'A'.    "Display Only
        MODIFY ct_input_field_names FROM wa_input_field_name INDEX sy-tabix
        TRANSPORTING changeable.
      ENDLOOP.
    <b>Reward points if it helps.</b>

  • Reg Update Order System Status

    Hi,
    My requirement is, while doing TECO (technical complete) of maintenance order I want to check for open reservation/requisition in maintenance order. and if we found any any open reservation/requisition then order status TECO will not update. maintenance order will remain in present status. any other update done in this order before TECO will save.
    Please suggest how I can acheive this.
    I tried to use uesr exit IWO0009 and BADI WORKORDER_UPDATE but not abe to update order system status in this point.
    Please suggest me any EXIT or BADI or Solution for this requirement.
    Regards,
    Atul

    Hi Atul,
    Following codes can be help u for Open PR before TECO.
    *&  Include           ZXWO1U03
    EXIT_SAPLCOIH_004
    DATA: BEGIN OF IT_EBAN OCCURS 0,
            BANFN LIKE EBAN-BANFN,
            BNFPO LIKE EBAN-BNFPO,
            EBELN LIKE EBAN-EBELN,
            LOEKZ LIKE EBAN-LOEKZ,
          END OF IT_EBAN.
    DATA: IT_AFKO LIKE AFKO.
    DATA: BEGIN OF IT_AFVC OCCURS 0,
             BANFN LIKE AFVC-BANFN,
          END OF IT_AFVC.
    DATA: X_AUFPL LIKE AFKO-AUFPL,
          X_BANFN LIKE AFVC-BANFN,
          STR TYPE STRING.
    SELECT SINGLE AUFPL
       FROM AFKO
         INTO X_AUFPL
           WHERE AUFNR = CAUFVD_IMP-AUFNR.
    IF SY-SUBRC = 0.
      SELECT SINGLE BANFN
         FROM AFVC
           INTO X_BANFN
             WHERE AUFPL = X_AUFPL
               AND STEUS = 'PM03'." Extenal Service Control Key"
      SELECT BANFN BNFPO EBELN LOEKZ
         FROM EBAN
           INTO TABLE IT_EBAN
             WHERE BANFN = X_BANFN.
    ENDIF.
    LOOP AT IT_EBAN.
      IF IT_EBAN-EBELN = '' AND IT_EBAN-LOEKZ = ''.
        CONCATENATE 'PR' IT_EBAN-BANFN 'is not converted to PO.TECO is disallowed' INTO STR SEPARATED BY SPACE.
        MESSAGE STR TYPE 'E'.
      ENDIF.
    ENDLOOP.

  • How to find objects with active System status-JEST

    Hi All,
    Is there any way in which I can find Production operations based on their active system status.
    The problem I'm facing is SAP stores system status for an order in JEST. And JEST contains many active system status for a PP Operation.
    I have to select all Operations which have status of say e.g. REL(released).
    If the select statement is as below
    select objnr stat
    into table t_jest
    from jest
    where stat = <Internal format of REL>
    and inact NE 'X'.
    Then this will also give those objects which are having REL plus any other higher status.
    Whereas what I want is only those objects which have their current status as REL and not which also as REL.
    The other way of doing this is get a all object and statuses and loop through records and filter out unwanted ones. But it will have serious impact on performance.
    Does anyone has some other solution to the above problem. Any function module or any other table which stores only the current active status.
    Any help would be of great help to me.
    Thanks.
    Message was edited by: Stephen Peter

    Hi Peter
    we have to these FMs to get the Status of Prod.Order.I have Developed one Reoprt which will show up order staus / stages
    like : col1 is orders which are in Open nothing but REL.So u have to put a Condition where jest-stat ='REL' only.
    OPEN-TECO  PCNF-TECO
            2          0
            9          5
            0          0
            2          0
            3          0
            4          3
            0          1
            0          0
            1          0
            2          0
           23          9
    CRS_SORDER_CREATE_UPLOAD_PROXY                                                               
    CRS_SORDER_STATUS_UPLOAD_PROXY                                                               
    MASS_PERFORM_STATUS_CHANGES                                                                  
    STATUS_READ                      Read Object Status (JSTO and JEST)                          
    STATUS_READ_MULTI                                       
    * Getting the Order Number and Obj.Number.
       select aufnr erdat werks objnr from aufk
                          into corresponding fields of table  otab
                                      where auart in ('PP01','PP02')
                                        and erdat gt s_budat-low
    *                                    prabhu on 24.5.5
                                        and werks in s_werks.
    * Getting the Obj.Number and Status Number
    data : w_stat like jtab-stat.
    *  loop at otab.
      if otab[] is not initial.
      select objnr stat from jest
                        into corresponding fields of  table jtab
                        for all entries in otab
                              where objnr = otab-objnr
                              and inact eq ''.
      endif.
    * Getting the Status Text for All The Orders
      loop at jtab.
      read table ttab with key istat = jtab-stat.
      if sy-subrc ne 0.
      select single  txt04 txt30 from tj02t
                           into (ttab-txt04,ttab-txt30)
                               where istat eq jtab-stat
                                 and spras eq 'EN'.
       if sy-subrc eq 0.
        ttab-istat = jtab-stat.
        append ttab.
        clear ttab.
        endif.
       endif.
      endloop.
    i think u got one Inputs.
    Regards
    Prabhu
    [email protected]

  • There is 1 drive with existing data on your LenovoEMC px6-300d.

    Hi,
    on the display of my px6-300d there is an error: "There is 1 drive with existing data on your LenovoEMC px6-300d".
    Firmware version is 4.0.8.23976.
    When I logon to web page of the device and click on the error message, I can see Storage Pool SP1 with capacity of 10.84TB of which 10.84TB is available. Drive 1 is "shaded", drives 2-6 are "A"
    However there are no volumes there...
    In the event log I can see following events (logon events removed):
    09/08/2014 7:40 pm  The device is starting up...
    09/08/2014 7:37 pm userid Restart requested.
    09/08/2014 7:33 pm  Storage verification completed.
    09/08/2014 8:43 am userid Storage Pool 'SP1' has been modified.
    09/08/2014 8:43 am userid Storage Pool 'SP1' has been added.
    09/08/2014 8:43 am userid Verifying the state of storage.
    09/08/2014 8:38 am  Data may be unavailable due to a failure.
    09/08/2014 8:38 am  Storage verification completed.
    09/08/2014 8:32 am  Verifying the state of storage.
    09/08/2014 8:32 am  The device is starting up...
    09/08/2014 8:29 am userid Restart requested.
    09/08/2014 6:49 am  Data may be unavailable due to a failure.
    09/08/2014 6:49 am  Storage verification completed.
    09/08/2014 6:46 am  Drive number 1 encountered a recoverable error.
    09/08/2014 6:42 am  Verifying the state of storage.
    09/08/2014 6:42 am  Your LenovoEMC px6-300d was shut down improperly, which can cause your most recent changes to be lost.
    09/08/2014 6:42 am  The device is starting up...
    09/07/2014 10:11 am  Data may be unavailable due to a failure.
    08/22/2014 7:54 am  Data is available, but a failure has been detected.
    08/13/2014 1:53 am  Storage verification completed.
    08/11/2014 9:15 pm  Verifying storage data protection.
    I have spoken to an admin who reported this issue today in the morning. He has told me that he had spotted the problem on 7:03 am when one of virtual machines with a drive on px6 failed. He was waiting and on 8:29 am he restarted the device and after restart he started storage verification. When it finished (7:33 pm) he again restarted the device. There are no new error events in the event log, however I cannot see any data on the device.
    When I click on drive 1 in Drive Management, I get a message "This drive contains existing data that must be overwritten before it can be used. Are you sure you want to overwrite the existing data?"
    Does it mean that before RAID rebuild px6 requires approval to delete the drive with recoverable error (as seen on6:46 am in event log) and rebuild RAID? Should I click YES? I hope I will not loose the data.
    Best regards,
    Marcel

    Hello vinaykumaar
    I recommend that you power down the unit and swap the affected hard disk to another drive bay to see if that prevents the unit from restarting.
    Then try allowing the unit to overwrite the specific drive.  On a px unit this would be done via the storage pool information overview under drive management.  On a ix unit you would go to Drive Management>Settings, check the "add disks to storage system..."  then click apply.  This will overwrite the disk marked by the green stripes.
    If the above options do not help I recommend that you contact Lenovo Support in your region for further assistance.
    LenovoEMC Contact Information is region specific. Please select the correct link then access the Contact Us at the top right:
    US and Canada: https://lenovo-na-en.custhelp.com/
    Latin America and Mexico: https://lenovo-la-es.custhelp.com/
    EU: https://lenovo-eu-en.custhelp.com/
    India/Asia Pacific: https://lenovo-ap-en.custhelp.com/
    http://support.lenovoemc.com/

  • PX6-300D storage pool

    Hello,
    I have px6-300D nas with 3TB X 6 drives. I configured it with Raid 5. Few Days back it was showing a message The amount of free space on your 'Shares' volume is below 5% of capacity.  and asked to overwrite Drive 6. So i ejected it after shutdown i  put it back and started.It get started rebuilding than. At 43% it got stuck and showing red indication, It was also messaging that your storage pool failed. in web access it was messaging your storage pool has failed and above message also. I tried restart and all but nothing has worked. Then after i contacted customer care they told that your few drives (3 or 4) has failed. they asked for dump file. as i wasold firmware the dump file was not getting generated. so i upgraded firmware as per instuction.  they conculed that your few  hard drive has been failed and go with some data recovery solution provide.  I really dont understand how would it corruprt my storage pool without any notice or mesage. If its NAS with raid protection my data must be protected. I really need my data back.
    Till today i am receiving messaged like
    The amount of free space on your 'Shares' volume is below 5% of capacity.
    Data protection is being reconstructed on Storage Pool gstv. Reconstruction is 8% complete.
    Reconstucting restarts at 45% starts with 0.
    I wonder if reconstrcion is happeing how would my drives are failure.
    Please help me ......
    Solved!
    Go to Solution.

    Thanks for your reply Westly,
    I wondered about data capacity of Lenovo px6-300D. I observed that it was showing that "The amount of free space on your 'Shares' volume is below 5% of capacity".  After that it was getting hang few times. and fianlly raid got corrpted or HDD got faild. I have never faced any problem like this before In raid. I want to ask that Do i have a FIle systems can be storaged on another system so that I can recover if its get failed again. I mean I used to work with tyrone server with Fiber channel. It was getting mounted on windows system and shared thru SAN licences software. Is it possible that way? So i Can mount Lenovo EMC PX-6 300D volumes on a system and share it thru Windows PC. So that my file system and folder system would be safer. So that I will not have to go for costy data recovery service. Even I can try a free recovery softwares.
    Please reply,
    Thanks,

  • PX6-300D 2 brooking HDD RAID6 and al data lost?????

    Dear,
    I have a PX6-300D 16Tb in Riad 6  + configuration.
    HDD 1 and 6 are brooken so i replaced them with 2 new hdd (same type and brand)
    But all data is lost.
    How can we retore this and recup all data
    tanks for your help  Kristof

    You may want to run disk part and clean the disk a few more times. Sometimes it will take multiple runs. Then replace it and gracefully restart through the UI. Let it sit at least a few hours and see what the status is.

  • StorCenter px6-300d SNMP Community String

    Dear Reader,
    We have a NAS (StorCenter px6-300d) and we want to monitor it with our monitoring system.
    On the Iomega website (http://iomega.com/resources/ui/px6-300d-313/help/help.html) i've found the configuration steps (see below) and configured our NAS.
    Configuring SNMP settings
    To enable SNMP, click the switch on.
    Enter a unique username and password to define the community.
    Confirm your password.
    Enter the IP address of the host in the Trap Receivers text box. To grant access to multiple receivers, list all of them in the text box, separating each entry with a space.
    Click Apply to save your settings
    In our monitoring system we get the following msg: SNMP agent down - no response received. I think this is because of the (wrong) community string. In our monitoring system, under configuration tab, I tried 'public', 'username', 'password' etc in the community string field but it is not working.
    I hope someone can help me with this... what is the community string? If i'm doing something else wrong then...
    Thanks in advance.
    With kind regards,
    From the Netherlands
    Solved!
    Go to Solution.

    Hi yunuz,
    The username and password that you set on the NAS device needs to match on the SNMP server that you are trying to connect to. So use the same username and password for the server. Do you know what SNMP version your client is using?
    What is an “SNMP Community String”?
    The “SNMP Community string” is like a user id or password that allows access to a router's or other device's statistics. PRTG sends the community string along with all SNMP requests. If the community string is correct, the device responds with the requested information. If the community string is incorrect, the device simply discards the request and does not respond.
    Note: SNMP Community strings are used only by devices which support SNMPv1 and SNMPv2c protocol. SNMPv3 uses username/password authentication, along with an encryption key.
    By convention, most SNMPv1-v2c equipment ships from the factory with a read-only community string set to "public". It is standard practice for network managers to change all the community strings to customized  values in the device setup.
    Source: http://www.paessler.com/manuals/prtg_traffic_grapher/whatisansnmpcommunitystring
    Have questions and need answers?
    Search the database for answers to FAQ's, software/driver downloads, tutorials, news, features and more!
    LenovoEMC Support & Downloads
    LenovoEMC North America Support Contact Page

  • Px6-300d vs APC Back-UPS BR 1500

    My px6-300d is not able to recognize an APC Back-UPS BR 1500 (USB).
    Any incompatibility? Any procedure to find the problem?
    Thanx.
    Solved!
    Go to Solution.

    Problem is not Nobreak, but StorCenter APCUPSD driver out of date.
    APCUPSD in StorCenter has no update: apcupsd 3.14.10 (13 September 2011) redhat
    apcupsd-3.14.12 is a maintenance release that addresses a number of small issues in the previous version. It also contains a workaround for an UPS firmware issue that causes killpower to execute repeatedly in a loop, resulting in the UPS continually cycling power. The precise list of affected models is unknown, but the Back-UPS BR models are known to be afflicted and likely many other Back-UPS USB models are as well. If you are utilizing apcupsd with a Back-UPS over a USB interface, it is highly recommended to upgrade to this release.
    This entry was posted in Releases on March 29, 2014.

Maybe you are looking for

  • Wireless Communication Problems

    Hi Everyone! I have to mention a problem I face with my brand new OfficeJet AllinOne 8500 wireless. First of all, I use a laptop HP Pavilion and I have a wirelss network at home with other 2 PCs connected that run XP. Installing the printer software

  • Inserting SWF in one of my divs is causing problems with css layout

    I am testing code for a new layout including an swf piece in the center of my page and I can't understand what the issue is. http://www.ltcproduction.com/ltcproditems.html I am loosing a lot of my formatting which should look exactly like http://www.

  • Plugin events not getting triggered

    Hello, APEX version 4.1.0.00.32 and 4.2.3.00.08 Browser: latest version of Chrome browser I'm trying to include plugin events for the Select2 APEX plugin but facing one rather annoying issue; the dynamic actions based on the plugin events are not get

  • Loop in Compressor

    Is there a way to program a video to loop in Compressor and not in Quicktime?  I tried the Compressor help manual and couldn't find anything. Just a query. Thanks in advanced

  • How to uninstall Reporting Services on SQL 2008 R2?

    Hi folks,   Does anyone know how to uninstall (and intall) Reporting Services without uninstalling SQL server.   I have a reporting Services Instance that has gone wrong (Virtual Directories do not exist in IIS) and the RS Configuration tool will not