Check MyBestBuy Eligibility status

Hello, I am trying to find where you can check online your current eligibility status for being an elite or elite plus member for the upcoming year.  It used to be really easy to find, being on almost every page you looked at, and now it doesn't seem to exist.  Where can I find that information in my account page?

Greetings compking, and welcome to the Best Buy forum!
The Elite/Elite Plus spending bar can usually be found by logging into BestBuy.com and clicking on "View All Rewards" under your name at the top of the page; however, it has been temporarily removed in preparation for the increased website traffic over the next couple of weeks.  We expect it to be back up around the first of December.
If you or any other My Best Buy™ member wants to double check their spending total, then please feel free to send me a private message and I provide that information.  A private message can be sent by clicking on the blue button in my signature labeled "Private Message."  I would just need your name, email address, and My Best Buy™ ID #.
Changes to your My Best Buy™ Account Overview
I hope you have a great day, and thank you for being a My Best Buy™ member.
Derek|Social Media Specialist | Best Buy® Corporate
 Private Message

Similar Messages

  • Check The Job Status

    Hi SAPsimhas,
    My requirement is as below.
    I will loop through an internal table and create some files with background processing method.(JOB_OPEN,SUBMIT & JOB_CLOSE)
    Now once this job is triggered I need to check the status for that job after maximum 10 mins. Its not neccessary that each job will take 10 mins. only,It can be finished in 2 mins also.
    Once the job is finished then I will XCOM that file.
    So my question is how to code such timer which will check the job status for that job? I have a FM BP_JOB_READ which returns the job status.
    Reply is highly appriciated.

    Try this way
      do.
        call function 'SHOW_JOBSTATE'
          exporting
            jobcount         = p_jobc
            jobname          = p_jobn
          importing
            aborted          = v_aborted
            finished         = v_finished
            ready            = v_ready
            running          = v_running
            scheduled        = v_scheduled
          exceptions
            jobcount_missing = 1
            jobname_missing  = 2
            job_notex        = 3
            others           = 4.
        if v_aborted eq 'X'.
          exit.
        endif.
        if v_finished eq 'X'.
          select single * from tbtcp into wa_tbtcp1
                     where jobname eq p_jobn
                       and jobcount eq p_jobc.
          if sy-subrc eq 0.
            move wa_tbtcp1-listident to p_spono.
          endif.
          exit.
        endif.
        if v_count le 10.
          call function 'ENQUE_SLEEP'
            exporting
              seconds = 60.
          v_count = v_count + 1.
        endif.
      enddo.

  • 5. We need additional time to process your transaction You should get an email from us by next business day. If you don't hear back from us, you can check your order status on your account page or call us at +1 800-585-0774. If you're not in North America

    Step 5.
    5. We need additional time to process your transaction You should get an email from us by next business day. If you don't hear back from us, you can check your order status on your account page or call us at +1 800-585-0774. If you're not in North America, you can look up a local number here. For now, check out all the great free features of Creative Cloud! Get started with trials
    I keep getting this.
    The Bank and Paypal states that Adobe needs to process my transaction twice.
    I have no order number/ no status nor contact from Adobe. I called customer service and he transferred me to sales where the phone rang with no answer.

    Since this is an open forum, not Adobe support... you need to contact Adobe staff to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • TF244069: An error occurred while checking the provisioning status of the reporting database schema for a PWA instance.

    The command TfsAdmin ProjectServer /RegisterPWA causes next error:
    TF244069: An error occurred while checking the provisioning status of the reporting database schema for a PWA instance.
    Project Server returned the following error: "Server was unable to process request. ---> The request failed with HTTP status 401: Unauthorized.".
     (type ProvisionException)
    Exception Stack Trace:    at Microsoft.TeamFoundation.Sync.Provisioning.ProvisionPwaDBSchema.HandleSoapException(SoapException soapException, String errorResourceString)
       at Microsoft.TeamFoundation.Sync.Provisioning.ProvisionPwaDBSchema.IsDBSchemaProvisioned()
       at Microsoft.TeamFoundation.Sync.Provisioning.ProvisionManager.Provision()
    I installed SharePoint 2013 and Project Server 2013 as farm and TFS 2012 and my account has permissions everywhere. I read article
    http://msdn.microsoft.com/en-us/library/gg412653.aspx and gave full permissions for TFS account to SQL and Project, Project app pool account to SQL, but still have an error.
    How can I find out what exactly permissions are not enough???

    The problem was in claims authentication. Changed to Windows and all worked out.

  • When I try to sign into iCloud from Windows PC I get the message "You can't sign in because of a server error." When I check the iCloud status, all is Green.

    When I try to sign into iCloud from Windows PC I get the message "You can't sign in because of a server error."  When I check the iCloud status, all is Green.  What is the fix?

    Hi spillgar,
    If you are having issues signing in to iCloud from your Windows machine, you may find the following articles helpful:
    iCloud: Account troubleshooting
    http://support.apple.com/kb/ts3988
    iCloud: If you can’t sign in to iCloud.com
    http://support.apple.com/kb/ph2611
    Regards,
    - Brenden

  • I can't check my shipping status for my iPod touch, it says "Oops, An error has occurred"

    I've ordered my iPod touch through the Apple Online Store yesterday and I can't seem to check the shipping status.
    Whenever I click into the "track a shipment" page, it just loads very slowly and then comes up with an error saying an error has occurred.
    Help, please?
    Thanks,
    Liang Chun
    [EDIT]
    Alright, now it shows up "We're sorry. Something went wrong with your request, please try again later."
    What do I need to do now?

    We have the same problem here in Australia too. I haven't been able to cancel my iPhone 4s I ordered online. I was able to purchase one from a retail store the last thing I need is two iPhone 4s :P

  • How can I check the return status of a request using URLConnection?

    Hi,
    I am using the classes URL and URLConnection to connect to a remote server and make a POST request. The code extract is:
    URL u = new URL("http://.....");
    URLConnection con = u.openConnection();
    con.setDoInput(true);
    con.setDoOutput(true);
    con.setUseCaches(false);
    con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
    DataOutputStream out = new DataOutputStream(con.getOutputStream());
    out.writeBytes(........);
    out.flush();
    out.close();
    Next, I would like to check the return status of my request. I need to see if the server returned status 200 (OK) or an error (e.g. 404). Is there a way to check this?
    If you are aware of another way I can achieve this whole thing I would be grateful if you could let me know.
    Thanks very much for your help!

    URLConnection doesn't have a getResponseCode
    method...
    But I found a link
    http://bugs.sun.com/bugdatabase/view_bug.do;:WuuT?bug_
    id=4191207
    that helped me found out that there is another class
    called HttpURLConnection:
    ((HttpURLConnection)conn).getResponseCode( )You should read the API:
    http://java.sun.com/j2se/1.5.0/docs/api/java/net/URL.html#openConnection()
    "If for the URL's protocol (such as HTTP or JAR), there exists a public, specialized URLConnection subclass belonging to one of the following packages or one of their subpackages: java.lang, java.io, java.util, java.net, the connection returned will be of that subclass. For example, for HTTP an HttpURLConnection will be returned,..."

  • How to check the DTP status (i.e in active mode or not) for the Prior days.

    Hi SAP gurus,
    How to check the DTP status whether it was in active mode or inactive mode for the prior days ?

    Hi Aditya,
    Kindly have a look into below links,
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00dbbfa9-dba2-2d10-bc80-9d6489e4b1c7?QuickLink=index&overridelayout=true
    DTP request Overall status
    Hope this helps.
    Regards,
    Mani

  • Checking print job status

    Hi,
    In Leopard, when I print to any of my printers, an application with the name of the printer I'm printing to appears. If I want to check on the status of the current print job, I can't figure out a straightforward way to look at the jobs in that printer's queue. The only way I can accomplish this is to select "Show Printer List" from the "Printer" menu, which then opens the System Preferences dialog listing all of my printers, from which I can select the current printer from the list on the left and then click on the "Open Print Queue..." button. But this seems sort of a roundabout way to check my print job, considering that the current printer's "app" is already open. In the printer "app"'s "Jobs" menu, I have only "Delete Job", "Hold Job", "Resume Job" and "Hide Completed Jobs" as options. It would be great if there were a "View Jobs" option as well. I don't recall that checking print jobs was as convoluted in Tiger. Is there some trick here that I'm missing, or did the monitoring of print jobs become a bit more difficult to do in Panther.
    Thanks,
    Ken

    If you want to see the current queued jobs then click on the option to "Hide Completed Jobs" This makes the current jobs easier to see.
    If the completed jobs view is on, then the current jobs will be at the end of the list.
    Also see the CUPS jobs page here:
    http://localhost:631/jobs/

  • Check the order status

    Hi,
    When I do the issue goods to production order,the system massage:Current order status 1000043 does not allow goods withdrawals,Check the order status.
    But how to check? I can't find the wrong.
    regards,
    Zhou.

    Zhou,
    The relesase is getting rejected.
    That's y the status is RELR
    Follow the path in CO02
    Goto-- Logs-- Release.
    Here you will get the reaason for the rejection of the release.
    It might be due to material unavailability.
    You must have done the settings in 'Checking control'.
    Execute T code OPJK.
    Select the combination of the plant, order type & business function 2 & click on details.
    In the next screen against 'Release material' it must be 3. Change it 1 or 2 & save.
    Now try to release the order. It will be released & GI can be done.
    Hope this helps you.
    SmanS

  • Check the system status

    Hi,
    I have a simple question for you..
    How can I check the system status when i save my order...
    The purpose is not save orders whith errors.
    Thanks,
    Hugo.

    Hi Hugo,
    You need not do anything with the status.
    Just create a BADI Implementation for the BADI definition ORDER_SAVE in SE19.
    In the method PREPARE, call the function module CRM_MESSAGES_CHECK_FOR_ERRORS to check for errors in the order. If there are errors in the order then call the function module CRM_MESSAGE_COLLECT to show the additional error message 'Order can't be saved as it contains error' and exit.
    You can also do any additional validation that you want. Save and activate the BADI implementation.
    Now create an order and see if the code written works or not.
    <b>Reward points if it helps.</b>

  • Check TO & Picking status

    Is there a way wherein we can check the Picking status in the warehouse? I want to print the Production Orders only when i'm sure that the picking is done in the warehouse. Our system's current setup is that TRs are generated upon production order release. (WH receives this and transforms them into TOs )

    Hi Madhu
    Check with the transaction code mb26 -pick list
    or
    check through operation overview in display/change process order
    Thanks
    Reward if useful
    Edited by: K Saravana Kumar on Aug 7, 2008 2:07 AM

  • Can't check my RMA status and Register a product

    Today I tried to check my RMA status and register my new motherboard, I found out any sub websites with service.msi.com is all not able to be accessible. Is it just me or everybody? 
    I'm new to this forum please warn me if I posted this in the wrong section. Thanks a million!

    Quote from: darkhawk on 09-January-14, 21:15:24
    We won't really be able to provide any help in regards to this. The best we can tell you to do is to contact MSI directly about it.
    >>How to contact MSI.<<
    I'm very sorry for posting in the wrong section, I guess MSI has fixed the problem. I can access service.msi.com now
    I'm SORRY again! Please forgive me. Thanks for trying to help though, I really appreciate it.
    Don't mind me asking is there any people that actually work for MSI or are MSI? I apologize again if this is not the right thing to ask, if so please delete this and ignore me. Thanks!

  • Checking JMS Queue Status

    Hi,
    It possible to check the current status of my Queue in WLS 8.1???
    I've been tryin to use the QueueBrowse example but its not working.
    Thanks in Advance.
    Erick Akamine

    Hi,
    You can heck using weblogic.Admin command.
    Ex:
    -- For geting all the JMS queues runtime data.
    java $WLS_ADMIN_SSL weblogic.Admin -url $server_url -userconfigfile $ADMIN_CONFIG -userkeyfile $ADMIN_KEY GET -type JMSDestinationRuntime

  • Can't check the repair status

    Hi,
    My iPhone 5S died last Saturday, it just doen't turn on or it's able to charge the battery. I took it to the Madrid's Apple Store Sol where they check the unit and gave me a paper with the repair details (to change the unit basically)
    That was 5 days ago and it's impossible to check the status on the web, it says something like "the system cannot provide a status".
    - I've called the Apple Care support number with no luck as they cannot access the status either
    - I've tried to contact on several ocasion and for several minutes ( I have even learnt that you are disconnected after 20 minutes on the call queue) no one is picking up the calls at the Apple Store.
    - Finally I've visited the Store and they could only tell me (after waiting for an hour) that the new phone had not arrived (although when I opened the repair they told me that it should take no more than 2-3 days)
    Is there any way to know how long is going to take them and the current status?
    thanks!!
    Ruben

    hi
    the same thing happens to me!!!!i can't check my repair status neither!is there a maintenance thing going on or what?
    thx for answering
    sabrina

Maybe you are looking for