HT4993 After activating my phone, my number says 0000009481 instead of my phone number and I can't make phone calls or texts

Yesterday I got my phone activated at the apple store and this also occurred  and now that I'm home the same problem keeps occurring. I am not able to make phone calls or text messages. I can only use the Internet

Go back to the Apple Store and talk to them about it. You can most likely get it fixed by calling your carrier.

Similar Messages

  • I'm trying to activate my new 4S and I can't make any calls -it says "No Service" What am I doing wrong?

    I followed all the prompts and plugged my new 4S into my desktop, everything has sync'd but I still can't make any calls. It's obviously not connecting to the network. What am i doing wrong?

    Do you have a SIM in the iPhone?

  • We have a 5s active on our account.  After turning on a previously active 4s (it had the same number)  The 5s can no longer place call and when you call it from another phone the 4s rings, but will not pick up.  Texting over the cell networks works fine.

    We have a 5s active on our account.  After turning on a previously active 4s (it had the same number)  The 5s can no longer place call and when you call it from another phone the 4s rings, but will not pick up.  Texting over the cell networks works fine.  Any suggestions??

    hens0861,
    Hmm, let's ensure this is working as it should be! So what phone should be active on your account? Did you switch the devices online or how to did you activate the 5s? Please share details.
    KarenC_VZW
    Follow us on Twitter @VZWSupport

  • How can I make a call to *190*phone number# in c#?

    Hi,
    I am trying to create an app as shortcut for some requests.
    I want to make a call to this number: *190*phone number# using c# but it never works.
    On the phone, I can call this number and I get a reply from my provider.
    If I try to call it using:
    Windows.ApplicationModel.Calls.PhoneCallManager.ShowPhoneCallUI("*190*phone number#", "TEST CALL");
    I get a message saying that I have to use the dialer keypad to send the request.
    Is there a workaround for this (bug)? I mean, if I put the phone number in the phoneCall-request, it is because I don't want insert it manually in the dialer keypad...
    Thanks,
    Adriano

    Yes security LOL...
    If Microsoft want security, they should create a smartphone without the possibility to install apps ;)
    If an app can't make a call (user has to press CALL), the same thing is also possible for a FREE request to the provider, or not?
    Thanks for the link! This show once again that write a utility for WP is a hard work...
    If I create a new contact, I have to call phoneCallTask.Show();
    ... And so I am on the same situation.
    .My phone provider created an app for iPhone and one for Android. I was thinking I would be able to create something for Windows Phone too. Now I know why nobody want to create tools for Windows Phone. The API never allow you to write a utility (for security
    reason, I know ;) )... But it would also be nice to have a utility some times in a store full of inutility apps :(
    About this BUG:
    I can create a textbox where the user can copy the phone number (maybe the app could copy it automatically in the clipboard if there is no security problem about the OS :P). But the user has to exit the app, open the dialer and insert this text.
    Is there a way to open the phone dialer?
    Thank you for the support Cristian!

  • Playing a WAVE file after making a phone call.

    Hi everyone..
    I'm trying to play a wav file after making a phone call. I was able to make the call. But I get an exception when i try to paly a wav file..
    Can any one tell me where I've gone wrong..
    This is the code which plays the audio file..(I downloaded it by the way.. and it's working fine when used as a seperate program)
    import java.io.File;
    import java.io.IOException;
    import javax.sound.sampled.AudioFormat;
    import javax.sound.sampled.AudioInputStream;
    import javax.sound.sampled.AudioSystem;
    import javax.sound.sampled.DataLine;
    import javax.sound.sampled.FloatControl;
    import javax.sound.sampled.LineUnavailableException;
    import javax.sound.sampled.SourceDataLine;
    import javax.sound.sampled.UnsupportedAudioFileException;
    public class PlayWave extends Thread {
         private String filename;
         private Position curPosition;
    //30000000(7324.21 kb)
         private final int EXTERNAL_BUFFER_SIZE = 524288; // 128Kb
         enum Position {
              LEFT, RIGHT, NORMAL
         public PlayWave(String wavfile) {
              filename = wavfile;
              curPosition = Position.NORMAL;
         public PlayWave(String wavfile, Position p) {
              filename = wavfile;
              curPosition = p;
         public void run() {
              File soundFile = new File(filename);
              if (!soundFile.exists()) {
                   System.err.println("Wave file not found: " + filename);
                   return;
              AudioInputStream audioInputStream = null;
              try {
                   audioInputStream = AudioSystem.getAudioInputStream(soundFile);
              } catch (UnsupportedAudioFileException e1) {
                   e1.printStackTrace();
                   return;
              } catch (IOException e1) {
                   e1.printStackTrace();
                   return;
              AudioFormat format = audioInputStream.getFormat();
              SourceDataLine auline = null;
              DataLine.Info info = new DataLine.Info(SourceDataLine.class, format);
              try {
                   auline = (SourceDataLine) AudioSystem.getLine(info);
                   auline.open(format);
              } catch (LineUnavailableException e) {
                   e.printStackTrace();
                   return;
              } catch (Exception e) {
                   e.printStackTrace();
                   return;
              if (auline.isControlSupported(FloatControl.Type.PAN)) {
         FloatControl pan = (FloatControl) auline.getControl(FloatControl.Type.PAN);
                   if (curPosition == Position.RIGHT)
                        pan.setValue(1.0f);
                   else if (curPosition == Position.LEFT)
                        pan.setValue(-1.0f);
              auline.start();
              int nBytesRead = 0;
              byte[] abData = new byte[EXTERNAL_BUFFER_SIZE];
              try {
                   while (nBytesRead != -1) {
              nBytesRead = audioInputStream.read(abData, 0, abData.length);
              if (nBytesRead >= 0)
                   auline.write(abData, 0, nBytesRead);
              } catch (IOException e) {
                   e.printStackTrace();
                   return;
              } finally {
                   auline.drain();
                   auline.close();
         }I inserted
    new PlayWave("greeting.wav").start();In to a method an called this method in the program where i send commands to the modem.
    These are my modem commands
    send("ATZ");
        expect("OK");
    //Enable voice mode
        send("AT+FCLASS=8");
        expect("OK");
    //Dial the number
        send("ATDT"+number);
        expect("OK");
    //Choose encoding method //This is the default
        send("AT+VSM=140,8000,0,0");
        expect("OK");
    // start sending audio data
        send("AT+VTX");
        expect("OK");
    PlayAudio();
    send("ATH");The size of my audio file is 100 kb.I'm using a 56 K intel externel voice modem connected to a serial port.I wonder if it's because the buffer is too big. If anyone tried this and succeded please correct me.
    Thankyou in advance
    goodnews

    Hi goodnews!
    Did I understand well? Can You record the speech? This is what I want!
    Can you help me and send me sample code?
    This would be a big help for me!
    Thank You!
    rflair

  • I can't make any calls after changeling my number?

    I Can't make any calls out of my phone after changing my number? Can anyone help me with that

        DanMoon35 No need to panic! I am sure we can get your calls working again. What make and model phone are you using? Have you tried to restart the device?
    SheritaH_VZW
    Follow us on Twitter
    @VZWSupport

  • My husband and I shared the same apple id I accidentally deleted his number from the iCloud And now his phone won't receive phone calls or text what do I do

    My husband and I shared the same apple id I accidentally deleted his number from the iCloud And now his phone won't receive phone calls or text what do I do

    In preferences turn on iTunes sharing in iTunes preferences and keep iTunes turned on in both accounts. Or better yet put the iTunes library on the main HD rather than in an account and set the location of the library to that location in iTunes preferences.

  • HT1918 I am trying to change my card and after putting in the card number and the expiry dates it will not let me type in the security code please help

    I am trying to change me paymenet method by changing my card, after typing in the card number and expiry dates it will not let me type in the box for the security number   I am trying to do this on the computer
    Jill

    finally ...
    1. Logout from all apple devices
    2. open "App Store" application on your macbook. Login and change all the details for card.
    3. Login in itunes, iphone ... I will see that all the details are already updated automatically.
    I've just bought some app from itunes

  • Can't make a call from my I phone Always say call failed

    Hello
    i have a problem with my I phone that it new phone and i didn't use it until now but i have a problem with it that i can't make a call always say call failed , i changed the sim card but i still have the same problem .
    so can you please help me

    First try resetting your phone:
    Press the sleep/wake button & home button at the same time, keep pressing until you see the Apple logo, then release.

  • I just got my phone replaced and I can't make phone calls. It says I have service and I can literally do everything else, including FaceTime, but no phone calls?!?!

    I just got my phone replaced and I can't make phone calls. It says I have service and I can literally do everything else, including FaceTime, but no phone calls?!?!

    try resetting your network settings, it just resets wifi and carrier settings, no data

  • I can't make a call but i can received calls and send text messages its say you cannot make a call check the phone settings!

    i can't make a call but i can received calls and send text messages its say you cannot make a call check the phone settings!

    It is not a cell phone.

  • Please help after updating my iphone 4 to ios 5.01 I cannot make phone calls or receive phone calls anymore. I am so annoyed first battery and now can't make calls!

    Please help after updating my iphone 4 to ios 5.01 I cannot make phone calls or receive phone calls anymore, please help, I am so annoyed first battery and now can't make calls!

    The same thing is happening with my wife's iPhone 4 and we can't figure it out. When placing a call, the screen freezes and she needs to restart the entire phone.
    She upgraded to 5.01 this morning over the air while it was plugged in. Immediately afterwards, this problem started happening. We've tried restarting the phone several times and plugged in to iTunes but there's nothing she can do do to fix it.
    Any help is greatly appreciated!

  • I changed my phone number and people are still able to text me from my old number and i can no longer send picture messages, what should i do?

    i changed my phone number and people are still able to text me from my old number and i can no longer send picture messages, what should i do?

    Workable solution found here:
    https://discussions.apple.com/thread/1589996?start=15&tstart=0

  • N8 - touch-screen still active during phone calls,...

    I've made a few calls with my N8, and I'm finding that the touch-screen is still active when I hold the phone to my ear. I've accidentally hung up on people, or have inadvertently activated other apps. Is this something I can fix in tools?
    The sound during calls is also very low (even at maximum volume), which compounds the above problem even more, as I push the phone closer to my ear.
    If nothing else, the N8 should be able to function perfectly as a phone, and this is really frustrating - I never had this problem with other phones.
    Also, on the 2nd use of the photo edit program, it took a long time to save the photo, and then the phone froze. Is anyone else having problems with this?

    I too fact these problems i.e touch-screen still active during phone calls leading to unintended "hold" on the calls or screens navigating else where. Yes, the side lock bar helps, but then it is not very handy way for a costly model to be designed. Even the older cheaper nokia touch screen model did not have this problem. Let NOKIA people respond to it.
    Yes, the sound is too low even at the maximum. Nokia support centre plead helpless.
    I think we all made a big mistake in investing in this costly handset.

  • MY IPHONE WONT ACCEPT PHONE CALLS OR TEXT

    Hello my I phone will not accept phone calls or text  , when someone is calling my number there is a message saying that " the persone you are trying to reach is not accepting calls at this time  , can anyone help please

    Contact your wireless provider

Maybe you are looking for

  • Transaction data Upload

    Hi, I have loads of transaction data to upload for lots of transactions and I find lots of table controls whr multiple entries are to be filled some check box selections and marking a row etc. Can someone tell me is table control upload is possible w

  • How to password protect non .mac web site

    does anyone have step-by-step directions on how to make my web page password protected on a non .mac web space? for example, http://www.yoursite.net/~userid My internet service provider does not support web page creation, they just provide the space.

  • Must redeploy app or get java.rmi.AccessException: CORBA NO_PERMISSION 9998

    Hello. I'm hoping someone can give me a clue to the source of this problem. I have a very simple test application which consists of one EJB which is just a stateless session bean that has a method which return the String "Hello". This method can only

  • Missing iMovie HD tracks in GarageBand 3: what can be done?

    I have a 20 min. project in IMovie HD that utilizes camcorder video, narration and musical tracks derived from ITunes. When I shared the project with GarageBand 3 (wishing to elevate the volume in certain places of the camcorder soundtrack -- having

  • Screen Pixelation after Mountain Lion upgrade

    I upgraded to Mountain Lion on my Mac Pro recently.  For the first week or so it worked great, but a few days ago I woke the computer from screen saver and the screen was covered with these random pixels all over.  Here is a link to a screen shot I t