While waiting for my prize... :(

Hello

This is my first time here post.

End of June 2015, I received an email from the Xperia, lobby team that I was a winner 1 Xperia M4 Aqua, and it will be delivered to me shortly.

Last week, I sent an email to the host team and asked if the price has already been delivered.

Almost immediately, my price response "is currently under treatment with Sony, and they will let me know once my prize is on its way to me".

My question is, why it takes so long to ship?  This is normal?

(Sorry if my English is not good. It is not my native language)

@Antonis86

Congratulations on the victory, but you should contact Sony directly, it is a forum based users

http://support.sonymobile.com/global-en/contactus/

Tags: Sony Software

Similar Questions

  • A timeout occurred while waiting for the host controller EHCI interrupt on answer Async ahead Bell.

    Whenever I put my adapter wireless netgear n150 under heavy load (download of World of Warcraft for example), it will go down to connection and until I restart the computer the adapter usb port is useless.  I dug into the event viewer and found that a timeout occurred while waiting for the EHCI host controller interrupt on the asynchronous response advance doorbell, source usbehci.  This seems to have been a problem with windows 8 I found other threads referencing but I can say that they are pre-release and some actually work solutions have been validated.  I already assured that all drivers, firmware and chipsets are up-to-date and compatible.  ANYONE please help?

    Quick fix I found:

    -try falling back to WiFi G rather than use N
    In my case, it works... is no longer a fall. But not the same bandwidth...
  • Procedure crashes and closes with ORA-04021: timeout period exceeded while waiting for

    Hello

    I am facing a problem in which calling a procedure in a package hangs in "EXECUTE IMMEDIATE" and after a long time out with ORA-04021: timeout period exceeded while waiting.
    I faced the problem in an existing package. Then, I tried a little test and could reproduce the problem.
    Test script is:
    kallo:DZHLHFC1> cat test.sql
    
    CREATE OR REPLACE PACKAGE BODY timeout_test AS
        PROCEDURE execute_immediate( p_cmd VARCHAR2 );
    
        PROCEDURE execute_immediate( p_cmd VARCHAR2 ) IS
        BEGIN
            EXECUTE IMMEDIATE p_cmd;
        EXCEPTION
            WHEN OTHERS THEN
                dbms_output.put_line( 'Command failed: '||p_cmd );
                dbms_output.put_line( 'SQL error message is: ' || SQLERRM );
        END;
    
        PROCEDURE revoke_priv(p_object_name VARCHAR2) IS
            l_cmd VARCHAR2(1000);
        BEGIN
            l_cmd := 'REVOKE EXECUTE ON "TIMEOUT_TEST" FROM "CSG_SUPP_LHOWNER_WRITE"';
            execute_immediate(l_cmd);
        END;
    
    END timeout_test;
    /
    show err
    TIMING START
    REVOKE EXECUTE ON "TIMEOUT_TEST" FROM "CSG_SUPP_LHOWNER_WRITE"; -- Check if command is syntactically correct
    TIMING SHOW
    
    set serverout on size 100000
    TIMING SHOW
    exec timeout_test.revoke_priv('TIMEOUT_TEST');
    TIMING SHOW
    When it is running, I get after release:
    Package created.
    
    Package body created.
    
    REVOKE EXECUTE ON timeout_test FROM "CSG_SUPP_LHOWNER_WRITE"
    *
    ERROR at line 1:
    ORA-01927: cannot REVOKE privileges you did not grant
    
    Elapsed: 00:00:00.01
    Elapsed: 00:00:00.02
    Command failed: REVOKE EXECUTE ON "TIMEOUT_TEST" FROM "CSG_SUPP_LHOWNER_WRITE"
    SQL error message is: ORA-04021: timeout occurred while waiting to lock object
    LHOWNER.TIMEOUT_TEST
    
    PL/SQL procedure successfully completed.
    
    Elapsed: 00:15:03.03
    I did some analysis and conclusions next concluded that it hangs in "EXECUTE IMMEDIATE".
    1 TOAD "browser session" shows the current statement for this session as a course of execution with "EXECUTE IMMEDIATE"
    2. no lock appear in "browser"->"tab locks session."
    3. If I comment "EXECUTE IMMEDIATE", it comes quickly.

    Is - this problem with a programming or an oracle bug?

    Thank you and best regards,
    Hey

    Hello

    I think I found the reason.
    I'm changing the grants on the same package (TIMEOUT_TEST) which I am running.
    If I change object_name in order that it works.

    Kind regards
    Hey

  • Download products while waiting for approval of education

    Hello Im new here.

    My parents purchased photoshop elements 14 & first elements 14 for me.  I submitted my form to obtain approval for use of education.  I was wondering if I can download applications before their approval so that he's ready to go or what I should expect.

    Hi HeyRen,

    You can certainly go ahead and download the trial of Photoshop elements 14 and first elements 14 from the links below:

    Download Adobe Premiere Elements 14, 10, 11, 12, 13

    Download Photoshop Elements | 10, 12, 14, 11, 13

    Once you get the serial numbers for these products, Veuileez check out the following link to activate: Learn how to enable or disable Adobe applications

    Click her for more information on How to download, install and activate Adobe applications

    We invite you to update this discussion in the case where you need help

  • While you wait for spare camera for 40 days. My k910 has speaker failure. : ()

    What a piece of crap... My k910 start failure involved while I'm waiting for spare camera... Call speaker is ok, but the media here totally dead speaker... It's my problemfull phone I've ever had... My past a706 and my wife s920 are problemless...

    Fortunately after a tried to push both the up and down button of the active again speaker volume...

  • Trying to update a "Loading" label... "while you wait for a thread

    Hello, I am new to Java and BlackBerry, so it is a double learning curve for me.  I tried searching for an answer and we have tried a number of things, but I do always get the label that I update to display.  Any help would be greatly appreciated.  I have a main screen with a label field.  I start a thread, and that this thread works I loop and try to update the label as in the httpdemo example.  I do this in refreshMenuItem.  The code looks like she change the label, but the screen does not appear to refresh and show the update label.  Any advice?  Thank you.

    public class testLoadingMainScreen extends MainScreen
    {
    
       private boolean isLoading;
       private LabelField statuslabel;
    
       public testLoadingMainScreen()
       {
    
          LabelField title = new LabelField("Loading Demo", LabelField.USE_ALL_WIDTH);
          setTitle(title);
    
          statuslabel = new LabelField("Waiting...", LabelField.USE_ALL_WIDTH);
          add(statuslabel);
       }
    
       Public void requestSucceeded(final String message)
       {
          isLoading = false;
          updateContent(message);
       }
    
       public void requestFailed(final String message)
       {
          isLoading = false;
          updateContent(message);
       }
    
       private MenuItem _refreshMenuItem = new MenuItem("Refresh List" , 10, 10)
       {
          public void run() {
    
             //setup the status messages.
             String[] statusMsg = new String[6];
             StringBuffer status = new StringBuffer("Loading");
             statusMsg[0] = status.toString();
             for ( int j = 1; j < 6; ++j)
             {
                statusMsg[j] = status.append(" .").toString();
             }
    
             updateContent("Starting...");
    
             isLoading = true;
    
             //start the thread
             try
             {
                  testLoadingThread dispatcher = new testLoadingThread(testLoadingMainScreen.this);
                  dispatcher.start();
             }
             catch (Exception e)
             {
                  System.out.println(e.toString());
             }
    
             //while thread is working, update status message
             int i = 0;
             while ( isLoading )
             {
                updateContent(statusMsg[++i%6]);
                try
                {
                   Thread.sleep(500); // Wait for a bit.
                }
                catch (InterruptedException e)
                {
                   System.err.println(e.toString());
                }
             }
    
          }
       };
    
       protected void makeMenu(Menu menu, int instance)
       {
          menu.add(_refreshMenuItem);
          menu.addSeparator();
          super.makeMenu(menu, instance);
       }
    
       private void updateContent(final String text)
       { 
    
          //synchronized(UiApplication.getEventLock()) {
          //    testLoadingMainScreen.this.statuslabel.setText(text);
          //    testLoadingMainScreen.this.invalidate();
          //}
    
          UiApplication.getUiApplication().invokeLater (new Runnable() {
             public void run()
             {
                testLoadingMainScreen.this.statuslabel.setText(text);
                testLoadingMainScreen.this.invalidate();
             }
          });
       }
    
    }//end testUImainscreen class
    
    public class testLoadingThread extends Thread {
    
        testLoadingMainScreen screen;
    
        public testLoadingThread(testLoadingMainScreen screen) {
            this.screen = screen;
            }
    
        public void run() {
    
            //put thread to sleep so I can test informative labels
            try {
                Thread.sleep(5000);
            } catch (Exception e) {
                screen.requestFailed(e.toString());
            }
    
            screen.requestSucceeded("Sucess");
    
        }//end run
    
    }//end testLoadingThread class
    

    MenuItems run in the UI thread... don't sleep() in them.  I guess that's causing your problem of update to block the UI thread.  Use rather a reason for recall with a background thread making sleep if you need regular notifications to the user interface.

    ~ NN

    Edit: On coffee/reflection, recall patterns may be overkill here... you can simply use a Timer/TimerTask.

  • How to wait for HTML when ADF Application sends a 'work' screen while Looking Up data space reserved

    Hello world

    I am trying to write test scripts in Openscript for an ADF application that uses Business Intelligence and support partial-Page rendering.  While it generates data, it sends HTML says his 'work', and then re - makes the area after the SQL call to the database ends.  The script passes after receiving the 'work' page and errors because it cannot find the variables that should have been created.

    How can I make the script wait for the actual page?  I looked through the documentation and looked online but I couldn't find anything relevant (or do not know what I'm looking for).

    Any help appreciated.

    Thank you

    Roy

    OK - problem solved.

    OBIEE sends the page indicating that it is looking up until the actual data returned.  There is an option on the Weblogic OBIEE server in the {WEBLOGIC_HOME}/instances/bi_instance/config/OracleBIPresentationServicesComponent/coreapplication_obips1/instanceconfig.xml file that can be defined (for test/debugging) to delay sending the screen holder place 'research'.}

    This should be added to the file XML between the tags.

    600

    True

    The value indicates how many seconds the OBIEE server waits until it sends to the screen "search.

    I hope that this information will prevent hair pulling episodes by others.

    Roy

  • While trying to see Planner installation and operation, the test in local mode, the EXECUTION fails with message "Waiting for the number of virtual machines to register.

    While trying to see installation and operation Planner, the test in local mode with only 1 VM the EXECUTION fails with message "Waiting for the number of virtual machines to register.

    There may be a lot of problems in the desktop VM. Agent service see Planner is not running in VM Office. You can check in the event viewer to see what kind of error occurs. The most usual error missing file IP.txt c; drive or harness IP in the IP.txt produce if there is.

  • get the structure of the event inside the while loop to wait for event occurs before the execution

    Hello

    I have a small problem, when I raise an event using a value change button, which works very well.  The problem is that the VI does not wait for me raise an event and instead runs the same event again, even if I have not pressed the button to start again.  The mechanical action of the button switch is released is.

    I was wondering how you get the structure of the event to wait for a user event, after that he executed the first time.

    James.Morris wrote:

    There is no reason that the event should be raised twice as much that the only way that it fires in your code is by the user by clicking on 'Hall measure only'.

    Oh yes, there is, and I deserve a kudo for this one.  Mechanical action on the button is set on the switch until published, so click to generate an event, on the bottom and on the square, attached is an example.

    My boy has my students hate this question, and to be honest, I hated it.  When never would you do that intentionally?  Honestly?  Anyway to change the button back to normal (as default latch when released) and move the terminal button in the structure of the event where it is managed and it will work as usual.

  • Can I leave my Admin user account, while I'm waiting for a response in this forum? I would return to my user account, so I can read my email, etc. ?

    I'm waiting for a response to my previous post, it was more than an hour, so I would like to leave my Admin and go to my user to read my Email.

    See: http://social.answers.microsoft.com/Forums/en-US/help

    In particular:
    Notifications
    How can I be informed about new messages in the Forums?
    What are alerts?
    How can I sign up for alerts?
    How can I unsubscribe alerts?
    How to manage the settings of my alerts?
    How to display all threads to which I subscribe?
    Why is my Forum notification missing?
    What is the RSS icon next to the thread object or the name of the Forum?
    What happens if I say "Doing too much" for also needing an answer to a question?

    Note that it may take several hours to ensure you receive a response to your question. TaurArian [MVP] 2005-2010 - Update Services

  • Error: "Waiting for programs fill" while trying to add or remove programs

    Original title: cannot complete programs

    When I open Add / Remove programs in the Control Panel, the statement "waiting for programs fill" came and I waited and waited, nothing else has happened then - this hanging window. I tried the DIFFICULTY inside of MS DIFFICULTY, it did not help. Help, please.

    Hi magjoseki,
     
    Follow the steps in the section "Let fix me it myself" article and check if it helps.
     

    Important: This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base: 

    How to back up and restore the registry in Windows

  • Error when parsing the file ' value of the 'src' attribute is not valid; must be a URI'.  ERROR (RSC-005) to "Hetgeheimfietsen.epub/OEBPS/toc.xhtml" (line 10, col 10): error while parsing the file ' "ol" element not allowed here; wait for the end-tag of t

    The members of the Forum kan help you

    Validation by using version 3.0.1 EPUB rules.

    ()https://github.com/IDPF/epubcheck( )

    December 9, 2015 15:27:33 THIS

    ---------------------------------------------------

    WARNING (OPF-007) to 'Hetgeheimfietsen.epub/OEBPS/content.opf' (line 2, column 227):

    Re-declaration of prefix reserved "rendition."

    ERROR (RSC-005) to "Hetgeheimfietsen.epub/OEBPS/toc.xhtml" (line 10, col 10):

    Error when parsing the file ' "ol" element not allowed here; waiting for the end-tag of the element or element "li" '.

    WARNING (CSS-007) to "Hetgeheimfietsen.epub/OEBPS/css/idGeneratedStyles_0.css" (line 60, col 2):

    Police made OEBPS/font/CambriaMath.ttc refers to fonts not standard type application/x-police-FTT.

    WARNING (PKG-012) to "Hetgeheimfietsen.epub/OEBPS/De_Alpe_d'Huez-1.xhtml":

    File name contains following non ascii characters: '. You want to change the name of the file.

    WARNING (PKG-012) to "Hetgeheimfietsen.epub/OEBPS/De_Alpe_d'Huez-2.xhtml":

    File name contains following non ascii characters: '. You want to change the name of the file.

    Check the finish with warnings or errors!

    In the file Toc delete the second "ol", as well as closing like Epubcheck duplicate codes

        the one after the other (delete the other)

    1. "Waiting for in time (RT PXI target) real answer" error when the program is waiting interruptions

      Hello

      I developed an application to detect interruptions generated by an electronic card and act accordingly. The program was developed in labview, but she calls a dll; created with labwindows. The dll is scheduled to open the visa communication, select the events and install the interrupt handler and when an interruption is detected, it reads the value of the different registers of the map and returns to labview to view.

      The problem is that when the program expects an interruption, a prompt appears with the message "Waiting for real-time (RT PXI target) real answer" and the only option I have is to click on the button to disconnect the pxi or just wait. If I wait and I generate an interrupt, the prompt disappears and the application view data as it was planned.

      To wait for the following code the interruption has been programmed into the function:

      While (flag == 0)

      {

      Sleep (1000);

      }

      When an interruption occurs, the value of flag set to 1 and function continues without any problem. I am not really sure, but here is probably the problem and it probably isn't the best way to wait for a break because the sleep function suspends the thread to the configured time, but at least the load calculation in the PXI is between 0 and 1%. I was wondering if anyone knows how to wait for a break without 'lost' communication with PXI and if there is a better way to do it.

      Any response will be welcome and thank you for them,

      Jaime

      Hey there.

      You see problems with connectivity it's because the thread by DEFAULT CallLibrary nodes running in is the UI (UI) thread - UI thread manages also the important things like, say, communications (especially all the connections for the VI server) and other things that you could run all the time.  A CallLibraryNode is not, by default, intended to be used to execute code that runs for a long period of time.  If you want to do this, you assign the execution of the CallLibrary node to run in the context of a LabVIEW run-time engine thread (by selecting to make it work "in any thread") and not the UI thread.  This can be done through the properties of the CallLibraryNode.  By selecting "run in any thread" the call DLL will be generally in the context of the thread running in the run LabVIEW, which is usually what is meant when even.  The VI CallLibraryNode color change of Orange (UI) to blue (LabVIEW thread) so that you can quickly tell what context the appeal will be in.

      The reason the interface thread user is the default thread is because most often DLLS calls need to be serialized (because of functions is not not thread-safe) and so it serves to protect the integrity of the system.  However, if you know your threads are thread-safe, or you will use these threads for a while, it is best to program the CallLibraryNode to use a Thread of LabVIEW execution rather than the UI thread.

      For more information on this review on these pages:

      https://decibel.NI.com/content/docs/doc-9069

      http://zone.NI.com/reference/en-XX/help/371361J-01/lvexcodeconcepts/configuring_the_clf_node/

      DLL' happy ing.

      -Danny

    2. Looking for a Boolean function similar to or, but do not wait for the second entry in case he gets a 'real' a single entry

      my program works in 2 processes in parallel inside a while loop and should stop when one of them ends.

      How can I do? Uses the function 'Or' wire loop the stop condition will not do the job, waiting for the two processes to give their comments before running.

      What I really need is a function that waits until she gets a 'true' through one of its entry and then executes without waiting than the other.

      Y at - it such an option?

      If not, does anyone have an idea how to achieve what I have described here?

      Thanks in advance!

      What you need is a "not synchronous or", i.e. "do something if Item 1 becomes real GOLD point 2 becomes true.  One way that comes to mind to do is with a design of producer/consumer model (event), where the consumer is a State Machine with a shutdown state.  Get 1 point to trigger an event (perhaps using a user event or property Value Change (follow the signs)) when it turns out true, and have it send to the consumer the Stop State.  Download point 2, to do the same thing.  Now one of them becoming true will cause the shutdown state be registered (without taking care of doing the other element), in other words, that becomes a real, (consumer) loop stops.

      Bob Schor

    3. stop a loop without waiting for its next iteration

      I wonder if there is a good way, or still anyway to stop a while loop without waiting for its next iteration. Lets say you have a timer in the loop so he iterates once evey 10 seconds, and then you have to wait 10 seconds for him to stop after you press a stop button that could be a problem.

      Thank you!


    Maybe you are looking for