Text TEN to 150 for free 10GB data.

So, I've decided to give EE a go as their coverage is far better than my current provider who'm I've been with for many years.I've decided to try things on PAYG first, just to make sure it lives up to my expectations.With my new PAYG card, it advised me to Top up to get 10GB 'on us'....simple top up, then text TEN to 150!And thats it! Nothing happends.I get a reply 'We Couldn't recgnise your Response!' I've used my PAYG phone, Data, and Texts..but still nothing added to my account.I'm constantly seeing a clock counting down the time I've got left to claim this extra 10GB.. Any Ideas?

It will give you 100GB a month for free for next two months ☺

Similar Messages

  • How can i sms or text wid an ipad for free??

    how can i sms or text wid an ipad for free??

    Don't understand your question. What is sms and wid? Can you better explain what you want to do?
     Cheers, Tom

  • Charged $150 for "FREE Professional Installation"

    I just (as in today) signed up for the HD Preferred Plus XF Triple Play online which clearly states FREE Professional Installation. Fifteen minutes ago I got a confirmation email with a cost breakdown that included One-Time Installation Charges of $150. I called immediately and was told I would receive a credit for this amount, but I wanted to post here for posterity because I'll believe it when I see it. If you ordered and saw FREE installation, check your account and make sure you weren't charged. Will update this thread when I see (or don't see) the credit. 

    Hi joshrotenberg,
    John is correct on this. The one-time charge you're referring to is a Deposit. Package you signed up for is coming with a free install. 

  • Does the text TEN to 150 code still work? It's advertised but not working

    When I ordered my SIM card then it was mentioned in the stuff that came with, however when I've tried to do it then it hasn't worked. I topped up £10 to allow me to be eligible but I'm struggling to redeem this offer. Thanks

    Do you mean EP10 or TTP10 to 150 to buy packs?

  • Is there a way to upload text messages to pc for free

    I want to know if there is a way to upload text messages to my computer.

    Yes... try a search of the forums, google, or the "More Like This" section to the right.

  • Are there any voice to text programs out there for free i want to talk to my laptop and have it convert it to text and my quicktime isnt working

    just like the headline says

    No there arent and you have to be running 10.6.8 to upgrade to Mountain Lion (10.8.4). You would have to upgrade to upgrade to Snow Lepard (10.6) first then to Mountain Lion. It looks like Apple still sells Snow Lepard discs here:
    http://store.apple.com/us/product/MC573/mac-os-x-106-snow-leopard

  • Urgent clearing data in container for free text

    I HAVE A CONTAINER FOR FREE TEXT.
    I HAVE A CREATE BUTTON IN MY SCREEN EWHEN I PRESS CREATE IT ASKD FOR ID AND FREE TEXT THEN I SAVE  AND IT GETS SAVED IN A ZTALE TABLE.
    WHEN AFTER SAVING IT I GO TO INITIAL SCREEN AND PRESS CREATE AGAIN THEN IT ASKS FOR ID AND IN THE CONTAINER I SEE THE FPREVIOUS TEXT.
    CAN YOU GUYS LET ME KNOW AS TO WHAT I NEED TO DO.
    I TREID CLEARING AND REFRESHING MYTABLE WHICH I HAVE USED IN THE FOLLOWING CODE.
    pbo
    if editor is initial.
    CREATE OBJECT TEXTEDIT_CUSTOM_CONTAINER
    EXPORTING
    CONTAINER_NAME = 'TEXTEDITOR1'
    EXCEPTIONS
    CNTL_ERROR = 1
    CNTL_SYSTEM_ERROR = 2
    CREATE_ERROR = 3
    LIFETIME_ERROR = 4
    LIFETIME_DYNPRO_DYNPRO_LINK = 5.
    IF SY-SUBRC NE 0.
    add your handling
    ENDIF.
    CREATE OBJECT EDITOR
    EXPORTING
    PARENT = TEXTEDIT_CUSTOM_CONTAINER
    WORDWRAP_MODE = CL_GUI_TEXTEDIT=>WORDWRAP_AT_FIXED_POSITION
    WORDWRAP_TO_LINEBREAK_MODE = CL_GUI_TEXTEDIT=>FALSE
    EXCEPTIONS
    OTHERS = 1.
    refresh mytable.
    call METHOD editor->SET_TOOLBAR_MODE
    EXPORTING TOOLBAR_MODE = 0.
    *call METHOD editor->SET_ENABLE
    *EXPORTING ENABLE = ' '.
    CALL METHOD editor->set_readonly_mode
    EXPORTING
    readonly_mode = 1.
    ENDIF.
    CLEAR MYTABLE.
    FREE MYTABLE.
    endif.
    IF SY-SUBRC NE 0.
    CALL FUNCTION 'POPUP_TO_INFORM'
    EXPORTING
    TITEL = V_REPID "--> program name
    TXT2 = SPACE
    TXT1 = 'Error in flush'.
    ENDIF.
    tHANKS
    let me know
    swathi

    For example, this program works really well with saving long text using the SAVE_TEXT function.  Here you need to create the object/id in SE75.  For this program you enter the id on the right like 999999 and enter the text on the left, execute and the text is saved, now change the id to 999998 and hit enter, notice the text is blank, now enter 999999 again, notice the text for this id has come back,  this is because the program uses READ_TEXT to retrieve the text.
    report zrich_0001.
    data:
          dockingleft  type ref to cl_gui_docking_container,
          text_editor    type ref to cl_gui_textedit,
          repid type syrepid.
    data: begin of header.
            include structure thead.
    data: end of header.
    data: begin of lines occurs 0.
            include structure tline.
    data: end of lines.
    data: textlines type table of tline-tdline,
          wa_text type tline-tdline.
    data: xthead type thead.
    parameters: p_id(10) type c.
    at selection-screen.
      if p_id is initial.
        message e001(00) with 'Enter an ID'.
      endif.
    at selection-screen output.
      repid = sy-repid.
      if dockingleft is initial.
        create object dockingleft
                    exporting repid     = repid
                              dynnr     = sy-dynnr
                              side      = dockingleft->dock_at_left
                              extension = 300.
        create object text_editor
                    exporting
                         parent     = dockingleft.
      endif.
      if p_id <> space.
        xthead-tdobject = 'ZPT_DET'.
        xthead-tdid     = 'Z001'.
        xthead-tdname = p_id.
        clear lines. refresh lines.
        call function 'READ_TEXT'
          exporting
            id                            = xthead-tdid
            language                      = sy-langu
            name                          = xthead-tdname
            object                        = xthead-tdobject
          tables
            lines                         = lines
         exceptions
           id                            = 1
           language                      = 2
           name                          = 3
           not_found                     = 4
           object                        = 5
           reference_check               = 6
           wrong_access_to_archive       = 7
           others                        = 8.
        clear textlines.
        loop at lines.
          wa_text = lines-tdline.
          append wa_text to textlines.
        endloop.
      endif.
      call method text_editor->set_text_as_r3table
         exporting
               table              = textlines
         exceptions
               others             = 1.
    start-of-selection.
      call method text_editor->get_text_as_r3table
         importing
               table              = textlines
         exceptions
               others             = 1.
    * Set SAPscript Header
      clear header.
      header-tdname =  p_id .         "Name
      header-tdobject = 'ZPT_DET'.       "Object
      header-tdid = 'Z001'.              "Id
      header-tdspras = sy-langu.
    * Move text from container to function module table
      clear  lines.  refresh lines.
      loop at textlines into wa_text .
        lines-tdline = wa_text.
        append lines .
      endloop.
      call function 'SAVE_TEXT'
           exporting
                client   = sy-mandt
                header   = header
           tables
                lines    = lines
           exceptions
                id       = 1
                language = 2
                name     = 3
                object   = 4
                others   = 5.
    Yes, this is implemented using a selection screen, but the same principals apply and this can  be easily converted to a dynpro application.
    Regards,
    Rich Heilman

  • Can i use iphone to iphone for free international call and text?

    Can i use iphone to iphone for free international calls and text messages?

    If both iPhone users are on iMessage, texting will be free, though there may be data charges if you do not have Wi-Fi. You can use FaceTime Audio in iOS 7 and later to call people but regular phone calls still count against your phone plan.

  • Can I text for free with another iphone if we're both roaming in the USA?

    Two of us are going across the border into the US and each of us has the iPhone 4S and iPhone 5.  Can we text each other for free or do we have to sign up for a roaming package?

    Texting requires celluar. iMessage, which you could use since you both have iOS devices, COULD be free, if you were both on wifi, however if not, then you would need a data plan.

  • HT5538 My boss has an IPhone from a different carrier than my iPhone. I want to set up iMessage so we can text each other for free. Is that possible? If so, what do I do to my phone and/or hers to set it up?

    My boss has an IPhone from a different carrier than my iPhone. I want to set up iMessage so we can text each other for free. Is that possible? If so, what do I do to my phone and/or hers to set it up?

    Just turn on iMessage... Settings > Messsages > iMessage > On
    Note that iMessage uses data (very small amount) so you need a cellular data (3G/4G) or wifi connection for iMessagae to work.  Also, in the Messages app, iMessages are blue and standard text messages are green.

  • I've deleted all my emails and texts to make room for the 7.1 upgrade but my usage still says I'm using 641MB for mail and 364 MB for messages. Anyone know how to free up this memory? Thank you.

    I've deleted all my emails and texts to make room for the 7.1 upgrade but my usage still says I'm using 641MB for mail and 364 MB for messages. Anyone know how to free up this memory? I have a 16 GB model. Thank you.

    How much space is used by your Other? You may be able to reduce.
    How Do I Get Rid Of The “Other” Data Stored On My iPad Or iPhone?
    http://tinyurl.com/85w6xwn
    How to Remove “Other” Data from iPhone, iPad and iPod Touch
    http://www.igeeksblog.com/how-to-remove-other-data-from-iphone/
    With an iOS device, the “Other” space in iTunes is used to store things like documents, settings, caches, and a few other important items. If you sync lots of documents to apps like GoodReader, DropCopy, or anything else that reads external files, your storage use can skyrocket. With iOS 5/6/7, you can see exactly which applications are taking up the most space. Just head to Settings > General > Usage, and tap the button labeled Show All Apps. The storage section will show you the app and how much storage space it is taking up. Tap on the app name to get a description of the additional storage space being used by the app’s documents and data. You can remove the storage-hogging application and all of its data directly from this screen, or manually remove the data by opening the app. Some applications, especially those designed by Apple, will allow you to remove stored data by swiping from left to right on the item to reveal a Delete button.
    What is “Other” and What Can I Do About It?
    https://discussions.apple.com/docs/DOC-5142
    iPhone or iPad Ran Out of Storage Space? Here’s How to Make Space Available Quickly
    http://osxdaily.com/2012/06/02/iphone-ipad-ran-out-of-available-storage-space-ho w-to-fix-quick/
    6 Tips to Free Up Tons of Storage Space on iPad, iPhone, and iPod Touch
    http://osxdaily.com/2012/04/24/6-tips-free-up-storage-space-ipad-iphone-ipod-tou ch/
    Also,
    How to Clear Message/iMessage Cache on iPhone & iPad And Reclaim Lots of Free Space
    http://www.igeeksblog.com/how-to-clear-message-imessage-cache-on-iphone-ipad/
     Cheers, Tom

  • Can Flex data visualization sdk be used for free?

    I am not interested in the soure of the data visualization component as such,but I plan to use it(binary) just to create the swf files and deploy on a website. I know that Flex SDK is free. But can i use the data visualization component with the Flex SDK(command line) for free?
    I am actually able to use it and do not see any watermark. Just wanted to make sure its free use is permitted under the license.
    Thanks.

    Thanks for the link Paul.
    I am still a bit confused. Let me clarify a bit more.
    The 'Get the free Flex SDK' link in Flex Homepage (http://www.adobe.com/products/flex/) lists the following downloads:
    1. Adobe Flex 3.4 SDK
    2. Adobe Flex 3.4 Data Visualization Components for Flex Builder
    3. Adobe Flex 3.4 Automation Libraries for Flex Builder
    I downloaded 'Adobe Flex 3.4 SDK' and 'Adobe Flex 3.4 Data Visualization Components for Flex Builder' and unzipped the files, and merged the contents of the two unzipped folders(copied to appropriate folders).
    So now, using the command line mxmlc I can use the chart components and I do not see any watermark.
    And I do not intend to buy Flex Builder as I just use the command line compiler and a simple text editor. So do I still need to pay the cost of Flex Builder professional(for ethical reasons)? Or since I dont use Flex builder, am I permitted to use the data visualization components for free? Technically there is nothing blocking me to use it free, like the need of a license key etc.

  • If i buy itunes match will i be able to listen to my music without data or internet for free?

    i only have an 8 gb iphone 4 and i have over 1000 songs in my itunes library. if i subscribe itunes match will i be able to have all my songs on my phone and be able to listen to it all for free without using my data or internet?

    Hi,
    You will need to use your data or internet when you are out and about. You will have access to all your nusic in the cloud but you will need to pre-download music whilst you have an internet connection.
    Jim

  • GR based IV to be checked for free text requirement

    Hi All,
    Is there any option that if we create shopping carts for free text requirement,GR based IV should be checked automatically in purchase order created for that shopping cart.Or will this get replicated depending on vendor master we select.Please suggest.
    Thanks.

    Hi,
    As of standard, this setting in PO would come from Vendor master only. But in case you want this to happen for all free text items, then you can use the doc change badi as suggested by Masa. You should use the po change method to pass this indicator.
    Regards,
    Sanjeev

  • Purchasing group for free text SC

    Hi everyone,
    We have a requirement to change the purchasing group for free text & catalog SC's. We are using SRM 7.0. Normal procedure is to select the material from catalog, purchasing group is selected  & once it is approved a PO is created.
    But, now the requirement is that if a user is selecting a catalog material, then the selection of purchasing group should be restricted as per the business.
    And if the SC is being created from Free text, then the purchaser's selection should be restricted to very few options in drop down.
    Is it possible? I was thinking if the selection of purchasers could be restricted  using BADI: BBP_PGRP_ASSIGN_BADI or BBP_PGRP_FIND BADI. But, there is no option for differentiation based on SC created using Catalog & SC's created from free text.
    Can anyone please help me with this.
    Thanks & Regards,
    Bhakti

    Hi Everyone,
    Thanks for reply.
    @Muthu: I explored the tables, but the only difference I could find between the catalog & free text SC materails is that the product id is missing for free text SC. Based on this I am unsure if any BADI can be used. Kindly let me know, if the BADI's can be called on this criteria.
    @ Virendra: I doubt if that, that can be solution, since the product cataegory for free text cannot be fixed. It will depend on user requirement.
    Pls help me to define the purcahsing groups for free text SC's.
    Thanks & Regards,
    Bhakti

Maybe you are looking for

  • InDesign Crashing When Exporting a Large Book

    I have a large InDesign book (159 documents) that recently started crashing when I export the whole thing. The book was created years ago, and I can't figure out what would cause this issue all of a sudden. Originally, I thought this was due to the l

  • Right time to buy a Macbook?

    Will the new model be released at or before september? ps does anyone know if since I'm in highschool can I get the student discount? also i wanted to ask can I use the this case http://store.apple.com/us/product/HF322ZM/A/speck-13-smartshell-case-fo

  • CLM How to add search-help for extension field(New Company Field) in MA.

    Hi all,      Based on demand,I need to extend a new field(Company) in Master Agreement. But I do not know how to add search-help for this field,just like User Accont page. Anyone can help me ?thank you very muck. Regards, JackyCheng

  • Finding objects related to a report.

    Hi, If I want to delete a report from another report I'll have to check for related objects such as screens and includes, right? My questions are: - which other objects are that I need to delete besides the screens and includes; - in which tables thi

  • Text variable one frame behind

    I have a dynamic textbox (txtBox) which contains a global variable jobTitle from frame 1 to 20. I have an Actionscript on each frame saying _global.jobTitle="something"; I also have a button which switches on and off the txtBox. My problem is that th