Re: How to fill out order status??

I just discovered the inability to view any current order or past purchases that were made in store thru the  "MyBestBuy" user interface.  I was a bit shocked that there is no connection to view the list of past purchases, model information, prices, and other details online.   
This seems about the most idiotic oversight for a technology sales company to have a complete disconnect between online orders and purchases made in the store.   As a primary 'in store' buyer, the entire MyBestBuy is rendered nearly worthless to me.  
I have many purchases over the last 18 months, I am guessing a half dozen flatscreens, a few notebooks etc.  Of course, I don't know the exact number since there is not method to look up these purchase online!!   

Hi jimboger,
Are you referring to when you login to BestBuy.com or MyBestBuy.com?  You should be able to see your purchase history for the past two years if you login to MyBestBuy.com and click on "Points & Purchases" under the "My Account" tab at the top of the page.  If an in-store purchase was perhaps not attached to your My Best Buy™ account while at the register, then it may not appear; however, we could possibly report the purchase as "missing."
Are there any recent purchases that seem to be missing from your "Points & Purchases" history on MyBestBuy.com?  If so, please feel free to send those details to me in a private message and I will see what I can do to help.  A private message can be sent by clicking on the blue button within my signature.  I would just need the purchase details or the pin number off the actual receipt.
Thank you for posting to the forum!
Derek|Social Media Specialist | Best Buy® Corporate
 Private Message

