All iPhone 4's in building not getting 3G data, but all older iPhones are

A few people in our office purchased new iPhone 4's over the weekend. All of us were 1st gen through 3GS iPhone users.*
Everyone who has the new iPhone can't get any data over 3G, but all 3GS or older phones are pulling data as normal. I don't think it's a signal attenuation/bumper issue as I'm getting 5 bars.
I spoke with both Apple and AT&T a few times. Apple is as confused about it as I am and AT&T suggested I return the phone and try another (obviously not the problem).
If I drive a mile down the road, 3G works fine.
We're at a bit of an impasse; we have 30 days to return the phones and we all love our old iPhones and have no interest in using anything else, but if we can't resolve the issue, I'm not sure what options we're left with. Has anyone else had this problem?
*these are all personal accounts, not business, so you can rule out an account issue

Bryann wrote:
This issue is tied, from my experience, to the base band change in iOs4 of how the iP4 is connecting to the least congested tower vs. the stronger signal tower. If you think about it towers aren't that close together so if the closest tower is overloaded and the iP4 is connecting a tower that is not as congested but is two, or farther, miles away you may still technically have 3G service but your not going to be able to connect data wise. This is a major issue and hope I Apple finds a compromise between the old method and the new of how the iP4 connects to towers.
interesting. if you don't mind me asking, you said "from my experience"....you've seen this problem before?
was this change in 4.0 or 4.0.1 (which looks like it could be the culprit)?

