Get battery expiration date with sscs on CLI

Hello,
At the moment I search for a command to view more information as
sscs list -d <Device-Name> -t battery fru provides.I search something like show battery-status from sccli.
I found this document about battery status and sscs:
http://docs.sun.com/source/816-7326-16/ch04_battery.html#53714
But there is no information about the command for cli to view the battery expiration date.
Maybe somebody has a few hints or can point my to the right document.
Thanks in advance,
Silvio

If you are managing your storage array with the StorageTek Common Array Manager you can look up the battery age in there.
1. Go to Storage Systems – 6130a – Troubleshooting – FRUs.
2. Click Battery.
3. Click on the relevant tray controller battery, and you'll see details "Life Remaining" and "Element Status" (Optimal, Near Expiration, or Expired) and "Battery Age".

Similar Messages

  • Get Password Expiration Date of Group members in Active Directory

    hi,
    How can I get password Expiration date of Group members in Active Directory – please advise me
    Fasil CV

    Or DSQUERY Commands.
    dsget group "CN=Group1,DC=myinfralab,DC=com" -members | dsget user - -acctexpires
    Santhosh Sivarajan | Houston, TX | www.sivarajan.com
    ITIL,MCITP,MCTS,MCSE (W2K3/W2K/NT4),MCSA(W2K3/W2K/MSG),Network+,CCNA
    Windows Server 2012 Book - Migrating from 2008 to Windows Server 2012
    Blogs: Blogs
    Twitter: Twitter
    LinkedIn: LinkedIn
    Facebook: Facebook
    Microsoft Virtual Academy:
    Microsoft Virtual Academy
    This posting is provided AS IS with no warranties, and confers no rights.

  • Get the expiration date in the mib

    Hello,
    I'm looking for a way to get the expiration date of my ironport device via snmp But I couldn't find it in the MIB posted on the website.
    Could you please tell me where (and if) I can find this information?!
    Thank you

    Hello Stephane,
    the Cisco IronPortdevices itself has no expiry date, as you have purchased the hardware permanently. However, if you look for expiry dates of feature keys, there are a number of entries providing this info:
    keyExpirationTable
    keyExpirationEntry
    keyExpirationIndex
    keySecondsUntilExpire
    Hope that helps,
    Andreas

  • How to get mailbox expiration date using cmdlets 2007 and 2010?

    i wants to know which cmdlets used to find the expiration date of mailbox in exchange server 2007 and exchange server 2010. I have a cmdlets that gives mailbox expiration date for exchange server 2013. Is there any equivalent cmdltes available for exchange
    server 2007 and exchange server 2010. cmdlets to get expiration date of mailbox for exchange server 2013 is as follow
    Get-ADUser -Filter * –Properties Name, EmailAddress, AccountExpirationDate, GivenName | select Name, EmailAddress, AccountExpirationDate, GivenName | where {$_. AccountExpirationDate –ne $null}

    Hi Belinda
    Thanks for your valuable replies
    Please mention PS command to get the
    expiration date for AD accounts created for Exchange 2010 and Exchange 2007.
    Thanks a lot

  • Get Table Meta Data with RFC

    Hi,
    I wonder if there is a way to get the meta data from a table or structure using RFCs.
    More detailed:
    I am using RFCs to read data from tables and structures. It would be nice to have a way to also get the table definitions, like column headers, column types and contraints, etc. using RFC.
    Does somebody know how to do that? (My test system is an IDES)
    Thanks in advance
    Stefan

    It's me again,
    Today, I had a closer look on what you gave me yesterday. I think the problem is that I asked for the wrong information.
    What I am actually looking for isn't meta information for tables, but information about the "Associated Type" that is associated with every import, export, or table parameter of a function module.
    If I double-click on one of those types in transaction se37 after choosing a function module, I get a wonderful overview about the structure including 'component', 'component type', 'data type', 'length', etc.
    Is there an RFC I can call that gives me exactly this information?
    Best,
    Stefan

  • How can we get current time date with resultset?

    Dear All,
    I have to insert current time date in the table.So,i need to get the current time and date with result set.So,I will first get the time date and then insert it into the table.
    I know how can we get current time and date without resultset.i have created this function its working.But now i want to use this.mean using resultset i want to put in the table.
    How can i do this?
    public static String DATE_FORMAT_NOW = "yyyy-MM-dd HH:mm:ss";
    public static String now() {
    Calendar cal = Calendar.getInstance();
    SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT_NOW);
    return sdf.format(cal.getTime());
    }

    yuck. Why not simply set a "new java.sql.Date()" to the SQL parameter in question?

  • Get the Expiration Date of Certification of Authority CRL

    Hello Evrybody
    I want to monitor the CRL (Certificate Revocation List) and only the following options:
    Next CRL Publish
    Next CRL Update
    My Idea was to get this two Attributes with powershell, and write an event into the Application Log.
    I found a lot of things but nothing was very helpful, now i hope somebody
    did this before..
    Thanks

    Paul, this project isn't the best, because it relies on PSCX extensions (not a big deal) and on MONO (mono installation might not be a good idea at all).
    I have a basic PowerShell implementation of CRL (like native X509Certificate2 object in .NET) object which relies on native unmanaged functions from crypt32.dll:
    http://www.sysadmins.lv/PermaLink,guid,4ffce88a-e3f0-4dac-8e3f-4af7ba53f4f3.aspx. Although, the blog post is in russian, examples there are self-explanatory.
    just copy/paste the function (or dot-source) to PowerShell session and use: Get-CRL -Path path\crlfile.crl
    My weblog: en-us.sysadmins.lv
    PowerShell PKI Module: pspki.codeplex.com
    PowerShell Cmdlet Help Editor pscmdlethelpeditor.codeplex.com
    Check out new:
    SSL Certificate Verifier
    Check out new:
    PowerShell FCIV tool.

  • How to get & use xml data with jstl libraries? (URGENT PLZ)

    I am using jstl to get and use xml data
    I needs to perform operations on the parsed xml document with other libraries of jstl. How can i do that.
    I used Dom variable to parse my document as:
    <x:parse varDom="test"> <c:import url="project.xml"/> </x:parse>
    where my project.xml is:
    <?xml version="1.0" encoding="iso-8859-1"?>
    <project>      <projectName>myProject</projectName> </project>
    I can dislay this value in html by
    <x:out select="$test/project/projectName"/>
    But I need a string value sotred in variable such as <c:set var="pname" value="???">
    HOW CAN I SET THIS VALUE IN CORE VARIABLE THAT IS, USING <c:set...> SO THAT IT CAN BE USED ANYWHERE IN JSP PAGE TO CONCATE RETURNED STRING IN OTHER STRING VARIABLES DEFINED BY CORE LIB?
    Jessy
    Message was edited by:
    jessy
    Message was edited by:
    jessy

    I believe that <c:set> should do that but i am facing problem in it. Look into this jsp scriptlet:
    1-<x:parse varDom="test"> <c:import url="project.xml"/> </x:parse>
    2-<x:set var="ds" select="$test/project/projectName"/>
    3-<x:out select="$ds"/> <br>
    4-<c:set var="tt" value="${ds}" />
    5-<c:out value="${tt}" />
    In line 3 variable ds returns: myProject
    In line 5 variable tt returns: [[projectName: null]]
    perhaps on line 4 ds is storing some array to tt and i am not calling correct array element. I tried many options but still could not find solution. Plz Plz do something urgent for me. Thanks
    Jessy
    Message was edited by:
    jessy

  • Problem getting the Table Data with the selection listener

    Hi All,
    I am working on a tree and table components. I wrote a logic in the backing bean in such a way that when I expand a node the child nodes for the tree are getting added dynamically and also getting the data in the table for the node expanded in the tree using the same Toplink Query . I added the selection listener for the table and when I am selecting a row in the table I am getting the Null Pointer Exception as the RowKeySet Value for the row selected is coming null.
    Can any one please help me out with this problem
    I will be very thankful
    Regards,
    Madhavi.

    Hi All,
    I am working on a tree and table components. I wrote a logic in the backing bean in such a way that when I expand a node the child nodes for the tree are getting added dynamically and also getting the data in the table for the node expanded in the tree using the same Toplink Query . I added the selection listener for the table and when I am selecting a row in the table I am getting the Null Pointer Exception as the RowKeySet Value for the row selected is coming null.
    Can any one please help me out with this problem
    I will be very thankful
    Regards,
    Madhavi.

  • How to get sales order data with GL tables

    I want to get sales order details from my GL query. I need to get item number, quantity and customer PO from there. Here is my query from GL.
    SELECT PH.po_header_id,
      I.GL_DATE,
      R.je_header_id JE_HEADER_ID,
      R.je_line_num JE_LINE_NUM,
      aeh.org_id ORG_ID ,
      I.invoice_num TRX_NUMBER_C ,
      ael.description COMMENTS ,
      ael.ACCOUNTED_CR ACCOUNTED_CR,
      ael.ACCOUNTED_DR ACCOUNTED_DR,
      ael.code_combination_id CODE_COMBINATION_ID,
      ael.currency_code CURRENCY_CODE,
      ael.entered_cr ENTERED_CR,
      ael.entered_dr ENTERED_DR,
      PH.segment1 PO_ORDER_NUMBER,
      GL.segment1 company,
      GL.segment2,
      GL.segment3,
      GL.segment4,
      GL.segment5 account
      ,ael.description
      ,PD.quantity_ordered, PD.amount_billed, D.quantity_invoiced,  D.unit_price
    FROM gl_import_references R, --ok
      gl_je_categories jc,
      ap_ae_lines_all AEL, --ok
      ap_ae_headers_all AEH, --ok
      ap_invoice_distributions_all D,
      ap_invoices_all I,
      ap_accounting_events_all AE,
      po_releases_all PR,
      po_headers_all PH,
      po_distributions_all PD,
      po_vendor_sites_all VS,
      gl_code_combinations GL
    WHERE 1=1
    AND jc.je_category_name       = aeh.ae_category
    AND PR.po_release_id(+)       = PD.po_release_id
    AND PH.po_header_id(+)        = PD.po_header_id
    AND PD.po_distribution_id(+)  = D.po_distribution_id
    AND ael.third_party_sub_id    = VS.vendor_site_id
    AND AE.accounting_event_id    = AEH.accounting_event_id
    AND I.invoice_id              = AE.source_id
    AND AE.source_table           = 'AP_INVOICES'
    AND AEH.ae_header_id          = AEL.ae_header_id
    AND DECODE(ael.source_table,'AP_INVOICE_DISTRIBUTIONS', AEL.source_id,NULL) = D.invoice_distribution_id(+)
    AND AEL.gl_sl_link_id         = R.gl_sl_link_id
    and ael.code_combination_id = GL.code_combination_id

    Then your query is completely wrong.
    Your query is looking at Purchase Order tables.
    If you want sales order data, you should be looking at OE tables (such as OE_ORDER_HEADERS_ALL, OE_ORDER_LINES_ALL etc.)
    Sandeep Gandhi

  • Getting Started Sharing Data with SAP?

    Hi Folks, as will be apparent, I'm a complete newbie with SAP.
    Long and short of it is this: I have an App that generates project plans for maintenance systems, costs and budgets them, and reports 'currently' as a stand alone package.
    A number of Clients who use the package already have SAP handling some of these aspect, and therefore would like some degree of integration. Primarily for our package to pass maintenance dates, costs and other performance data to SAP, and update work-scope progress etc. It would be useful if we could have two way linkage though to.
    My view is that we should be able simply to access the relevant columns in a SAP managed table(s), but I may be being very simplistic and naive?
    We use Java - developed with Servoy RAD, and access JDBC Dbs only.
    Q: Is there a Java Bean available that opens some degree of data sharing to SAP?
    Q: Where should I begin looking for info on how to do this?
    Q: Is it likely that we need a SAP Pro to develop this integration.
    Appreciate any feedback or guidance on where to look next!

    Note, that this forum is dedicated to all other development-related questions which are not directly addressed by other forums. This includes Business Objects SDKs, products, or technologies which do not fall under BusinessObjects Enterprise, BusinessObjects Edge, Crystal Reports Server, or Crystal Reports (for example Desktop Intelligence SDK, Universe Designer SDK, Portal Integration Kits, Java User Function Libraries, and other third party technologies or development languages).
    I don't believe your query addresses any of the above products thus you may want to pose your query to one of the SAP product forums.
    Ludek

  • How to get expiration date of a voucher

    Hi All
    Can anyone please tell me where can I get the expiration date of a voucher?
    Thanks

    If you have a voucher for a Java, Oracle Solaris (Cluster), MySQL, NetBeans or OpenOffice.org voucher, you should contact Prometric www.prometric.com/oracle to find the expiration date for those vouchers.
    If you have a voucher for any Oracle exams (excluding those above), you should contact Pearson VUE www.pearsonvue.com/oracle to find the expiration date for those vouchers.
    Regards,
    Brandye Barrington
    Certification Forum Moderator

  • Can you please help to understand how the firefox decides on the Expires date for a cached javascript file ( my server did not set any Expire header, but firebox set it down).

    # Question
    Can you please help to understand how the firefox decides on the Expires date for a cached javascript file ( my server did not set any Expire header, but firebox set it down). I tried to understand but different javascript file gets different Expires date value when it is being cached. Please help me as I tried lot and could not get proper answer for this. Thanks in Advance.

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • How to get the finished date of production order

    hi guys
    now i want to get the finished date of production date.  when i search in the table afko , i found the field GLTRI is '0000.00.00'.
    BUT IN the production order display view , the confirm date is '2007.1.1'. so how can i get the confirm date with the production order number? thanks.

    For costing report, you have to read the following tables: based on material Qty/value/ Machine rate and machine posting date , machine rate ( T-code kp26)  and also types of material Raw, finished and semi finished ..
    AFRU ,AFPO,AFKO,AFVV,AFVC,CAUFV FOR PRODUCTION ORDER.
    For material calculation MARA, MSEG and MKPF as well as MAKT...
    Hope this’ll help you .
    Thanks

  • How to include print date with time on SkillBuilders Schedule Plug In?

    Hi,
    Do you have an idea how to include and get the print date with time on the SkillBuilders Plug In? It shows me the date only, time not included. Have tried to put "HH24:MI", "HH24MI" or Tochar(HH24:MI)? No result??
    select p.fullname, sbip_schedule.start_date(e.event_schedule) start_date
    , sbip_schedule.end_date(e.event_schedule) end_date
    , sbip_schedule.duration_seconds(e.event_schedule) duration_seconds
    , sbip_schedule.calendar_summary(e.event_schedule) calendar_summary
    from app_events e
    Thanks!

    I forget to clarify I am looking for the answer is how to get the print of date with time, Start date with time and End Date with time.

Maybe you are looking for

  • Special Ledger Field Movement

    Hi,       We had Local ledger for one of our company codes. And we are using BW for generating reports for local legal reporting. We need to add new fields to our Actual line item table, and these fields are not available in sender tables.           

  • What's the safest way to reload system software

    What's the safest method to reload system software on an intel iMac? My wife's iMac has been behaving erratically.  I have run hardware and virus scans and found no issues. Virus software is Saphos and up to date. Problems began after a brief (5 seco

  • Suuplying plant / vendor for STO

    Hi guys, we are using SPED output type for creating Inbound delivery when PGI the outbound delivery druing STO process. The creation of Inbound delivery failed because the vendor (supplying plant) is not copied accross to the inbound delivery(this is

  • IWeb import query

    Hi all, I have a site that is live and visible on the 'net that was set up with iWeb. All good and fine. It's components are all present in iDisk, however I now can't find the pages when I open up iWeb on my iMac. The only change that was made recent

  • ICloud duplicates in calendars and contacts

    When I first synced iCloud with my pc and ipad2, all of my calendar entries were duplicated.  I just got an iphone4s.  I've already synced it with my outlook if I use iCloud is it going to duplicate everything again?  And if so, is there a way of pre