Similar Messages

  • How to give out a status message indicating the number of fields selected

    Hi experts,
    I hope some one might have done what I'm trying to do. Could some one please show me how to give out a status message saying for example how many fields have been give out(or selected) in the t_ouput in an alv grid? Is there a FM that could do this? I mean like giving the FM the t_output and it will show a status message with the number of fields selected?
    Thank you for your input.
    Nadin
    Message was edited by:
            nadin ram

    Hi Ram,
    Write this code,
    Message 'Select Only Ten Fields' type 'I'.
    It displays The Message in Message Box.
    Or if you want the Error Message means,
    Message 'Select Only Ten Fields' type 'E'.
    Thanks,
    reward If Helpful.

  • How to update Sales Order status using  BAPI_SALESORDER_CHANGE

    Hi,
    I want to update Sales Order status using BAPI_SALESORDER_CHANGE, this BAPI is called from middle ware, but there is no parameter to pass the status value to this function, please help me how to update sales order status using BAPI only.
    Thanks
    RK

    Hi,
    Can u give me details of what status u would like to update in sales order.
    If we are able to update the status from VA02, Then BAPI will assist for the same.
    Regards.

  • How to track Service Order Status Change (IW31/IW32).

    I have a requirement to send the customer an Email if the status of service order has been changed say from unconfirmed to confirmed. So i have to find out whether the status of the service order has been changed on the current date.
    As per my understanding, Changes corresponding to any object are stored in tables CDHDR and CDPOS if the change document creation is enabled for that object. But in case of service order status, the changes are not being captured in these tables because change document creation is not enabled for the data element (J_STONR) of service order status.
    Anyone having any knowledge about it please help me.
    Edited by: Gagan Garg on Feb 23, 2009 6:52 AM

    Hi,
    Thanks for your reply. I have found out the way to track the service order changes. Function module STATUS_READ_MULTI can be used for the same. Pass service order number in OBJNR_TAB and the change document for status is returned in JCDS_TAB

  • How to fill out POST HTML forms from my Java Application?

    Hi -
    I am writing a little Java GUI program that will allow a user to fill out data from the GUI and then submit that data. When they submit the data (two text fields) I want to take the two text fields and submit them via the POST form method of a HTML document over the web.
    Here is what I got so far:
    host = new URL("http", "<my_address>", web port, "/query.html");
                InputStream in = host.openStream();
                BufferedInputStream bufIn = new BufferedInputStream(in);
                for (;;)
                    int data = bufIn.read();
                    // Check for end of file
                    if (data == -1)
                        break;
                    else
                        System.out.print ( (char) data);
                }What that code does is makes a URL, opens a stream, and reads the HTML source of the file at the specified URL. There is a form that submits data via the POST method, and I would like to know how to write data to specific forms and specific input types of that form.
    Then, I'd like to be able to read the response I get after submitting the form.
    Is this possible?
    Thanks,

    Here is how one of my e-books go about Posting
    I tryied in one of my projects and it works ok
    (Tricks of the Java Programming Gurus)
    There's another reason you may want to manipulate a URLConnection object directly: You may want to post data to a URL, rather than just fetching a document. Web browsers do this with data from online forms, and your applets might use the same mechanism to return data to the server after giving the user a chance to supply information.
    As of this writing, posting is only supported to HTTP URLs. This interface will likely be enhanced in the future-the HTTP protocol supports two ways of sending data to a URL ("post" and "put"), while FTP, for example, supports only one. Currently, the Java library sidesteps the issue, supporting just one method ("post"). Eventually, some mechanism will be needed to enable applets to exert more control over how URLConnection objects are used for output.
    To prepare a URL for output, you first create the URL object just as you would if you were retrieving a document. Then, after gaining access to the URLConnection object, you indicate that you intend to use the connection for output using the setDoOutput method:
    URL gather = new URL("http://www.foo.com/cgi-bin/gather.cgi");
    URLConnection c = gather.openConnection();
    c.setDoOutput(true); Once you finish the preparation, you can get the output stream for the connection, write your data to it, and you're done:
    DataOutputStream out = new DataOutputStream(c.getOutputStream());
    out.writeBytes("name=Bloggs%2C+Joe+David&favoritecolor=blue");
    out.close();
    //MY COMMENT
    //This part can be improved using the URLEncoder
    //******************************************************You might be wondering why the data in the example looks so ugly. That's a good question, and the answer has to do with the limitation mentioned previously: Using URL objects for output is only supported for the HTTP protocol. To be more accurate, version 1.0 of the Java library really only supports output-mode URL objects for posting forms data using HTTP.
    For mostly historical reasons, HTTP forms data is returned to the server in an encoded format, where spaces are changed to plus signs (+), line delimiters to ampersands (&), and various other "special" characters are changed to three-letter escape sequences. The original data for the previous example, before encoding, was the following:
    name=Bloggs, Joe David
    favoritecolor=blue If you know enough about HTTP that you are curious about the details of what actually gets sent to the HTTP server, here's a transcript of what might be sent to www.foo.com if the example code listed previously were compiled into an application and executed:
    POST /cgi-bin/gather.cgi HTTP/1.0
    User-Agent: Java1.0
    Referer: http://www.foo.com/cgi-bin/gather.cgi
    Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2
    Content-type: application/x-www-form-urlencoded
    Content-length: 43name=Bloggs%2C+Joe+David&favoritecolor=blue
    Java takes care of building and sending all those protocol headers for you, including the Content-length header, which it calculates automatically. The reason you currently can send only forms data is that the Java library assumes that's all you will want to send. When you use an HTTP URL object for output, the Java library always labels the data you send as encoded form data.
    Once you send the forms data, how do you read the resulting output from the server? The URLConnection class is designed so that you can use an instance for both output and input. It defaults to input-only, and if you turn on output mode without explicitly setting input mode as well, input mode is turned off. If you do both explicitly, however, you can both read and write using a URLConnection:
    c.setDoOutput(true);
    c.setDoInput(true); The only unfortunate thing is that, although URLConnection was designed to make such things possible, version 1.0 of the Java library doesn't support them properly. As of this writing, a bug in the library prevents you from using a single HTTP URLConnection for both input and output.
    //MY COMMENTS
    When you doing URL encoding
    you should not encode it as one string becouse then it will encode the '=' signes and '&' signes also
    you should encode all the field names and values seperatly and then join them using '&'s and '='s
    Ex:-
    public static void addField(StringBuffer sb,String name, String value){
       if (sb.length()>0){
          sb.append("&");
       sb.append(URLEncoder.encode(name,"UTF-8"));
       sb.append("=");
       sb.append(URLEncoder.encode(value,"UTF-8"));
    }

  • How to find out Tomcat status

    hi all,.
    how to find out the tomcat status in windows? linux also helpful ..i want to know whether the tomcat is running or stopped....?

    if it is tomcat 5+, tomcat is most likely started as a service (At least under windows 2000 and higher). So go to control panel -> administrative tools -> services and you can check the status there.

  • How to fill out metadata presets on import panel?

    I am an amateur photographer and see no need for copyrighting any photos at the moment(legally) as i do not submit any photos for publishing etc. Do i need to fill out the copyright section..  And what other sections do i need to fill out  under basic info etc.?  Thanks!!

    If the form was properly made, including all the necessary permisions, then it can be copied, saved and printed as every other unprotected file.

  • How to fill out form fields in Adobe Reader

    I was set a PDF, from my employer, but am unable to fill out form field, and sign it using Adobe Reader. I have an I Mac, with the latest OS, and a free version of Adobe Reader.

    Make sure you have the very latest version of Reader (XI), by going here: Adobe - Adobe Reader download - All versions
    If you still can't fill it in, maybe it doesn't actually have form fields in it. You can then use the commenting tools to add text to the file.

  • How to fill out form using adobe?

    I downloaded adobe to fil out the form but i cant still open it.

    You either need to purchase Adobe Acrobat Pro, or go to a place such as http://www.pdfescape.com/ to fill out the form.  There is an edit functionality in Preview application, but that doesn't always fill out all types of forms.

  • How to fill out multiples of the same form without having to input e-mail every time?

    I am making a almost check list for my boss while he inspects die cast machines. He would also like to use the form so clients can fill the form out themselves and send them to us. Problem is if my boss is inspecting 10 machines it doesn't make sense if he he has to input his e-mail in the e-mail tab everytime to know that he filled one out on my end.

    Hi,
    You could use a selection field instead, so the user won't need to type the email address each time.  For example,
    https://adobeformscentral.com/?f=oFQeHv8LulqFPP0b36Zq6A
    Hope this help.
    Perry

  • How to change Work order status ?

    Hi,
    I am using an ABAP program to change the user status of a work order to "CLOP" , This is like IW32 , Here Which function module I can use to do this ?
    Thank you for your help.
    Thanks

    Hi,
    You can use the FM 'STATUS_CHANGE_EXTERN' for updating the user status. and 'STATUS_CHANGE_INTERN for updating the system status.
    Hope this solves your problem.
    Regards,
    Hari

  • How to fill out a form such as a IRS form

    For an example, lets say you take the 1040 form from the IRS, the user enters input for the form in the console or gui and the input is placed in the correct places on the IRS form. You can't make your own form, it has to be the official IRS form. So for example, when the user inputs first name and last name and social security #, it would be placed in the correct spots on the actual form and then if you print out the form or view it, you will see the input. I have never done this before, How can this be done? Thanks alot for your help

    Theoretically it is a simple matter. Practically a hair raising experience. However, the point of the matter is that while printing your formating must be perfectly aligned. That apart, you must also be cautious of "printer specific" vaguries. java.awt and java.awt.print packages have many classes for the purpose - you can also go for third party printing packages.
    Ironluca

  • How to fill out and submit a web form using LabVIEW

    Almighty Forum,
    This question will require knowledge not only of LabVIEW, but also of HTML, JavaScripting, and possibly more.  I don't know about you, but I have an on-line account for pretty much everything: Bank, Credit Card, Savings, ETrade, 401K, Roth IRA, etc.  About once a day I want to go and check on everything (because I'm an anal engineer), but it takes so freaking long to navigate and login to each site.  Even after favoriting all the links and using cookies to save my "username", I still have to type in my password, hit enter, and wait for each site.  This takes time, time is money, and money is why I'm doing this in the first place; so, I need a better solution.  And since I stand by LabVIEW, I want a LabVIEW solution. 
    The solution in my head is something like this.  I have one front panel with an embedded IE browser (in an ActiveX container).  On the side of the browser I have my "favorite" toolbar.  When I click on a button in the toolbar, it takes me to the site and automatically logs me in.  Simple.  Now once that is working I could make a single app with no browser interface that simply went out and queried all my sites for the important values and displayed them on the front panel.  But not to get ahead of myself, I'll stick with my first goal for now.  Baby steps.
    So here is what I have now.  I can load www.bankofamerica.com into my browser and automatically enter my "online ID" and "passcode".  I just can't seem to figure out how to submit the form.  I realize that I could just simulate a mouse click on the coordinates of the Sign In button, but that would not be nearly elegant enough for me to have pride in this application. 
    If you run the VI that I'm posting, and click Submit Info, you are taken to a error page saying something along the lines of "We're temporarily unable to process this request.  Please try again."  Now this would probably make sense with the "dummy" ID and passcode that is being used in this VI, but I get the same thing when I use my real information.  I'm beginning to think that this is something BOA has done to prevent people from logging in programmatically.  That would probably make sense to deter potential hackers.
    There's got to be a way...  can you help?  This might take some time, but think how it could help streamline you in the long-run
    PS:  I down-converted the VI to 7.0 format for anybody stuck in 2003
    Thanks,
    Travis H.
    Travis H.
    LabVIEW R&D
    National Instruments
    Attachments:
    Bank of America Login - test.vi ‏179 KB

    Otman wrote:
    Simply stated, you want to hit some button on your app and instantly see all your accounts no matter where from, is that correct?
    Hi Otman,
    Actually, my first goal is to be able to hit a single button that automatically logs into a single account.  For example, when Bank of America Login - test.vi (attached above) is run, it should automatically:
    1) Navigate to www.bankofamerica.com
    2) Programmatically enter the "Online ID" and "Passcode"
    3) Submit the form and log in
    Its step 3 that I'm having trouble with.  Again, see the VI attached to my first post for a good example of what I'm talking about.
    Thanks,
    Message Edited by Travis H. on 11-16-2005 10:27 PM
    Travis H.
    LabVIEW R&D
    National Instruments

  • How to fill out an applicationi have downloaded

    I have downloaded an application and when I click on line to start filling it out it highlights line but will not tyoe

    Make sure you have the very latest version of Reader (XI), by going here: Adobe - Adobe Reader download - All versions
    If you still can't fill it in, maybe it doesn't actually have form fields in it. You can then use the commenting tools to add text to the file.

  • How to find out application status on a server?

    Hi,
    How can i find whether the application is running or not on specific system and port in core java?
    //Gupta.

    By using the JDK's jConsole tool. YOu can connect to any JVM and display all the threads, memory consumption, etc. Just inspect the running threads and show if something blocks.