Similar Messages

  • I am not getting the data in Bex from the cube

    Hi Experts,
    i am not getting the data from the cube to Bex,
    cube having the data, but i am not able to see this data in the Bex result area.
    Can  any one help me.
    Best regards,
    Bhaskar

    Hi
    In the manage cube, is reporting symbol is there for your requests
    If you have any red requests delete them and refresh
    If all requests having reporting symbols you may check the BEx without any filters or selection criterions
    Regards
    N Ganesh

  • Iam not getting the data on screen after using the user exit zxpadu01

    Dear Freinds
                As per my requirement when the user enters value Ansal  it should get defaulted to Amount field (bet01 ) based on the wage type
    i have written calculation ( q0008-bet01 = ansal/100) before it getting defaulted to bet01, i found that value is not getting default  on the screen for bet01 once i enter value for Ansal , please any body correct my code
    in   ZXPADU02 i have written the code as  below :
    data : wa_p0008 like p0008,
            i0008 like p0008,
           l_v_ANSAL type ANSAL_15,
           l_v_amount type PAD_AMT7S.
    CASE innnn-infty.
    when '0008'.
    CALL METHOD cl_hr_pnnnn_type_cast=>prelp_to_pnnnn
    EXPORTING
    prelp = innnn
    IMPORTING
    pnnnn = wa_p0008.   -- HERE I GOT ALL THE DATA EXCEPT BET01
    if wa_p0008-lga01 = 'MFPY'.
    l_v_ansal =  wa_p0008-ansal.
    l_v_amount = l_v_ansal / 100.
    move l_v_amount to wa_p0008-bet01.
    CALL METHOD cl_hr_pnnnn_type_cast=>pnnnn_to_prelp
    EXPORTING
    pnnnn = wa_p0008  --- HERE I CAN SEE EVEN THE BET01 IS FILLED
    IMPORTING
    prelp = innnn.         --- HERE I CAN SEE LGART BUT NOT AMOUNT VALUE
    endif.
    when others.
    endcase.
    IN ZXPADU01 I HAVE WRITTEN AS BELOW:
    data : wa_p0008 like p0008,
            i0008 like p0008,
           l_v_ANSAL type ANSAL_15,
           l_v_amount type PAD_AMT7S.
    CASE innnn-infty.
    when '0008'.
    MOVE-CORRESPONDING  innnn to wa_p0008.
    CALL METHOD cl_hr_pnnnn_type_cast=>prelp_to_pnnnn
    EXPORTING
    prelp = innnn
    IMPORTING
    pnnnn = wa_p0008.
    if wa_p0008-lga01 = 'MFPY'.
    l_v_ansal =  wa_p0008-ansal.
    l_v_amount = l_v_ansal / 100.
    move l_v_amount to wa_p0008-bet01.
    CALL METHOD cl_hr_pnnnn_type_cast=>pnnnn_to_prelp
    EXPORTING
    pnnnn = wa_p0008   --- I CAN SEE ONLY WHEN I COME AGAIN
    IMPORTING
    prelp = innnn.
    endif.
    when others.
    endcase.
    Now my problem is as follows :
                   i have entered the value for Ansal (ex: p0008-Ansal = 1000) ..........and i say enter then i should found the calculated value for the ansal through my coding
    and it should  display in bet01 as 10 ( q0008-bet01 =  p0008-ansal /100)
    but i dont find the value 10 being displayed for the field bet01 on the screen  when
    user enters Ansal  as 1000 .........even then i have saved it to test the scenario......
    now i came in displayed mode (pa20 ) for the infotype 008 for the same personnel no for the same  dates .....where i created the record........i found that the value
    bet01 is there i.e i can see  the value bet01 as 10 ( my requiremnt here matching)
    but when the user say enter during the time of creation of the record the value
    bet01 is not getting defaulted with 10 .........why iam not able to understand
    PLEASE ANY BODY HELP ME IN THIS REGARD 
    regards
    shanti.

    Hi Pranesh,
                   i have used the logic which you hav given as below
    in ZXPADU02
      FIELD-SYMBOLS <fs>  TYPE ANY.
    ASSIGN ('(MP000800)Q0008-betrg') TO <fs>.
    if <fs> is assigned.
    <fs> = l_v_amount .  ---  amount as (ansal /100 i.e 1000/100 = 10) 10
    endif.
    still iam not getting the data for the field bet01
    this is the coding i am using
    data : wa_p0008 like p0008,
            i0008 like p0008,
           l_v_ANSAL type ANSAL_15,
           l_v_amount type PAD_AMT7S.
      FIELD-SYMBOLS <fs>  TYPE ANY.
    CASE innnn-infty.
    when '0008'.
    MOVE-CORRESPONDING  innnn to wa_p0008.
    CALL METHOD cl_hr_pnnnn_type_cast=>prelp_to_pnnnn
    EXPORTING
    prelp = innnn
    IMPORTING
    pnnnn = wa_p0008.
    if wa_p0008-lga01 = 'MFPY'.
    l_v_ansal =  wa_p0008-ansal.
    l_v_amount = l_v_ansal / 100.
    move l_v_amount to wa_p0008-bet01.
    ASSIGN ('(MP000800)Q0008-betrg') TO <fs>.
    if <fs> is assigned.
    <fs> = l_v_amount .
    endif.
    CALL METHOD cl_hr_pnnnn_type_cast=>pnnnn_to_prelp
    EXPORTING
    pnnnn = wa_p0008
    IMPORTING
    prelp = innnn.
    endif.
    when others.
    endcase.
    please help me as iam still not getting (value in bet 01) when i press enter once i enter value in ansal feild.
    regards
    shanti.

  • Do not get any data from 0CA_IS_TS_1 and 0CA_IS_TS_2 data source

    Hi all,
    We are trying to populate cubes(0CATS_C01) and (0CATS_C02) for which data sources are 0CA_IS_TS_1 and 0CA_IS_TS_2 respectively. We activated business content for these data sources. When we run these data sources in RSA3 we do not get any data even though we have data in the repective tables. We applied SAP Note :1586467, which says (Note 1586467 - Extractor 0CA_TS_IS_1 returns no data), Can you please help me out in knowing if we are missing some thing?
    Thank you,
    Bob.

    Hi,
    To use this DataSource you must have implemented Support Package SAPKH46C32, or have made the relevant corrections in SAP Note 509592.
    Pl check you have required data as mentioned below
    When transferring time sheet data to the Business Information Warehouse (BW), you must note the connection between the following data sources:
    ·        CA_TS_IS_1 (Time Sheet Data (Approved))
    Documents are written in the SAP R/3 system for Time Sheets with status 30 (approved). The documents log the changes that have been made to data records.
    Therefore, the SAP R/3 system can perform a delta update for this data source. The system only transfers newly approved data records and changes that have been made to existing data records. At the same time, the SAP R/3 system notes the date of the last delta transfer.
    ·        CA_TS_IS_2 (Time Sheet Data (Released for approval))
    The SAP R/3 system does not write documents for Time Sheet data with status 20 (released for approval). This means that changes made to these data records are not logged.
    Therefore, the SAP R/3 system always performs a complete transfer of data records that have been released for approval. The number of data records that need to be transferred usually remains constant because in the period between two transfers not only new data records are added but other data records are also approved. Therefore, system performance is not restricted.
    Thanks and regards

  • Refernce Nav igational Attribute is not getting the data in Infoprovider

    Hi,
    I am facing the issue with Reference Characteristic which is  a navigational attribute for which data  is not getting populated in the cube.Please find the below scenario.
    We have three characteristics 0RECV_WBS_E , 0WBS_ELEMT, ZPSBUSA .Char 0RECV_WBS_E is reference of 0WBS_ELEMT.
    0RECV_WBS_E__ZPSBUSA,0WBS_ELEMT__ZPSBUSA are the Navigational attributes of ZPSBUSA, these two are maintained as Navigational attributes in the cube and at info object level. The Nav Attribute  0RECV_WBS_E__ZPSBUSA is not getting the data in infocube where as 0WBS_ELEMT__ZPSBUSA is getting the data .The data is available for the two Nav attributes in the info object ZPSBUSA .Can you please suggest why this reference Nav attribute  0RECV_WBS_E__ZPSBUSA is not getting data in the infocube.
    Thanks,
    SUbhash

    Hi,
    I am facing the issue with Reference Characteristic which is a navigational attribute for which data is not getting populated in the cube.Please find the below scenario.
    We have three characteristics 0RECV_WBS_E , 0WBS_ELEMT, ZPSBUSA .Char 0RECV_WBS_E is reference of 0WBS_ELEMT.
    0RECV_WBS_E__ZPSBUSA,0WBS_ELEMT__ZPSBUSA are the Navigational attributes of 0WBS_ELEMT, these two are maintained as Navigational attributes in the cube and at info object level. The Nav Attribute 0RECV_WBS_E__ZPSBUSA is not getting the data in infocube where as 0WBS_ELEMT__ZPSBUSA is getting the data .The data is available for the two Nav attributes in the info object 0WBS_ELEMT .Can you please suggest why this reference Nav attribute 0RECV_WBS_E__ZPSBUSA is not getting data in the infocube.
    Thanks,
    SUbhash
    Edited by: MarkSubhash on Dec 9, 2011 11:11 AM

  • HT4436 Can there be more than on iCloud account on a computer?  I have an iCloud account with my iPhone and would like to view my photo stream on my husbands mac.  I do not have a mac but an older PC

    Can there be more than one icloud account on a computer?  I have an icloud account with my iphone but would like to view my photo stream on my husbands mac.  I do not have a mac but an older PC. thanks

    Welcome to the Apple community.
    The simple answer is yes you can. On a single user computer, the user can have secondary iCloud accounts, which they can add through the system preferences > mail, contacts and calendars. The only drawback here is that only the primary iCloud account can use photo stream. This can be worked around by having a second user account on the Mac. Each user account could then have a different primary iCloud account, one for you and one for him, your account could then receive your photo stream pictures.
    Are you also aware that you can have iCloud on your PC and download your photos stream pictures to it.

  • SAP Fiori Purchase Order  not getting any  data & getting a 404 Error Message

    Hi
    I have downloaded Purchase Order SAPUI5 code from SAP Fiori server.  import it into Eclipse then try to run that Apps/code(SAPUI5) from browser.
    1) Not getting any Data.
    2) It show 404 Error Message.
    3) Its show wrong User Name as Login

    Hi Pankaj,
    First question :
    Are you able to get the data in Fiori ?
    Secondly,
    You have mentioned as Purchase order, but here you have given snapshot of Purchase requisition app, and you are calling also purchase req app from the browser. Please clarify
    If you have mistakenly written PO  : If you are still not getting data for Approve Purc req, then check if your RFC connections are proper from Gateway to backend and backend to Gateway.
    If RFC is working fine, check the Remote logon, it should be marked as Current user. If its not marked as current user, then it will show some other user.
    Regards,
    Tejas

  • Not getting Text data of Infoobject

    Hello everyone
    For Infoobject 0BP_MEDIA we are using infopackage
    0BPARTNER_TEXT for text . But we are getting data upto psa but not in theText table /BI0/TBP_MEDIA ( of Master Tab of Infobject ) . Because of this in Bex we are not getting names of the customer . We are using standard content for the infoobject 0BP_MEDIA . We want the data with name of the customer . Please suggest a solution .
    Regards
    Nilesh Vakil

    Hi,
    I think you are using below settings in "processing" tab :
    "Only PSA" check marked with
    "Update subsequently into data targets"
    and this text load is happening via PROCESS CHAIN.
    If I am not wrong please verify weather you have two processes in process chain as mentioned below :
    1) Execute Info package
    2) Read PSA and update into subsequent data target.
    I think the 2nd process is not there in your process chain.
    So you will have to include that in process chain.
    Thanks,
    Mihir

  • New Server - Not Getting Event.Data back

    Its a weird problem i'm having. I've setup a brand new server (Original was a shared hosting setup from godaddy).
    I'm using my same application
    And i'm not getting event.data info back (in XML form)
    Here's an example:
    private function onUploadCompleteData(event:DataEvent):void {
    updateStatus(event.data, _numCurrentUpload - 1);
    var x:XML = new XML(event.data.toString()); <---- NOT FIRING
    Application.application.upAvatar = "/profile/" + x.name;
    Does anyone have any ideas? I was thinking it could be a misconfiguration with my apache settings.
    I'm using:
    Ubuntu
    Apache2
    PHP5
    CURL
    Thanks..

    hi,
    have you placed a fault event handler on your request to see what error if any is being returned ?
    David.

  • XL Reporter not getting any data

    <b>Hi</b>
    When I am using XL Composer and generating report using it, I am getting data what the fields I have dragged. Not getting any data when generating same report in organizer from composer except the Title field names. Before I got but now I am not getting.
    <b>STEPS Taken</b>  
                     XL Reporter Composer Tool bar
                     Generate
                     Generate(Window)(Name: given Sample & checked Generate report    then ok)
    And having another problem when generating sample reports I am getting data and when editing that report are preparing new with some fields, I am not getting any data.
    <b>Example:</b>   I have made Edit of Bank Book and placed extra field Document No,   saved the report and generated I am not getting any data except titled fields.
         In new report I have taken BP Code and sales Employee I am not getting any data.
    Please Can any one help me,   It is urgent.
    Thanks in Advance.
    <i><b>Urs
    Sindhu</b></i>

    If you did not select any "total" field (quantities, totals, etc), XL Reporter will show data only at report composer. It will not work at final XL Report itself.
    This is a normal behaviour of XL Reporter, unfortunetaly.
    If you are trying to create a simple list of records, I suggest to use Query Generator, combined to PLD in order to get a formatted report.

  • My Bose Companion 5 speakers are not getting detected in mac pro. They are working fine with other machines (including mac).

    My bose companion 5 speakers are not getting detected on Mac Pro. They are working fine with other machines (including friend's mac)

    Same Issue here. I had a similar issue with my Bose USB speakers when I upgraded to Maverick. I've had the speakers since 2010 and had no issue with my 2006 Mac Pro or my iMac till the Maverick upgrade, contacted both Apple and Bose with no luck but an Apple update fixed the issue.
    I wonder if other USB speakers have an issue or is it just BOSE USB speakers. But my Companions did work fine with my Mac Pro and iMac 27 till the Yosemite update with an initial issue with the Maverick upgrade it was definitely an Apple issue not Bose. I have both Boise Airplay and Blue tooth speakers that seem OK it is only the USB Companions that don't work.
    Will look forward to a solution.
    Thanks,
    Rich

  • HT4623 my ipod touch will no longer connect to my laptop because my ipod is not up to date, but it won't find a newer software. what should I do?

    my ipod touch will no longer connect to my laptop because my ipod is not up to date, but it won't find a newer software. what should I do?

    the computer is a macbook pro, mac os x 10.6.08 and the ipod touch is ios 6.0.
    the problem is that just updated the itunes on the computer and now the ipod won't connect because apparently the itunes on the ipod is not up to date but the iod is telling me that is is up to date, so i can't do a software update.

  • Why 127.0.0.1 can not receive any data,but MulticastAddress can?

    Why 127.0.0.1 can not receive any data,but MulticastAddress(224.123.111.101) can? I use jmfstudio to tansport media and set the dest address to 127.0.0.1.I use anther jmfstudio,and fail to receive it.(ps:wo jmfstudio runs in the same machine at the same time).But after I change the dest addrest to 224.123.111.101,it receive data.Can any one tell me why?

    The origin code is to transmit stream is(ip 127.0.0.1 ,port 22222)
    localAddr = new SessionAddress(InetAddress.getLocalHost(), port);
    destAddr = new SessionAddress(ipAddr, port);
    As you said,the receiver reports 22222 is used.
    But After I change it to
    localAddr = new SessionAddress(InetAddress.getLocalHost(), port+10);
    destAddr = new SessionAddress(ipAddr, port);
    It says waiting for "Waiting for RTP data to arrive..."

  • Lync 2013 + Windows 8 phones not getting any notification but android and iphone works fine

    Dear All,
    Issue : None of the windows 8 phones gets alert when someone pings in lync2013
    Description: We get notification when someone pings to lync2013 im configured in android or iphone and it fails to notify when someone pings lync2013 configured in windows phones Example : Lumia 920,930,625
    Environment:
    Singe FE and Edge
    Assessments:
    Push notification is enabled in the server side and on mobile
    Tried using 2010 version client had the same issue
    Push testing was successful until I updated the server and now after update I am getting the following error
    PS C:\Users\administrator.tester> Test-CsFederatedPartner -Domain push.lync.com -ProxyFqdn sipfed.online.lync.com -verbos
    e
    cmdlet Test-CsFederatedPartner at command pipeline position 1
    Supply values for the following parameters:
    TargetFqdn: edge.tester.com
    VERBOSE: Reading access proxy port from topology process started.
    VERBOSE: Reading access proxy port '5061' from topology process successfully finished.
    VERBOSE: Reading certificate process started.
    VERBOSE: Reading certificate process successfully finished.
    VERBOSE: Searching for certificate with issuer name = 'CN=test-certsrv-CA, DC=tester, DC=com' and serial number =
    '4200000013a701fa4732b0475b000000000013'.
    VERBOSE: Successfully found certificate with the matching issuer name and serial number.
    VERBOSE: Workflow Instance Id 'd283786a-ba07-42ad-83e2-ad4ed5692597', started.
    VERBOSE: Command line executed is 'Test-CsFederatedPartner -Domain push.lync.com -ProxyFqdn sipfed.online.lync.com
    -verbose'.
    Test-CsFederatedPartner : A 500 (The server encountered an unexpected internal error) response was received from the
    network and the operation failed. See the exception details for more information.
    At line:1 char:1
    + Test-CsFederatedPartner -Domain push.lync.com -ProxyFqdn sipfed.online.lync.com  ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : OperationStopped: (:) [Test-CsFederatedPartner], FailureResponseException
        + FullyQualifiedErrorId : WorkflowNotCompleted,Microsoft.Rtc.Management.SyntheticTransactions.TestFederatedPartner
       Cmdlet
    VERBOSE: Workflow Instance ID 'd283786a-ba07-42ad-83e2-ad4ed5692597' completed.
    VERBOSE: Workflow run-time (sec): 0.1410312.
    Please let me know if this is causing the issue,
    Please note : As soon as I see this tried invoking the csmanagementstore replication and got to know my edge server is not up to date - I am sure this has no relation with push this is for getting the changes informed to edge server,
    Everything works normal with no issues apart from this,
    Seeking your valuable advice here,
    Thanks
    Nelson
    Nelson N Exchange 2003|2007|2010

    Hi Nelson,
    To better understand the issue, I would like to collect the following information.
    1. Have you added the new hosting provider, Microsoft Lync Online, and then set up hosting provider federation between your organization and Lync Online ?
    Configuring for push notifications in Lync Server 2013
    2. Have you installed the new root certificate?
    Lync Servers currently use the GTE CyberTrust Global Root and beginning on June 1st, 2013 will migrate to the Baltimore CyberTrust Root. The
    migration of Lync Online Service to use the new Baltimore trusted root Certificate Authority is planned during May 2013. As of June 1st 2013,
    all of our servers including the Lync Push Notifications Clearing House Service will be on Baltimore certs only. So please ensure that your Lync Server deployments have been updated to trust the Baltimore Root before that.
    http://blogs.technet.com/b/lync/archive/2013/05/02/lync-mobile-push-notifications.aspx
    In addition, it is recommend to update the Lync servers to the lasted version.
    Best regards,
    Eric

  • My ipod all ready had songs on from somewhere (i can not get them back) but i syced my ipod to a different computer and all the songs were deleted ! how do i get them back ? its urgent !

    i have an ipod touch.
    i had 300 odd songs on. i do not have the songs on my laptop. i wanted to add the songs without getting rid of the currnet ones.
    without knowing , i just synced my ipod as usuall and my old songs were deleted. is there anyway in the world i could get those songs back ?!
    i am devistated! those songs bought me so many memories ! please help asap !!! x
    hannah x

    The iPod is not a storage device, all songs should reside on a computer and you can only sync to one machine. However, if these songs were purchased from iTunes you can reload them (see link). If not, and you have no backup, then they are gone.
    http://support.apple.com/kb/ht2519

Maybe you are looking for

  • ? Brand New phone, same iTunes: How to transfer without losing apps/music

    In preparation for a new device, is it possible to transfer all your apps, music, bookmarks from iTunes to your new device without losing your apps/music, etc?  If so, how?  What are the steps involved?  For example, if you have an iPod Touch and wan

  • Contact Pictures not displaying in texts...

    At some point yesterday my contact pictures has stopped showing up in text messages. They still appear when calls are placed and in the actual contact information, but no longer are in texts. I have restarted my phone and also shut it off for over an

  • Using iMac G5 as a display?

    can i use my imac to screen share with my macbook?

  • Jndi OpenLdap password problem

    Hello, I've searched different forums and google for days now but i can't find a solution for my problem. I'm trying to use OpenLdap and Jndi to authentificate users. I can perform an anonymous bind but if i try to authentificate with a user in my Ld

  • PDF Form Online

    I have some pdfs that contain forms, created in LiveCycle and Acrobat Pro. Ideally, I'd like the user to click on a link, have the pdf come up and after they've filled out the form on that pdf, they click a submit button and the pdf gets emailed to m