Calls in other states?

I'm going to Chicago for a couple nights (I live in Michigan) and I was wondering if my iPhone will still work in another state or not. I'm assuming yes, but I would just like to double check.
Thanks!

As long as you are with AT&T, you have the ability to roam across the country. The iPhone will work quite well in Chicago, I live in that area.
Hope this answers your question.

Similar Messages

  • When I place a call from my iphone, I am identified to the receiver of the call by my state of residence instead of my name. How can I change this? Thanks!

    When I place a call from my iPhone 5s, I am identified to the receiver of the call by my state of residence instead of my name. How can I change this? Thanks!

    That would be an issue on the recipients end.
    sounds like they didn't save your number in their contacts.

  • What is the reason for Invalid database interface call in the statement

    Hi all,                                                     
    Invalid database interface call in the statement where table "ZPP_STORAGE ".
    Thanks.

    DATA: BEGIN OF itab4 OCCURS 0,
                mandt TYPE mandt,
                matnr LIKE mseg-matnr,
                werks LIKE mseg-werks,
                lgort LIKE mseg-lgort,
                tarih LIKE sy-datum ,
                meins LIKE mseg-meins,
                bldat LIKE mkpf-bldat,
                menge LIKE mseg-menge,
             SHKZG like mseg-SHKZG,
             BWART like mseg-bwart,
            END OF itab4.
    LOOP AT itab4.
          insert into zpp_storage from itab4.
          COMMIT WORK.
        ENDLOOP.
    At insert, dump occurs.
    Why?
    Thanks.

  • Can two functions call each other?

    I'm converting some code and have run into two functions that call each other. While I seem to have converted both functions to plsql ok, they do not compile, seemingly because they ref each other. As soon as I de-reference one one function's call to the other function they both compile.
    I know that Oracle 10g supports recursion; and on the surface of things, this situation does not seem much different than recursion. If both functions are well formed, I would hope that they'd compile.
    I wasn't able to find much by searching the forums on this topic...but I'm hoping that someone will have some info on this issue.

    what happens when f2 sends 2 as parameter to f1 (i mean F1(2) in place of f1(1) ) at line 6 of f2).probably that what you expected ;) :
    SQL>  create or replace function f1 (i integer default 0)
         return integer
    as
    begin
         dbms_output.put_line ('In function f1');
         return case when i != 1 then f2 end;
    end f1;
    Warning: compiled but with compilation errors
    SQL>  show error
    Errors for FUNCTION F1
    LINE/COL ERROR                                                           
    6/31     PLS-00201: identifier 'F2' must be declared                     
    6/2      PL/SQL: Statement ignored                                       
    SQL>  create or replace function f2
         return integer
    as
         i integer;
    begin
         dbms_output.put_line ('In function f2');
         execute immediate 'begin :1 := f1(2); end;' using out i;
         return i;
    end f2;
    Createfunction successfully completed.
    SQL>  select f2() from dual
    select f2() from dual
    Error at line 1
    ORA-00036: maximum number of recursive SQL levels (50) exceeded
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8

  • Sbi mobile banking is not working in iphone4. i can't make video call to other than iphone4

    sbi mobile banking is not working in iphone4. i can't make video call to other than iphone4

    What troubleshooting steps have you tried?  Have you tried resetting the iPhone? or restoring it?

  • Can I buy final pro using a Mac in one State and then install it in other State using another Mac?

    Can I buy final cut pro x , using  my mac and then install it in other State using another Mac?

    Yes, as long as both Macs meet the system requirements for it.
    (112783)

  • Since i update my iPhone 5 with IOS 7.0.2, I start to have serious problems to call or receive calls from other telephones: is not possible to open the call at the first try. Somebody have the same problem?

    Since i update my iPhone 5 with IOS 7.0.2, I start to have serious problems to call or receive calls from other telephones: is not possible to open the call at the first try. Somebody have the same problem?

    Try
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data

  • I have recently upgraded to iPhone 5 from 4, call line identity doesn't work when call other iPhones.  It works when calling any other brand of cell phone.  Network carrier assures me problem is not on there side.  Any assistance will be appreciated.

    I have recently upgraded to iPhone 5 from 4, call line identity doesn't work when call other iPhones.  It works when calling any other brand of cell phone.  Network carrier assures me problem is not on there side.  Any assistance will be appreciated.

    I have recently upgraded to iPhone 5 from 4, call line identity doesn't work when call other iPhones.  It works when calling any other brand of cell phone.  Network carrier assures me problem is not on there side.  Any assistance will be appreciated.

  • Execution Times of Stored Procedures Called from Other Stored Procedures

    If I execute sys.dm_exec_procedure_stats, it will produce execution times of my stored procedures executed recently.
    However, stored procedures called from other stored procedures do not show up.
    Is there code that can return the execution times of stored procedures even though they are called from other stored procedures.

    Look at the example. It is counting nested execution.
    CREATE PROC z1SP AS SELECT * FROM Production.Product;
    GO
    CREATE PROC z2SP AS SELECT * FROM Production.Product WHERE Color is not null; EXEC z1SP;
    GO
    SELECT object_name(2002822197), object_name(2034822311);
    --z1SP z2SP
    EXEC z1SP; EXEC z2SP;
    GO 10
    SELECT * from sys.dm_exec_procedure_stats
    database_id object_id type type_desc cached_time last_execution_time execution_count
    16 2002822197 P SQL_STORED_PROCEDURE 2014-12-16 13:02:45.170 2014-12-16 13:02:46.717 20
    16 2034822311 P SQL_STORED_PROCEDURE 2014-12-16 13:02:45.460 2014-12-16 13:02:46.687 10
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Database Design
    New Book / Kindle: Beginner Database Design & SQL Programming Using Microsoft SQL Server 2014

  • IPod updates 2 touch with the new software, and from the update they are not connected with Time phase. They appear calling but never they enter the calls. I make calls with other users and if one connects but in these two not from the update

    iPod updates 2 touch with the new software, and from the update they are not connected with Time phase. They appear calling but never they enter the calls. I make calls with other users and if one connects but in these two not from the update

    I use Firefox 95% of the time, and there's no problem with flash content (and I'm still at .55 - downloaded .64 last week but I haven't got round to making the change yet). At the rate they've been changing it recently it may well be out of date already .
    I've been trying it in Safari, too with no problems apart from You Tube, but that's because I'm blocking Google cookies.
    One thought does occur - if your Flash preferences are set to block all Local Storage, it may be that the problem site is trying to use Flash cookies (LSOs). I had this problem recently with the BBC iPlayer streaming content. Little Snitch notified an attempt to connect to a new URL - emp.bbci.co.uk.
    If I disallowed it, no streaming; when I allowed the connection, it still wouldn't stream, so I did a bit of digging and came to the conclusion that it was trying to set a Flash cookie. When I unblocked, lo and behold - streaming resumed as normal.
    I now have LSOs blocked in a more subtle way that lets the site think it's being set (but it ain't) and the streaming still works.
    As for permissions repair - always repair from local; the permissions on the original disc will have been superceded by updates and new installations of Apple software.
    DU needs to be reading the packages on the HD, not the (now out of date) install disc.
    The recurring repair messages are normal and don't mean anything's wrong. As long as the final message is 'repair complete' there's no need to dwell on it.
    http://support.apple.com/kb/TS1448 (for Leopard and Snow Leopard - Lion no doubt has it's own set).

  • How to video call with other phone using Iphone 4??

    Hii
    Anant Patel here.
    How to use iphone 4 for video call to other phone like nokia or others.??

    Skype, if the other phones support skype.

  • Why my iphone6 always cant receive call form other people? i am use the iphone in mainland china. it is my iphone problem or all the iphones have this problem in mainland. please answer me. thanks.

    why my iphone6 always cant receive call form other people? i am use the iphone in mainland china. it is my iphone problem or all the iphones have this problem in mainland. please answer me. thanks.

    Hello tashi1234,
    Welcome to the Apple Support Communities. If you are having an issues with the Phone app on your iPhone, the next step would be to restore the iPhone. The following will assist with backing up your iPhone.
    iOS: How to back up
    http://support.apple.com/kb/HT1766
    Once your iPhone is backed up then go through with the process of restoring the iPhone.
    iTunes: Restoring iOS software
    http://support.apple.com/kb/ht1414
    Regards,
    -Norm G.

  • May I make video call to other gsm 3G supported hand set?

    Dear sir,
    I cannot make video call to other 3G hand set by using face time call ( with out iOS to iOS ).
    So, please give a new solution to make video call to any 3G supported hand set.
    Regards.
    Ekram

    I don''t think there is an app that you can use on an iphone 3G as it is too old.
    sorry.

  • My phone comes up as private or blocked call on other phones

    Whenever I make a call to other phones whether land lines or cell my phone always comes up as blocked or private. How can I change this?

    Settings > Phone > Show My Caller ID.
    Is this on?

  • I have problem with my mic when i make call the others cannot hear me but the mic is ok

    i have problem with my mic when i make call the others cannot hear me but the mic is ok i checked it out and it works dont know what to do help me !!

    Hello Sabbir Khan,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    Can't hear through the receiver or through speaker, and can't be heard
    iPhone: Can't hear through the receiver or speakers
    http://support.apple.com/kb/TS1630
    Best of luck,
    Mario

Maybe you are looking for

  • ITunes won't recognize my iPhone 4S or iPad 3rd gen.

    Please , could anyone tell me why iTunes , on my mac book pro ,will not recognize my devices . I uploaded a few albums onto my iPhone 4S and they played well .  When I plugged my iPhone into iTunes again -iTunes failed to recognized my device . Next

  • Mail in Mavericks 10.9.1 still has big ptoblems

    Since upgrading to Mavericks (inc. supposed fix) Mail has been behaving very badly. I can no longer return to correct any text once typed - the cursor selects random sections of text? Also while downloading Mail will tell me I have 345 of 347 message

  • Duplicate bar codes allowed

    SBO currently allows bar codes to be duplicated.  I request the system be reviewed to prevent this.

  • STO- Depot to Plant with Transfer of cenvat credit

    Dear All, I am having a scenario in which i am procuring capital material for depot and it lies in depot. Now the material is no use in depot and i want to transfer that material from depot to manufacturing Plant. and want to take the cenvat credit i

  • Big Keynote Problem - can't open saved file

    Hello After spending a whole morning working on a presentation, Keynote '08 suddenly quit, with the normal message. Now the file I was working on will not open, no matter what computer (we have three in the office) or what I do. I have searched throu