Maybe you are looking for

  • Easy to install Lion with BootCamp + Win 8 + NTFS partition for data?

    Hey, I have a MacBook Pro (2011) currently on OS X 10.6.8, but I bought Lion 10.7 and want to use that. Here's what I want to do: * install Lion (fresh, not upgrade) * install BootCamp * install Win 8 (DevEd) (for games and some other apps) And here

  • Importing open source jar files

    Hi I have written a program, a Java application (Prog 1), which uses some opensource jar files and it runs fine. Now I am trying to create an applet (another program in same project) which will show the output from Prog 1 on a webpage. But when I try

  • I need to obtain the size of file before the send to server

    Hello, I need to obtain the size in bytes the a internal table before the send to server, I use the DESCRIBE sentence but is not allowed me to obtain this value, that sentence I need to use. Thanks in advance, DL

  • Grouping fields of the internal table

    hi all, i ' m using an internal table, and y need to group fields like the following example: what i have: werks arbpl         aufnr ca01  ka mecha   1 ca01  ka mecha   1 ca01  ka li           1 ca01  ka li           1 what i need: werks  arbpl      

  • HT202724 Is there a way to keep group messages private?

    Recently, I was surprised when someone that I was in a group iMessage with added new members to a chat. This felt like a breech of privacy. Is there a way to keep group iMessages private? Thanks!