How to check my product's warranty?

I've some Cisco equipment in my network, and i have there serial nubers, i want to check the waranty status of these devices, how i can check the waranty of Cisco products like ASA, ISR routers? i want to know if they are still under waranty or it's no more under waranty.

Here's the fastest way:
1.  Compile a list of your appliance's serial number into an email;
2.  Include your name and your CCO username (no need for password);
3.  Email the list to [email protected]
Because this is an email, the first stop will be the Cisco Entitlements team.  They will individually go through your s/n one-by-one to determine if you are covered.

Similar Messages

  • How To Check Oracle Product Version (Ora 11g)

    Hello!
    I want to check my Oracle 11g product version (Standard or Enterprice, etc...).
    I use this query:
    select * from product_component_version
    Result:
    NLSRTL      11.2.0.1.0     Production
    Oracle Database 11g      11.2.0.1.0     64bit Production
    PL/SQL      11.2.0.1.0     Production
    TNS for 64-bit Windows:      11.2.0.1.0     Production
    How to check product version? (Standard or Enterprice, etc...)

    Try
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE 10.2.0.1.0 Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    SQL>
    Marcello

  • How to check the Production order exits

    Hi Experts
    Modification to processing of Command Orders & Tickets
    We require a modification to the processing being performed on sales data originating from the Command Concrete system and potentially from other systems yet to come online (e.g. Pinkenba Cement plant).
    The Sap process involved is ZINT_INBOUND_POLLING and within that, ZINT_CSTPORD_ROUTINES.
    The problem
    Currently there is an assumption that every sales order (and its deliveries) will include a product which is made to order, i.e. for which a production order will be required.
    In ZINT_CSTPORD_ROUTINES, a check is made to identify the production order linked to the sales order. If there is no such production order (usually because of the customeru2019s credit status) then processing of the ticket is terminated.
    This assumption would fall down if an order was to be raised (in Command) on which there is no concrete material. For example, if we sold a bag of pigment or a screed to a customer. In this case the item would be sold from stock and there would be no need for a production order.
    The solution
    In the routine which checks for the existence of a production order, modify the code as follows:
    Inspect each item on the sales order
    If (and only if) there is at least one item with a category of u201CZTACu201D then check for a production order, otherwise process the order in the usual manner.
    ----  ZINT_CSTPORD_ROUTINES -
    *&      Form  process_inbound_data
          Create prod. orders from ticket data extracted from the COMMAND
          system. Note that large portions of the code in this routine
          have been copied from the retired ZPPU_COMMAND_PRODUCTION
          interface program. This was done (1) because the old code works
          and (2) to save development time.
         -->T_ZINT_IDATA  Internal table of interface data
         -->T_ZINT_PARAM  Internal table of interface parameters
         -->T_ZINT_MSLOG  Internal table of messages
         -->P_ZINT_ID     Interface ID
         -->P_ZINT_TY     Inteface type
         -->P_ZINT_IS     IDOC group for interface
         -->P_ZINT_DL     Flag: delete IDOC group when complete
         -->P_ZINT_AL     Flag: run in standalone mode
         -->P_ZINT_NW     Flag: do not log warning messages
         -->P_ZINT_SQ     Interface sequence number
         <--P_ZINT_RC     Return code (<>0=>error)
    form process_inbound_data  tables   t_zint_idata structure zint_idata
                                        t_zint_param structure zint_param
                                        t_zint_mslog structure zint_mslog
                               using    p_zint_id    type      zint_id
                                        p_zint_ty    type      zint_ty
                                        p_zint_is    type      zint_is
                                        p_zint_dl    type      zint_dl
                                        p_zint_al    type      zint_al
                                        p_zint_nw    type      zint_nw
                                        p_zint_sq    type      zint_sq
                               changing p_zint_rc    type      zint_rc.
    program is continuing .............
    I WANT TO WRITE A CODING HERE **********************
    CHECK IF PRODUCTION ORDER REQUIRED
              IF NOT THEN GO TO PERFORM UPDATE DATA
      if production order required then check
                    for each item on sales order item list
                          with item category = 'ZTAC' then
                                     return true
                                next
                                  end function
        if there is no production code
               these has to be check from VBAP TABLE field VBELN and PSTYV (ZTAC,ZTAN Etc)
      select * from Vbap WHERE VBELN = '00000269951' and VBAP.PSTYV = 'ZTAC','ZTAN' Etc
    No production order?
        elseif lva_prodord is initial.
          clear v_messg.
          call function 'CONVERSION_EXIT_ALPHA_OUTPUT'
            exporting
              input  = lva_filemat
            importing
              output = lva_filemat.
        No production order found - log a warning message.
          concatenate 'Production Order not be found for'
                      'Command order' lva_cmdord
                      'Material'      lva_filemat
                      'Customer'      lwa_02-customer
            into v_messg separated by space.
          perform write_log_entry
            tables t_zint_mslog
            using  'E' 'ZINT_CSTPORD_ROUTINES'
                       'FIND_SAP_PRODORD'
                         v_messg
                         p_zint_nw
                         lwa_01-ticketnumber.                " RJS
          continue.
        endif.
    Production Order WAS found... Continue creating IDOCS
        lwa_hdrlevel-postg_date = lwa_01-ticketdate.
    Obtain the storage location parameter value.
        read table t_zint_param with key zint_fn = 'LGORT'.
        if sy-subrc ne c_noerr.
          perform write_log_entry
            tables t_zint_mslog
            using  'E' 'ZINT_CSTPORD_ROUTINES'
                       'PROCESS_INBOUND_DATA'
                       'Parameter LGORT is missing from ZINT_PARAM'
                       p_zint_nw
                       lwa_01-ticketnumber.                " RJS
          exit.
        endif.
        loop at l_it_05 into lwa_05
          where ticketnumber = lwa_01-ticketnumber.
          clear lwa_gm_item_create.
          lva_filemat = lwa_05-material.
          if lva_filemat eq lva_prodmat.
            concatenate 'Command ticket-' lwa_05-ticketnumber
              into lwa_hdrlevel-conf_text.
            lwa_hdrlevel-conf_quan_unit = lwa_05-unitofmeasure.
            lwa_hdrlevel-yield          = lwa_05-quantity.
    check whether the confirmed value + current delivery value is equal *
    the production order qty. If the production order value is less
    than the total delivered value, set final conf indicator  and clear
    reservations
            lva_wemng = lva_wemng + lwa_05-quantity.
            if lva_wemng < lva_psmng.
              lwa_hdrlevel-clear_res      = c_false.
              lwa_hdrlevel-fin_conf       = ' '.
            else.
              lwa_hdrlevel-clear_res      = c_true.
              lwa_hdrlevel-fin_conf       = 'X'.
            endif.
            move: 'Z1BP_PP_HDRLEVEL' to t_idoc_data-segnam,
                  lwa_hdrlevel       to t_idoc_data-sdata.
            append t_idoc_data.
            clear lva_formmat.
            lva_formmat                   = lwa_05-material.
            lwa_gm_item_create-material   = lva_formmat.
            lwa_gm_item_create-plant      = lwa_03-plant.
            lwa_gm_item_create-ref_date   = lwa_01-ticketdate.
            lwa_gm_item_create-prod_date  = lwa_01-ticketdate.
            lwa_gm_item_create-move_type  = '101'.
            lwa_gm_item_create-spec_stock = 'E'.
            lwa_gm_item_create-sales_ord  = lva_saleord.
            lwa_gm_item_create-entry_qnt  = lwa_05-quantity.
            lwa_gm_item_create-entry_uom  = lwa_05-unitofmeasure.
            lwa_gm_item_create-orderid    = lva_prodord.
            lwa_gm_item_create-move_mat   = lva_formmat.
            lwa_gm_item_create-move_plant = lwa_03-plant.
            lwa_gm_item_create-mvt_ind    = 'F'.
            clear t_idoc_data.
            move: 'E1BP2017_GM_ITEM_CREATE' to t_idoc_data-segnam,
                  lwa_gm_item_create        to t_idoc_data-sdata.
            append t_idoc_data.
          else.
            clear: lva_loggr,
                   lva_formmat.
            lva_formmat = lwa_05-material.
            select single loggr into lva_loggr from marc
              where matnr = lva_formmat
              and   werks = lwa_03-plant.
            if sy-subrc ne 0.
              clear v_messg.
              No logistics handling group - log a warning message.
              concatenate 'No logistics handling group for material'
                           lva_formmat
                          'in plant'
                           lwa_03-plant
                into v_messg separated by space.
              perform write_log_entry
                tables t_ldata
                using 'W' 'ZINT_CSTPORD_ROUTINES'
                          'PROCESS_INBOUND_DATA'
                          v_messg
                          p_zint_nw
                          lwa_01-ticketnumber.                " RJS
              clear lva_loggr.
            endif.
            if lwa_03-satsur eq 'T'.
              lwa_e1edl21-lprio = 30.
            else.
              lwa_e1edl21-lprio = 20.
            endif.
          else.
            if lwa_03-satsur eq 'T'.
              lwa_e1edl21-lprio = 10.
            else.
              lwa_e1edl21-lprio = '  '.
            endif.
          endif.
          lwa_e1edl21-berot = lwa_04-driver.
          move: 'E1EDL21'   to t_idoc_data-segnam,
                lwa_e1edl21 to t_idoc_data-sdata.
          append t_idoc_data.
          lwa_e1edl55-qualf = '001'.
          lwa_e1edl55-refnr = lva_saleord.
          move: 'E1EDL55'   to t_idoc_data-segnam,
                lwa_e1edl55 to t_idoc_data-sdata.
          append t_idoc_data.
    Loop at materials - create delivery entry for each
          loop at l_it_05 into lwa_05
            where ticketnumber = lwa_01-ticketnumber.
            clear t_idoc_data.
            lwa_e1edl24-matnr = lwa_05-material.
            lwa_e1edl24-werks = lwa_03-plant.
            lwa_e1edl24-vfdat = lwa_01-ticketdate.
            lwa_e1edl24-lfimg = lwa_05-quantity.
            lwa_e1edl24-vrkme = lwa_05-unitofmeasure.
            lwa_e1edl24-lgort = t_zint_param-zint_fv.
            clear lva_loggr.
            lva_formmat = lwa_05-material.
            clear lva_loggr.
            select single loggr into lva_loggr from marc
              where matnr = lva_formmat
              and   werks = lwa_03-plant.
            if sy-subrc ne 0.
            No logistics handling group - log a warning message.
              concatenate 'No logistics handling group for material'
                           lva_formmat
                          'in plant'
                           lwa_03-plant
                into v_messg separated by space.
              perform write_log_entry
                tables t_ldata
                using 'W' 'ZINT_CSTPORD_ROUTINES'
                          'PROCESS_INBOUND_DATA'
                          v_messg
                          p_zint_nw
                          lwa_01-ticketnumber.                " RJS
              lva_loggr = 'BBIN'.
            endif.
            if lva_loggr is initial.
              move: 'E1EDL24'   to t_idoc_data-segnam,
                    lwa_e1edl24 to t_idoc_data-sdata.
              append t_idoc_data.
            endif.
          endloop.
          clear: lva_xabln,
                 lva_vbeln,
                 l_vbfa.
    Matching ticket against a Delivery?
          select single xabln vbeln into (lva_xabln,lva_vbeln) from likp
              where xabln = lwa_01-ticketnumber.
          if sy-subrc = 0.
    If found, does this delivery match the sales order?
            select * from vbfa into l_vbfa
              where vbelv = lva_saleord
              and   vbeln = lva_vbeln.
              exit.
            endselect.
          endif.
    No matching delivery found, or Matching delivery, but for other Sls Ord
          if lva_xabln is initial
          or ( lva_vbeln <> space and l_vbfa is initial ).
            if not lva_saleord is initial.
              perform create_delivery_idocs tables t_zint_mslog
                                            using  s_idcgp
                                                   lwa_01-ticketnumber
                                                   p_zint_nw.
            else.
              concatenate 'Error finding a Sales Order for ticket "'
                          lwa_01-ticketnumber
                          '" reprocess the file AFTER'
                          ' the sales order issues have been fixed'
              into        lva_outtext.
              perform write_log_entry tables t_zint_mslog
                                      using  'E'
                                             'ZINT_CSTPORD_ROUTINES'
                                             'PROCESS_INBOUND_DATA'
                                             lva_outtext
                                             p_zint_nw
                                             lwa_01-ticketnumber. " RJS
            endif.
          else.
            concatenate 'Command Ticket "'
                        lwa_01-ticketnumber
                        '" has already been processed into delivery "'
                        lva_vbeln
            into        lva_outtext.
            perform write_log_entry tables t_zint_mslog
                                    using  'I'
                                           'ZINT_CSTPORD_ROUTINES'
                                           'PROCESS_INBOUND_DATA'
                                           lva_outtext
                                           p_zint_nw
                                           lwa_01-ticketnumber. " RJS
            refresh t_idoc_data.
          endif.
        endif.
        refresh t_idoc_data.
    Write out all messages collected so far
        perform update_data tables t_zint_mslog
                            using p_zint_id p_zint_ty.
      endloop.
    Write out all messages collected so far
      perform update_data tables t_zint_mslog
                          using p_zint_id p_zint_ty.
    endform.                    " process_inbound_data
    Thnaks
    Regards

    Thanks
    Thread closed

  • How can I get product replacement warranty ?

    This is first time I’ve used Apple product.
    I choose Macbook Pro 15 inch With Retina Display (MC976) for my first Apple device. I love this stuff so much, simply excellent OS with the coolest graphic effect ever, superfast start up, elegant aluminum unibody casing and absolutely amazing retina display screen. Until I notice the defects on headphone port after 5 months of usage (with this email, I also send you the picture of the defects). By the time I want to do my video editing project. I realize that I cannot plug my headphone onto the headphone port (maybe its possible if I just force it, but I afraid it will cause more damage so I didn’t do it).
    I wonder if I can claim the product replacement thus I went to Authorized Reseller where I bought the product. However, the person in charge said it is possible to exchange the product during the first time I bought it. Other than that, there is no replacement unit guaranteed. Why I cannot ask for replacement? I know that apple warranty is one year period and my unit still under warranty.
    Why I just want a product replacement option? First, I believe this was production defects. It was because my unit never fall down or crashed before. It is still in perfect condition, no scratches and another damage at all.
    Second, most of apple user in Indonesia said repairment by changing certain parts will cause more damage to the unit itself such as scratches, broken screw and the most is dented. This will cause difficult process if I want to claim the warranty in later time.
    The process of replacement parts also takes a very long time. They said it will at least take minimum of 10 working days and it will surely hamper my daily activities.
    Also, I doubt the Indonesian AASP (Apple Authorized Service Provider) technician ability to repair MC976 which is premium product with high detail and complexity.
    I admit that it is my fault that I didn’t do thorough physical check the first time I open the box. But I know that Apple is a premium brand and there is almost no chance such thing will happen. Unlucky for me to just notice it after so long.
    I hope all of you can give the best solution for my problem. Thank You.

    Apple Return Policy
    http://store.apple.com/us/help/returns_refund

  • Wie lange haben Apple Produkte Garantie in der EU? How long do Apple products have warranty in the EU?

    Auf dieser Webseite ist die Garantiezeit der Apple Produkte beschrieben. https://www.apple.com/de/legal/statutory-warranty/
    Haben nun Produkte von Apple in der EU 2 Jahre Garantie oder nur ein Jahr?
    Es ist nicht verständlich für alle.
    On this webpage the duration of warranty in the EU is stated. https://www.apple.com/de/legal/statutory-warranty/
    Do Apple products have 2 years warranty in the EU or just one?
    This is unclear for everybody.

    Die Garantie beträgt in der EU ein Jahr, kann aber durch einen kostenpflichtigen Apple Care Plan verlängert werden.
    Wie lange ist mein iPhone durch die Apple-Garantie abgedeckt?
    Das iPhone ist durch die beschränkte Apple-Garantie ein Jahr lang abgedeckt. Der Garantieservice für infrage kommende Reparaturen steht Ihnen für zwölf Monate ab dem ursprünglichen Kaufdatum kostenlos zur Verfügung.
    Die Leistungen aus der beschränkten Apple-Garantie und aus AppleCare-Produkten verstehen sich zusätzlich zu der gesetzlichen Gewährleistung in der EU. Hier finden Sie weitere Informationen.
    How long is my iPhone covered by Apple’s warranty?
    Apple's Limited Warranty for iPhone covers your iPhone for one year. Warranty service for eligible repairs is available at no charge for twelve months from the date of original retail purchase ("date of purchase").
    Apple's Limited Warranty and AppleCare product benefits are in addition to rights provided by the EU statutory warranty. Learn more.
    copied from Apple - Support - Service Answer Center

  • How to check refurbished product

    I cant check this T410s is brandnew or refurbished product, I cant find Product Id 2901-ATU.
    Who can help me check it? many thanks
    Moderator Note: Image containing serial number removed to prevent misuse.

    The 410s is no longer in production, but it might be unused from some warehouses. I think you should check with support in your country.

  • How to check Proposed Products

    Hi,
    I am creating Packaged Quotation. There at Item level I have Product proposal button. When I click on, it is not displaying any proposed products.
    Can you please let me know, why it is not displaying any?
    What configurations we need to do for this?
    What exactly Proposed product means?
    Thanks,
    Sandeep

    Hi Sandeep,
    Just to add to what Dipesh has mentioned, you can use the product proposal feature in Sales Transaction also. Here is the SAP Help help link which clearly explains Product Proposals in Sales Transaction and all the required customization necessary for configuring the system to up the system and make it running.
    [Product Proposals in Sales Transactions|http://help.sap.com/saphelp_crm70/helpdata/EN/47/46ef11ea211a52e10000000a1553f7/frameset.htm]
    As for the business scenario, i think it is used extensively in the Interaction Center where the Agent might propose to customer more products for Up Selling, Cross Selling or even down selling.
    Have a look at this link [Cross-Selling, Up-Selling, Down-Selling|http://help.sap.com/saphelp_crm70/helpdata/EN/46/6d7f1de28c7183e10000000a114a6b/content.htm]
    Even I'm new to this feature of SAP CRM. But this is one of the most preferred business configuration to boost sales. So thought of adding this piece of information if it helps a little.
    Thanks,
    Samantak.

  • How to check international warranty

    hiiii
    how to check my iPhone international warranty ?

    The warranty for an iPhone is only valid in the country where it has been bought. You can check the status on this page:
    Check your warranty status

  • How to check apple care warranty with Serial Number without registering

    How to check the warranty of the apple macbook pro (mid 2009 release) without actually registering the product.
    I have the serial number of the machine.
    I looked into this link ,it seems that it requires you to register the product .
    Earlier that was not the case. You could just check the warranty by entering the serial number and location .
    Link : https://selfsolve.apple.com/GetWarranty.do

    If the product was never registered, you won't be able to check warranty, because as far as Apple is concerned, it's still new and has not been sold yet.
    Dave M.
    MacOSG Founder/Ambassador  An Apple User Group  iTunes: MacOSG Podcast
    Macsimum News Associate Editor  Creator of 'Mac611 - Mobile Mac Support'

  • How to check how long is left on your warranty

    I bought an I phone second hand and I was wondering is there any way to check how long is left on the warranty they said the phone is less than six weeks old but I would like to check.
    Thanks

    Do you also see this message?
    "Repairs and Service Coverage: Expired
    Our records indicate that your product is not covered under Apple's 1-year limited warranty or AppleCare Protection Plan for hardware repairs and service based on the estimated expiration date.
    Learn about Apple's coverage information for your product.
    Set Up a Repair"
    This would indicate warranty coverage has expired.

  • How do I list product details   using   check boxes to save having to write the same info over and o

    Hi there
    First of all
    Happy New Year and I hope everyone is well all the best for the future
    Now...... back to the point
    What I want to do is........
    I am making a jewelry ... necklace... shopping site for my girlfriend.... well.... my wife in two weeks.... This site has been a loooong time coming.... I am still not happy with it so it still not public.... but is working ok She very upset it taking more than a year.... but I am still learning and I always want it better
    Anyway
    I have hundreds of Necklace details to enter..... i thought it would be easy but it is very tmie consuming...... So ...
    The necklaces are made from different kinds of stones.... turquoise .. agate ... and about a hundred more different kinds of stones
    In my add product form I have a field for entering product details..... to enter the different kinds of stones the necklaces are made from..... sometimes more than twenty for one necklace..... So what I want to do is have check boxes... or radio boxes to choose what stones to add to the description..... So I can have a list of about fifty different kinds of stones all with a check box next to them so that when you choose a box that stone name would appear in the product description
    Sounds easy but I can't figure out how to do it.....
    I think I need a different table in my database a 'stone_neck' field to store all the stone names.... about 50 fields..... .... with an id field and a name field and maybe a display field ....... I think
    Does that sound correct.......?
    If so then how do I display the details in a field in a table in my product detail page? I think I need a recordset on my detail page that gets all the stone names.... but how do I display the names of the stones that I have checked in the addprod form ? Do I need to put all every one of the stone info from the bindings panel? and then show region if .......
    i am confused
    If anyone has any ideas it would be great
    Have a great day

    Maybe you can take tips by visiting sites of prominent jewelry brands like Tiffany to get some ideas of how to structure your product list details.
    Just a thought.
    Mahadevan
    www.wheretobuyringsnow.com

  • How to check if my Porsche Design P'9982 is brand new and how long I have warranty ?

    How to check if my Porsche Design P'9982 is brand new and how long I have warranty ?
    Chandy Boy

    chandlar_27 wrote:
    How to check if my Porsche Design P'9982 is brand new and how long I have warranty ?
    Hi @chandlar_27! Welcome to the BlackBerry Support Community Forums!
    Warranty? You have to conntact the place where you got it.
    To know if it's not been used yet, Go to the Phone App> Swipe down from the top screen> Settings> Call Summary.
    if the number there doesn't match your personal use since purchase, you will know it has been used before.
    Click if you want to Thank someone. If Problem is resolved, so that others can make use of it.

  • How to check my iphone warranty

    how to check my iphone warranty

    k.salam1 wrote:
    how to check my iphone warranty
    See >  https://selfsolve.apple.com/agreementWarrantyDynamic.do
    NOTE:
    iPhone Warranty  >  The warranty is only valid in the country of original purchase... Except for EU Countries...

  • How could it be possible to check the product number here to find that it is not factory reject?, How could it be possible to check the product number here to find that it is not factory reject?

    How could it be possible to check the product number online to find that it is not factory rejection?
    My product is Iphone 5 by the way.

    <https://selfsolve.apple.com/agreementWarrantyDynamic.do>

  • HT4061 How to check iPhone warranty

    How to check iPhone 4 warranty?

    Look here on the right of this page "More Like This"   iPhone4 warranty
    or goto  https://discussions.apple.com/message/17288610#17288610

Maybe you are looking for