Can I stack two reward certificates?

I want to pick up a new mouse at bestbuy and I was wondering. I want to price match the Logitech G502 from Amazon and then I would like to know if I would be able to use two of my reward certificates? One is $15 and the other is $5. Would the bestbuy store give me any problems? Seeing that I'm price matching and using two of my reward certificates. Kind appreciated. Thanks

Hello kre1997,
Those are three great questions!  Let me see if I can help provide answers.
As long as the certificates are valid, you can apply two to a single purchase.
A certificate can be applied to a pre-order, but only on BestBuy.com.
The main exclusion is the purchase of gift card, but there are a couple others and you can those here.
Thank you for posting to the forum, and please let me know if you have any other questions.
Derek|Social Media Specialist | Best Buy® Corporate
 Private Message

Similar Messages

  • Can I use two rewards certificates in one transaction at a Best Buy store?

    Since you have to spend at least the value of the My Best Buy reward certificates before tax and shipping, I thought it would be best to issue the certificates in smaller amounts (maybe $5 instead of $15).  If I do that, and I have multiple certificates of $5, can I redeem them all toward a single purchase?  For example, if I want to buy a video game, can I apply multiple $5 reward certificates toward that purchase?
    Also, can My Best Buy reward certificates be used toward a pre-order of a game? 
    Are there any restrictions on what they can be used for, other than not being able to be used for Best Buy gift cards or e-gift cards?
    Thanks for answering my three questions about My Best Buy Rewards

    Hello kre1997,
    Those are three great questions!  Let me see if I can help provide answers.
    As long as the certificates are valid, you can apply two to a single purchase.
    A certificate can be applied to a pre-order, but only on BestBuy.com.
    The main exclusion is the purchase of gift card, but there are a couple others and you can those here.
    Thank you for posting to the forum, and please let me know if you have any other questions.
    Derek|Social Media Specialist | Best Buy® Corporate
     Private Message

  • HT5012 Can I install two root certificates with the same name in iPad?

    Can I install two root certificates with the same name in iPad?

    Antaeus00 wrote:
    I tried sending a request for help,
    But did you succeeed in sending a request for help?
    Did you receive a response? How long has it been since you sent a request?
    but I need someone with more authority to talk to.
    There is no one with more authority than iTunes store support. We herem are only users.

  • How can we use two user certificates at a time?

    Hi,
    I want to use two different user certificates for two different trading partners. Can we keep two private keys in single wallet and use those simultaneously? In our case our two trading partners are using different CA's certificate and we are forced to use two private keys.
    Please tell me that is there any way by which I can manage two private keys at a time in single wallet?
    Please help.
    Thanks & Regards,
    Anuj Dwivedi

    a. How To Extract A Private Key and Certificate From A Wallet
    Oracle does not provide any functionality within Wallet Manager, or otherwise, to do this. However this can be achieved using OpenSSL.
    - If a Linux server is available, OpenSSL is usually installed by default (/usr/bin/openssl). If not you can download it from www.openssl.org
    - To extract the key and certificate from the Wallet run:
    openssl pkcs12 -in ewallet.p12 -passin pass:<wallet_password> -out ewallet.txt -nodes
    - The resulting ewallet.txt is a file that contains the unencrypted private key, the certificate and all the root CA's in the wallet. Then the relevant information for the key, and certificate(s) can be copied to separate files to create the individual key and certificate(s)
    b. How to Convert a Certificate and Private Key to an Oracle Wallet
    SSL2OSSL (UNIX) and OSSLCONVERT (Windows) are tools that allow you to convert Private Keys and Certificates to an Oracle Wallet format. This format is required for Oracle Application Server. $ORACLE_HOME/Apache/Apache/bin/ssl2ossl
    Points to Note:
    * Even though capath, cafile, and chain are optional, at least one must be specified.
    * All the certificates that are being converted must be in base64 format.
    * If you are converting a self signed certificate, running ssl2ossl/osslconvert does not import the certificate as a Trusted Certificate. Therefore it is necessary to import the certificate as a Trusted Certificate in Wallet Manager after its converted, otherwise the Wallet will not work with Application Server.
    usage:
    $ ssl2ossl -cert /<path>/server.crt -key /<path>/private.key -cafile /<path>/rootca.crt -wallet /ssl/wallet -ssowallet yes
    Enter wallet password:
    Verifying password - Enter wallet password:
    SUCCESS
    This will create a ewallet.p12 file in /ssl/wallet

  • How can I stack Graphics2D objects

    How can I stack two or more Graphics2D objects on the same BufferedImage.

    I am trying to create layers. Here is an example I have started with. The problem is the remarked code. The effect is correct but it is applied to the complete image. I would like to separate the effect to only the shadow text. I would appreciate any help. I am new to Java so still fumbling around with concepts.
    import java.awt.*;
    import java.awt.font.*;
    import java.awt.image.*;
    import java.io.*;
    import javax.imageio.*;
    import java.awt.geom.*;
    import java.util.*;
    public class ShadowText {
    static Rectangle2D.Double Rectangle;
    static BufferedImage image;
    static Graphics graphics;
    static Graphics2D g2d;
    static TextLayout textLayout;
    public ShadowText() {
    public static void main(String[] args) {
    BufferedImage image = new BufferedImage(500,120,BufferedImage.TYPE_INT_RGB);
    Rectangle2D Rectangle = new Rectangle2D.Double(0,0,500,120);
    graphics = image.getGraphics();
    g2d = (Graphics2D) graphics;
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    g2d.setPaint(Color.white);
    g2d.fill(Rectangle);
    g2d.draw(Rectangle);
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    //g2d.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, .5f));
    textLayout = new TextLayout("Shadow Text", new Font("Serif", Font.BOLD, 70), g2d.getFontRenderContext());
    g2d.setPaint(Color.black);
    textLayout.draw(g2d, 12, 102);
    //float ninth = 1.0f / 9.0f;
    //float[] kernel = {ninth, ninth, ninth, ninth, ninth, ninth, ninth, ninth, ninth};
    //biop = new ConvolveOp(new Kernel(3, 3, kernel));
    //op = (BufferedImageOp) biop;
    //image = op.filter(image,null);
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    textLayout = new TextLayout("Shadow Text", new Font("Serif", Font.BOLD, 70), g2d.getFontRenderContext());
    g2d.setPaint(Color.black);
    textLayout.draw(g2d, 10, 100);
    Write("C:/JavaTraining/Filters/images/ShadowText.jpg",image);
    public static void Write(String file, BufferedImage image){
    //Check for file exsist
    StringTokenizer tokens = new StringTokenizer(file,".");
    if(tokens.countTokens()>0){
    String filename = tokens.nextToken().trim();
    String type = tokens.nextToken().trim();
    try{
    if(type.equalsIgnoreCase("gif")) type = "png";
    ImageIO.write(image, type, new File(file));
    }catch (IOException e){
    System.out.println("Invalid file name or path! "+file);
    }else{
    System.out.println("Invalid file name! "+file);
    }

  • Missing reward certificate after cancellation.

    I canceled an order 10 days ago that used two reward certificates, but I only got one back the next day after cancellation. Is it possible to get the other one back or is it lost for good?

    Good morning greyfox and tanis,
    Thank you for reaching out to us on the forum!
    A certificates point value should usually repost to a member's My Best Buy™ account within about 3 to 6 business days following a return/exchange or cancellation.  We would need to allow a full 6 business days before considering other options.
    I would like to go over each of your accounts with you in greater detail to ensure they are up-to-date, so I will be sending you both a private message.  To check your private messages, you would want to login to the forum and click on the little picture of envelope at the top of the page.
    Returns When a My Best Buy™ Certificate was Used
    Warmest Regards,
    Derek|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Can you stack 2960 Switch?

    My question is can I stack two or more 2960 switches, master/slave design and be able to manage them both using the CMS technology or not. I don't quite understand the SFP, Small Form-Factor Pluggable, and the 2960 uplink ports. It appears as though one uplink will be in standby mode, therefore both ports can't be active at the same time. If that is the case it looks as though you can't stack becasue of only one uplink port being active.

    Hi Washro,
    You cannot stack 2960 switch like you can do 3750 switches but you can still achieve clustering on this switch.
    http://www.cisco.com/univercd/cc/td/doc/product/lan/cat2960/12240se/scg/swclus.htm
    Also both uplink ports can be active at a time if they get connected to some other switches but if 2 get uplink to same switch then STP will block one port.
    HTH
    Ankur
    *Pls rate all helpfull post

  • Use reward certificat​e

    Can't use my reward certificate online. Keeps telling me invalid.

    Hi RitaMitchell,
    We're aware of an issue that temporarily prevented customers from redeeming My Best Buy reward certificates on BestBuy.com earlier today. It's my understanding that issue has since been resolved though, so I'd encourage you to try again when you have the opportunity to do so.
    Thanks for your patience and understanding!
    Aaron|Social Media Specialist | Best Buy® Corporate
     Private Message

  • If I preorder two different eligible games, do I get two $10 reward certificates then?

    I know if you preorder two of the same games that are eligible like destiny, you will only get one $10 reward certificate, but what happens if I preorder lets say the master chief collection and far cry 4, does that mean I get two $10 reward certificates?

    Hey RatedRudy,
    You've got it! If you pre-order and purchase two different eligible titles, then you will receive a $10 reward certificate for each game.
    Let us know if you have any other questions.
    Aaron|Social Media Specialist | Best Buy® Corporate
     Private Message

  • How difficult should it be to redeem a "My BestBuy' reward certificate???

    Back, on August 11, 2014, I logged into "My Best Buy' account, and saw that I had 1500+ points available, so I attempted to print a $25 reward gift certificate, to purchase an item in-store.  I got an error, stating that there was an error and to try again later.  OK - so an hour later, same error.  A couple of hours later, same error.  The next day, same error.
    So, the next day, August 12, I physically go to the store to purchase an item.  I go to the customer service desk, to purchase this with my $25 certificate that I have in my account.   The girl said she did not have access to my reward certificate, so she let me log on, in the store to attempt to print out this certificate.  Nope - same error.  So, she calls the 1-800 number for me, gets me to a CSR, and I explain my problem.  I was put on hold, then the call disconnected!   So, I buy this with my credit card, and would come back next week to get a refund on my credit card, and pay for it with my certificate, which I assumed would be no problem.
    Well, I then call BB later, and spoke to Joseph, who can see that I do have enough points to redeem a $25 certificate, but she doesn't know why I get an error.  So, he gives me a case ID: {Removed per Forum Guidelines}, and tells me that someone would contact me within 7-10 business days.  WHAT???  7-10 business days???  You're kidding me, right? 
    On August 21 (9 days later), 'Zoher' emails me and asks me if I still get that error.  I do, so I then call the 1-800 number, as listed in the email for further assistance.  I then speak with a girl, who assures me that someone would email me in regards to this issue, first thing the next morning, Aug 22nd. 
    Well, on Aug 22nd, I did NOT get an email, nor do I have my rewards certificate!
    So, I send out another email, and asked if this cannot be resolved immediately, to put me in contact with someone who CAN take care of this issue.
    I then get an email that day from 'Zoher', who says my account is damaged, and that is why I cannot generate a certificate.  He then provides steps to generate a new 'My Best Buy' membership account.  I go through those steps, and it's generated.  Great - but now I have ZERO points in my account.  Problem:  STILL no gift certificate.  So, I instantly reply to Zoher, to tell him my account is created, but now I have zero points.
    Now, on August 25, I get an email, stating that he cannot contact me, so this case will be closed! 
    ARE YOU KIDDING ME???
    I was pretty darned annoyed at the beginning.  Now, I'm REALLY ANNOYED!
    So, I call the 1-800 number again (Aug 25), get another rep, who sends me to another person, and I finally get 'James', and also got a new case ID: {Removed per Forum Guidelines}.  He looks into this, and understands my issue, and he assures me that I will get all my points back into my Reward Zone account within 24 hours.  I check in 24 hours - zero points.  I give it a little time.  
    Aug 28 - I reply to the email, stating that I STILL have ZERO points in my account.
    Guess what?  NO REPLY from BEST BUY!!!!
    Aug 29 - I send an email to [email protected] and [email protected], explaining this whole scenario again, and guess what???  STILL NO REPLY from BEST BUY.
    OK -  today is Sept 4.  I initially contacted BEST BUY on Aug 12, with this problem.
    All the people I spoke with at Best Buy could see that I had earned enough  points on my account to redeem a gift certificate.  Now, 23 days later, I still do not have a gift certificate, nor does Best Buy care enough to even reply and address my issue. 
    What more can I do???
    I have talked to numerous people online.  I have 2 case IDs with BB customer care.  I have sent numerous emails, and BB decides to ignore me.  What else does a customer need to do, to redeem the points that I have earned.  I have asked NUMEROUS times to be escalated to someone that CAN help me, to no avail.
    If anyone from Best Buy is reading this, can I get some assistance here, because I have gotten no where, after 23 days working with BB Customer Service!

    Good afternoon nota12a, and welcome to the Best Buy forum,
    Depending on the error message in-question, it could potentially take some time to resolve; however, there is no reason why it should take you almost a month to convert available points into a certificate.  Who could really blame you for feeling annoyed at this point?  I would feel annoyed too.  This is simply not the level of service that Best Buy strives to provide its customers.
    While going over your account history, I did notice that you currently have two active My Best Buy™ accounts.  If we were going to suggest opening a brand new account, then we should have helped merge your accounts and moving the 1,500+ points over to your new account.  The primary information shared between your two accounts matches, so I will help merge them together and get you down to one account.
    I am sorry for any inconvenience you have endured while trying to utilize your points and would like to see if I can help convert them into a certificate.  To go over your My Best Buy™ account with you and gather some additional information, I will be sending you a private message.  You can check your private messages by logging into the forum and clicking on the little yellow envelope at the top of the page.
    Thank you for reaching out to us.
    Derek|Social Media Specialist | Best Buy® Corporate
     Private Message

  • $10 reward certificate with EVERY pre-order using GCU?

    So every single time I pre-order with my GCU I will get a $10 certificate?

    Hey MutantMike,
    It'd be amazing if our Get $10 program worked that way, but alas, it does not -- My Best Buy members must pre-order and purchase an eligible title to receive this bonus. A full list of qualifying titles can be found here:
    Get $10 in Reward Certificates
    The offer is also limited to one bonus certificate per My Best Buy membership per title. For example, if you were to pre-order and purchase two Xbox One copies of The Witcher 3: Wild Hunt and one PlayStation 4 collector's edition of the same title, you would still only be eligible to receive one $10 pre-order bonus certificate.
    I hope this helps.
    Aaron|Social Media Specialist | Best Buy® Corporate
     Private Message

  • An order paid with Reward Certificate was never fulfilled. Do I lose my points?

    Hello,
    I placed an order on May, 22.  Total for this order was $17.92 (paid with credit card) + $20 (using reward certificate).  I received an e-mail confirmation saying that my order was shipped a day after that.  I waited two weeks for my order to arrive, which never happened.
    Few days ago I contacted CS by e-mail trying to find out what the issue was, they refunded me the $17.92 only.  They never mentioned what was going to happen with my $20 reward certificate.  Do I lose that?  I don't think that is fair considering it was not my fault that the items never showed up.
    Can someone please shed some light on this?

    Greetings NosajThing,
    Thank you for posting with us! My Best Buy Certificates may take up to a few days (3 – 6) to be credited back on your account when a cancellation happens. I apologize if you haven’t received those points back on the account even after reaching out to us with your concern.
    I took some time to review your order by using your email address on your profile. From what I can see, it seems as though your order was “shipped” and a credit of $17.92 posted back on your credit card.  I would be interested in finding out if the order was lost during delivery and if this was the main reason you had contacted us in the beginning. If so, I would be happy to continue working with you once more details are provided.
    In order to do so, I have sent you a private message. You may view it by logging into the forum and clicking on the envelope in the upper right-hand corner of your screen.  
    Thanks,
    Arian|Social Media Specialist | Best Buy® Corporate
     Private Message

  • $10 reward certificat​e for Shadow of Mordor.

    I am hoping that the string of errors that I have encountered does not prevent me from getting the reward certificates that should come with pre-ordering Shadow of Mordor. Let me start my adventure with this....
    On August 6th, I preordered Shadow of Mordor, along with two other games, on the same reciept. Now, I wanted Shadow of Mordor for my PS4 and the other two for Xbox One. I didn't pay attention and the checkout person made all 3 of them for the Xbox One. After I noticed I told her about the mistake and she assured me that I can still use it for the PS4 version and that my reward certificates wouldn't be affected. Okay, so I bought into that.
    When I went to purchase Shadow of Mordor on September 30th I was assured again that it would be okay. Now, I thought I had nothing to worry about....but as I looked at the reciept yesterday I just noticed that the customer service person never used the pre-order credit towards the game....sigh. I didn't notice at the time because I used some reward certiciates, the gamers club discount, and a gift card. I didn't do the math in my head because I was rushing and just got off work. 
    Is there anything I can do to get the $10? What happens to my unused pre-order credit now that the game has been released? I don't lose it do I? Any help is greatly appreciated. 

    Hi ZombieSpaceLord,
    I greatly appreciate multiple games at Best Buy! I do however apologize as it sounds like there may have been a mix up with which versions of each game you wanted. I’m happy to hear that we were able to get you the correct versions upon the release dates! With that said, it’s understandable that you’d be concerned about the $10 Reward Certificate for pre-ordering Shadow of Mordor and I’ll gladly assist here.
    I’ve located your final sales receipt using your email address on file for the forums and I’m going to send you a private message with some specifics about your purchase. Make sure you’re logged into your account and click the small envelope on the top right of the screen to view your inbox.
    I’ll be reaching out to you shortly!
    Brian|Senior Social Media Specialist | Best Buy® Corporate
     Private Message

  • Best Buy exchange with rewards certificate issue

    Hi,
    I have been a loyal customer of Best Buy over the years and go out of my way to shop there for my electronics. I hope someone can assist me with my problem. Below I have given a brief synopsis of what is going on. Thank you for your time.
    On 01/10/15 I purchased a Bose headset using some of my best buy rewards certificates and the rest of the balances on my credit card. I forgot to use a $50.00 gift card that I had received, towards the purchase that day. On 01/13/15 I returned to the same store to ask that the receipt be credited and re rung so I could apply my $50.00 gift card. The customer representative advised that since I used best buy rewards certificates I would not be able to do the exchange since the rewards take 8 days to return to my account. I asked if the rewards could just go onto a best buy gift card and he stated they were not able to. I had no intention of returning my item; all I wanted was to get the $50.00 gift card applied to my receipt. Instead I was forced to return my headset and now wait 8 days to then repurchase the same headset in order to be able to use my best buy rewards certificates plus my $50.00 gift card. I find it ironic that best buy is willing to take in a returned item (never intended for return), make customers wait 8 days, and then have the customers travel back to the store to buy the same item over again just to be able to use their rewards certificates that were returned.
    I did advise the customer service representative of how absurd the process is and he stated “I know I’ve been dealing with it for the entire holiday season but this is the only way it can be done.”   Best Buy should really take a step back and look at this process since they are incurring a loss on the returned product and the overall poor customer experience.
    Thank You

    Hi jonchiarito,
    Thank you for signing up for the forum and connecting with us.
    I can imagine feeling frustrated after hearing that your certificates would be returned to your My Best Buy™ account, which may cause you to have to make another trip to the store to redeem them.  The only way we could have applied the $50 gift card to your existing purchase is to process a return and repurchase, which would cause the certificates point value to repost to your account.  Since certificates have no actual monetary value, they cannot be put onto a gift card.
    It can usually take between 3 - 6 business days for a certificates point value to repost to a member's account following a return, and it pretty common for the point value to repost the same day that a return is processed.  I looked over your My Best Buy™ account using the email address you registered with the forum, and from what I can see, the point value for the certificates you redeemed reposted to your account yesterday following the return.  It may take 24 hours for your account to update though.
    If after 24 hours you for some reason are unable to access those points or if you have any other program related questions, then do not hesitate to send me a private message and I will see what I can do to further assist.  You can send a private message by clicking on the blue button in my signature labeled "Private Message."  Also, please feel free to post any ideas or suggestions you have to the IdeaX section of the forum.
    Returns When a My Best Buy™ Certificate was Used
    I hope you enjoy the rest of your day.
    Derek|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Can you have two Enterprise CA on the same AD Domain at the same time

    Hello
    Can someone please help me with the following question
    If I have a Windows 2003 R2 Enterprise Root CA on the AD Domain can I also Add a separate Windows 2012 R2 Enterprise Root CA to the same domain.
    We do not use Autoenrollment on the existing 2003 R2 CA.
    Network guys want to introduce a Cisco BYOD (Bring Your Own Devise) solution using Cisco ISE (Identity Services Engine) which uses SCEP/NDES and therefore need certificates from CA. The thing is the ISE recommend 2008 AD CS as a minimum
    Therefore I wonder if Installing a 2012 R2 Root CA that only provides certificates via the NDES/ISE solution would be a possibility. 
    I understand the Root CA Cert is held in a container under the 'Configuration' partition in Active Directory. Therefore can you have Two Root CA certs in the AD container at the same time for the same AD Domain/Forest?
    The idea would then be to migrate other services to the new CA and phase out the old 2003 R2 CA over time.
    Thanks All
    AAnotherUser__
    AAnotherUser__

    On Thu, 18 Sep 2014 09:18:43 +0000, AAnotherUser wrote:
    Therefore can you have Two Root CA certs in the AD container at the same time for the same AD Domain/Forest?
    Yes.
    Paul Adare - FIM CM MVP
    You are trapped in a maze of screens and ssh sessions all alike.
    It is dark, and you are likely to log off the wrong account. -- Nep

Maybe you are looking for

  • Survey code not working

    Ok so I'm making a survey for a website and I have a series of questions where the user can rate it from a list of choices and I have these questions in a table in access and the rating options in a table. I want to have the questions display with th

  • Update query for Advanced table.

    Hi, I am an newbie to OAF so need help for a simple task. I have an advanced table that has been created using expert mode query of VO. (as it contains data from more than one table). Now, i want to update the data for any row that is changed in the

  • How to run other windows .exe program in Java code?

    Hello! In C language we can use system() function to run a OS prog, but which function(method) can we use in java?

  • Problem creating script object

    I´m very new at LiveCycle and I haven´t been able to create a function to accomplish a very simple thing because I guess I´m missing something. What I want to do is to call a function in the mouseup event that just sets the rawValue of a Text Field t

  • Stills Disappearing

    I'm working with stills with Final Cut Pro 5.1.4. I have never had this happen before. I will set the keyframes on a still and it looks great. I come back later and the still is blank in the Canvas but appears in the viewer. If I slightly adjust the