Iphone 6 3 UK please explain how to use internet while not using wifi

when i bought my iphone 6 i placed my sim in to my phone from my previous blackberry. i have credit but no plan as im on pay as you go. despite not having a plan i still have internet when i turn mobile data on when im outside my house. it doesnt work well so can anyone explain how this works if there taking money from my credit and the best plan for me internet wise thanks

How do I ask a question on the forums?
SQL and PL/SQL FAQ
interesting code.
so what exactly is your problem?

Similar Messages

  • Please Explain how to use extensions..

    We are using Agile D2R PIP, we do have some cutomizations. to enable the Extensions, we need change the following extensions to True.
    <Property name="ABCSEXTENSION.PREPROCESSABM">false</Property>
    <Property name="ABCSEXTENSION.POSTPROCESSABM">false</Property>
    <Property name="ABCSEXTENSION.PREPROCESSEBM">false</Property>
    <Property name="ABCSEXTENSION.POSTPROCESSEBM">false</Property>
    My question is to extend the Provider ABCS service, i will prefer set true for PREPROCESSEBM and POSTPROCESSABM.
    But In Environment A we have the properties like below
    <Property name="ABCSEXTENSION.PREPROCESSABM">false</Property>
    <Property name="ABCSEXTENSION.POSTPROCESSABM">true</Property>
    <Property name="ABCSEXTENSION.PREPROCESSEBM">true</Property>
    <Property name="ABCSEXTENSION.POSTPROCESSEBM">false</Property>
    In Environment B the properties are like below,
    <Property name="ABCSEXTENSION.PREPROCESSABM">true</Property>
    <Property name="ABCSEXTENSION.POSTPROCESSABM">true</Property>
    <Property name="ABCSEXTENSION.PREPROCESSEBM">true</Property>
    <Property name="ABCSEXTENSION.POSTPROCESSEBM">false</Property>
    But the functionality on both Environments is same. Can you please explain me how really extension processes works in the two cases..?
    Thanks
    SK

    Please refer to:
    http://docs.oracle.com/cd/E20713_01/doc.11112/e17364.pdf
    13.1.2. Introduction to Enabling Provider ABCS for Extension
    http://docs.oracle.com/cd/E23549_01/doc.1111/e17363/chapter06.htm#BABEAIFG
    6.5 Process Extensions
    As 'ABCSEXTENSION.PREPROCESSABM' is different, compare input/output payload of ABCS extension service in both environment for the difference.
    Also check PreprocessABMSequence in ABCS and what's done inside your ABCS extension service.
    What's the Prov ABCS service you r referring to?
    Regards,
    Faiz

  • ICal on iPad: please explain how to use the duplicate calendars

    I am traveling with my iPad and cannot get on my computer. I want to add calendar events that will sync to MMe. I have checked off the calendars for @me.com. Sometimes the iPad duplicate switches on. I assume that i have this so i can see if i need to what is really on the iPad ND what is really on mobile me in case i don't have wi fi access. However Apple does not explain to us why so that we could understand our own systems. We are left to guess and stab in the dark. I want to add items that will go over to mobile me and to my phone. Do i add them in to the calendar that is on the ipad and then it will automatically sync the events?
    I just edited some items that had previously been synced to mobile me. Those items are showing up synced to my phone so i know they went to mobile me. However i added some new items that went into the calendar on my iPad and those are not syncing (I wonder why apple has this odd system set up?)
    So is there something i don't know about entering events in my iPad? Why would there be a dublicTe calendar kept that does not sync to the rest?
    Please help! I can't go to my computer to reset hints for now i just have to know how to input events correctly into iPad so they will sync to mobile me and my phone. I have previously fine through resetting hints with mobile me support so it all should be set up correctly.
    Thanks

    Edited version (it won't let me edit)
    I am traveling with my iPad and cannot get on my computer. I want to add calendar events that will sync to MMe. I have checked off the calendars for @me.com. Sometimes the iPad duplicate switches on. I assume that i have this so i can see if i need to what is really on the iPad and what is really on mobile me in case i don't have wi fi access. However Apple does not explain to us why so that we could understand our own systems. We are left to guess and stab in the dark. I want to add items that will go over to mobile me and to my iPhone. Do i add them in to the calendar that is on the ipad and then it will automatically sync the events?
    I just edited some items that had previously been synced to mobile me. Those items are showing up synced to my iphone now so i know they went to mobile me. However i added some new items that went into the calendar "on my iPad" and those are not syncing (I wonder why apple has this odd system set up?)
    So is there something i don't know about entering events in my iPad? Why would there be a duplicate calendar kept on the iPad that does not sync to the rest?
    Please help! I can't go to my computer to reset anything for now i just have to know how to input events correctly into iPad so they will sync to mobile me and my phone. I have previously been through resetting everything with mobile me support so it all should be set up correctly.
    Also I have the new iCal that was called beta ND it syncs through CalDav or whatever that is separate from the contacts and bookmarks.
    Thanks
    iPad wifi + 3G   Other OS   Why not give a choice for iPad in that list?  

  • Please  explain how to use JarURLClassLoader?

    If you can please give an example.
    I want to know how to load classes from jar files and invoke them.

    You don't NEED to... that class is used internally by the JVM so don't care about it in your applikation. To test what I'm now saying do like this:
    Copy this class, compile it and put it into a jar-file. My jarfile was in the dir D:\javaforum\testmain\test.jar
    package lime.test.frames;
    import java.awt.BorderLayout;
    import javax.swing.JPanel;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    public class TestFrame extends JFrame {
         private static final long serialVersionUID = 1L;
         private JPanel jContentPane = null;
         private JLabel jLabel = null;
          * This is the default constructor
         public TestFrame() {
              super();
              initialize();
          * This method initializes this
          * @return void
         private void initialize() {
              this.setSize(300, 200);
              this.setContentPane(getJContentPane());
              this.setTitle("JFrame");
          * This method initializes jContentPane
          * @return javax.swing.JPanel
         private JPanel getJContentPane() {
              if (jContentPane == null) {
                   jLabel = new JLabel();
                   jLabel.setText("Called!");
                   jContentPane = new JPanel();
                   jContentPane.setLayout(new BorderLayout());
                   jContentPane.add(jLabel, BorderLayout.CENTER);
              return jContentPane;
         public static void main(String[] args) {
              TestFrame t = new TestFrame();
              t.setVisible(true);
    }Copy this class and put it wherever you want to, as long as it is not in the same catalog as the previous class or the jar-file created.
    package lime.javaforum;
    import lime.test.frames.*;
    public class InvokeTest {
          * @param args
         public static void main(String[] args) {
              TestFrame.main(args);
    }Compile it and start the InvokeTest with:
    [java -cp <path to jar> lime.javaforum.InvokeTest[/i]
    and see what will happen...

  • Please explain how to use binary search in this loop.

    Hi,
    I want to use the binary search in below Read please give me solution....
    LOOP AT it_vbfa_temp ASSIGNING <fs_vbfa_temp>.
          CLEAR is_ekbz1.
          READ TABLE it_ekbz1 INTO is_ekbz1 WITH KEY xblnr = <fs_vbfa_temp>-deliv flag = space.
          IF  sy-subrc = 0.
            w_tabix = sy-tabix.
            is_ekbz1-tknum = <fs_vbfa_temp>-shipno.
            is_ekbz1-flag  = 'X'.
            MODIFY it_ekbz1 FROM is_ekbz1 INDEX w_tabix TRANSPORTING tknum flag.
    ENDLOOP.

    Hi,
    Thanks for the inputs given.. Please find the solution for the same ....
       CLEAR is_ekbz1.
        is_ekbz1-flag = 'X'.
        MODIFY it_ekbz1 FROM is_ekbz1 TRANSPORTING flag WHERE flag IS INITIAL.
        SORT it_ekbz1 BY ebeln xblnr lifnr flag.
      LOOP AT it_vbfa_temp ASSIGNING <fs_vbfa_temp>.
          CLEAR is_ekbz1.
          READ TABLE it_ekbz1 INTO is_ekbz1 WITH KEY xblnr = <fs_vbfa_temp>-deliv flag = 'X' BINARY SEARCH.
          IF  sy-subrc = 0.
            w_tabix = sy-tabix.
            is_ekbz1-tknum = <fs_vbfa_temp>-shipno.
            is_ekbz1-flag  = space.
            MODIFY it_ekbz1 FROM is_ekbz1 INDEX w_tabix TRANSPORTING tknum flag.
      ENDLOOP.
    Regards,
    Srinivas
    Edited by: Srininas on Apr 6, 2010 12:16 PM
    Edited by: Srininas on Apr 6, 2010 12:17 PM

  • Explain How to use Structure mapping button

    Hi All
    Iam Developing an application "Implementing and Using Exceptions in Guided Procedures"
    Can you please explain How to use Structure mapping button,
    Plz give me steps in details
    Thanks
    Srinivas

    Hi
    Create a project using 0020 as method.
    Max

  • HT1665 I am trying to connect my Samsung Bluetooth device with my new Iphone 4S.  Can anyone explain how this is done?

    I am trying to connect my Samsung Bluetooth device to my new Iphone 4s. Can anyone explain how this is don?

    Which Samsung Bluetooth device?
    Please note that the iPhone will not pair with other phones, tablets, etc for purposes of file transfer.

  • Can someone please explain how I download all my songs from the cloud without having to tick each cloud individually for each song

    Can someone please explain how to download all my songs from cloud without having to tick each cloud individually

    Music > iTunes Store > Music Quick Links > Purchased > Not in My Library > Download All.
    tt2

  • I am having email problems with the new Lion.  stmp, imap, etc. I have looked up google info and It is confusing when it comes to TS, SSL also, please explain how to set it up so my email goes out and comes in securely.  Help

    I am having email problems with the new Mountain Lion.  stmp, imap, etc. I have looked up google info and It is confusing when it comes to TS, SSL also, please explain how to set it up so my email goes out and comes in securely.  Help
    Incoming Mail (IMAP) Server - requires SSL:
    imap.gmail.com
    Use SSL: Yes
    Port: 993
    Outgoing Mail (SMTP) Server - requires TLS:
    smtp.gmail.com (use authentication)
    Use Authentication: Yes
    Use STARTTLS: Yes (some clients call this SSL)
    Port: 465 or 587
    Account Name:
    your full email address (including @gmail.com) Google Apps users, please enter username@your_domain.com
    Email Address:
    your full Gmail email address ([email protected]) Google Apps users, please enter username@your_domain.com
    Password:
    your Gmail password
    The Quick Answer
    Follow the instructions below to set up IMAP1 access in most email clients.
    Google Apps users, please follow the default instructions unless otherwise noted, replacing 'your_domain.com' with your actual domain2 name.
    this is all greek to me. WHAT IS STARTTLS? On the first page of Apple set up there is a TLS certificate and it is marked NONE- should I change it to the long APPLE CERT option?  The next page under ADVANCED: THERE IS A BOX SSL MARKED.  Then IMAP Path Prefix - I put stmp.gmail.com.. is that right?  Port 993 can  use this one? as 456 doesn't work and 587 said it wasn't safe.  Under AUTHENTICATION I used PASSWORD.  Should I have used external client cert TLS?
    Please help me set this up securely. Thanks

    Apple - Support - Mail Setup Assistant

  • I just purchased a new laptop, so consequently had to buy Itunes Match to get all of my music back. Now everything is in the cloud, and I can't play them and cannot make a cd. Please explain how I can get

    I just purchased a new laptop, so consequently had to buy Itunes Match to get all of my music back. Now everything is in the cloud, and I can't play them and cannot make a cd. Please explain how I can get my library out of the cloud and keep them on my computer so they are available when I want them? Wow.......why have you made everything so difficult now?

    SKF5656 wrote:
    I just purchased a new laptop, so consequently had to buy Itunes Match to get all of my music back.
    No you didn't.
    Now everything is in the cloud
    Except for anything you did not purchase in iTunes Store.
    Only you iTunes purchases are in the cloud.
    Reada the article that brenden dv posted to copy your iTunes library to new computer.

  • In Pages 09 we can do Mail Merge and Import Styles from a document. Can someone please explain how we can do this with the new version of Pages 5.1. Even Apple solutions are only valid for Pages Version 09. What a DOWN GRADE!

    In Pages 09 we can do Mail Merge and Import Styles from a document. Can someone please explain how we can do this with the new version of Pages 5.1. Even Apple solutions are only valid for Pages Version 09. What a DOWN GRADE! Thank god Pages 09 is still there.

    …and the other 98 missing features.
    Just use Pages '09, which should be in your Applications/iWork folder.
    Rate/review Pages 5 in the App Store.
    Peter

  • Please explain how the method CHECK_CHANGED_DATA works?

    Hi experts,
       Can any of you experts please explain how the method <b>CHECK_CHANGED_DATA</b>
    of <b>CL_GUI_ALV_GRID</b> class works ?
    Thanks in advance
    regards,
    Ashwin

    DATA: l_valid TYPE c.
    Data grid1 type ref to cl_gui_alv_grid.
    CALL METHOD grid1->check_changed_data IMPORTING e_valid = l_valid.
    This method checks if any data is changed on the grid if there any editable fields .
    And updates the changed values
    Message was edited by:
            Chandrasekhar Jagarlamudi

  • Can somebody please explain how to format and then reinstall Mac lion10.7 without cd

    can somebody please explain how to format and then reinstall Mac lion10.7 without cd

    You will need either an Ethernet or Wifi Connection to the Internet - USB Mobile device is not supported.
    If you already have Lion installed you can boot to Recovery with Command R and use the Disk Utility to erase the Macintosh HD and then reinstall the OS from the Mac OS X Utilities.
    You will need the Apple Id used for purchase if the Mac did not ship with Lion installed originally.
    If you want to repartition the HDD you can use the Recovery Disk Assistant to make a recovery USB drive
    http://support.apple.com/kb/DL1433
    http://support.apple.com/kb/HT4848
    As Always - Back up the Mac before erasing unless you are confident there is absolutely nothing on the mac that you might possibly need later.
    If the machine is a 2011 build or later you might be able to boot to Internet Recovery with Command Option R

  • Could you please explain how to work with Outlier Correction

    could you please explain how to work with Outlier Correction

    Hi sr,
    Actually an outlier correction is an historical value that lies the tolerance lane.
    the apo sys calculate this tolerance lane on the basis of the sigma factor.
    It then correct any historical value that lies outside the upper or lower band of this tolerance lane.
    So, that it corresponds to the calculated ex- post value for that point in time.
    this option is available in Master forecast profile /sapapo/mc96b in Univariate profile( control parameters) tab.
    If you have set the outlier correction indicator, then the sys first calculate an ex-post forecast with the selected forecasting techniques.
    In the next step, the sys calculates a tolerance threshold T.
    where T is calculated as T = sigma * MAD (Mean Absolute Deviation)
    Here the Sigma factor defines the width of the tolerance rangefor automatic outlier correction.
    it defines the permissible number of standard deviations.
    A small sigma factor means a low tolerance, and a large number of outliers that are detected and corrected.
    The default Sigma factor is 1.25.
    If you set the Sigma factor, SAP recommends that you set it betw 0.6 and 2.
    I hope this is helpful for you.
    Regards,
    Pullaiah

  • Hi guys, can you please explain how to perform automatic system scan with CleanApp - it looks like it wants me to manually chose files to delete and I just want an automatic scan (like cleanmymac does)

    Hi guys, can you please explain how to perform automatic system scan with CleanApp - it looks like it wants me to manually chose files to delete and I just want an automatic scan (like cleanmymac does)

    Slowness...First Try using Disk Utility to do a Disk Repair, as shown in this link, while booted up on your install disk.
      You could have some directory corruption. Let us know what errors Disk Utility reports and if DU was able to repair them. Disk Utility's Disk Repair is not perfect and may not find or repair all directory issues. A stronger utility may be required to finish the job.
      After that Repair Permissions. No need to report Permissions errors....we all get them.
    Here's Freeing up Disk Space.
    DALE

Maybe you are looking for

  • Special character in my product name

    The name of my product is supposed to have a TM and em dash in the product name in all instances. Of course, I have had huge problems with that. Now I finally have a .chm working on a very limited basis, but it has changes all instances of the dash t

  • My Ipod Touch Won't Charge Properly and My Laptop doesn't recognize it.

    Everything was fine until this morning. I was charging my iPod Touch while my daughter and I were playing with it. Since I have to do some errands, I removed the charger even though the battery was not yet full. I did played a bit, even took some pho

  • Officejet 6500A won't scan

    "Unable to communicate" message. Updated the full driver pack and installed the Print and Scan Doctor, which OK'd the Device Manager but stopped at "Driver Check" with message: "Scan driver unable to communicate with the product." I unplugged the pri

  • CO_TXT_OUTBINDING_ERROR

    Hi All, my scenario is Mailadapter to file in which i need to read a attachment through payload swap bean i am following these two scenario  : one is wiki page and one is michal's blog http://wiki.sdn.sap.com/wiki/display/XI/StepbyStepMailToFileScena

  • IDOC adapter question

    I am trying to set up a simple file to IDOC transaction ( as a poc ), and I think that I havent configured my IDOC reciever channel properly. I used IDX1 to get the port, and RFC destination information. When I used the wizard, it said that the chann