Out of State Sprint Users can't call me on my Verizon iPhone 4S, any ideas?

I'm not sure what is going on.  I have spoken to Verizon about this repeatedly and they keep saying it is an Apple problem.  I don't see how that is possible since everyone else can reach me just fine.  Does anyone have any suggestions on how to fix this?

The front line folks that answer the phone for these carriers are not the sharpest tacs in the box.
Anyone who tells you this is an Apple problem is a bonified idiot or completely clueless.

Similar Messages

  • I can't receive calls form out of state Sprint users...

    Does anyone have any idea what could be going on?  Everyone I know that uses Sprint and live in another state or has an out of state area code can't call me.  They get a message that says I'm not accepting incoming calls.  Yes, I have paid my bill.  Can anyone please help me?

    I had the same issue with an AT&T customer. I contacted Verizon - thay found a "forwarding switch" that was activated.  I never had any calls forwarded so it did not make any sense.  Verizon turned off the switch and my problem went away. Good luck.

  • How can we call WinAPI's from java... any idea... its urgent

    Hi all,
    I am facing a problem, I want to call Win API's form Java. any idea..
    Any win API.. like GetUserNameA.... (it fetches current user logged in).
    Its bit urgent guys... i have always counted on u guys...
    Thx & Regards
    @mit

    I needed to do exactly this; use getUserNameEx, a couple of weeks back and I asked, then solved it myself and posted my code. A forum search should turn it up,
    The only method, of course, is to use JNI and do the call from C.
    Found it:
    http://forum.java.sun.com/thread.jspa?threadID=747248&tstart=585
    Message was edited by:
    malcolmmc

  • I am seeing errors like:Status: 5.4.4 (Illegal host/domain name found). Almost all destinations have no A records, only MX records. The user can usually resend the message and it works.  Any ideas?

    I do have MX in tcp_local in imta.cnf

    The problem is not in the mail software, the problem is in your DNS system. 554 is a permenant failure which means that the MTA got an authoritative response from DNS reporting that the host/domain did not exist.
    When the user tries again, the MTA queries again, and this time DNS responds with a positive response.
    First see the NMS tuning guide and enable nscd, it might be related, not sure, can't hurt, will improve performance.
    Your DNS server should be waiting until it gets a positive/negative response from the root servers. Sounds like that is not happening, maybe a timeout kicking in and causing it to return a authoritative answer (which is incorrect) and then on a subsequent query the response made it and thus the lookup works.

  • Can we call functional module in a subroutine? Any example?

    Can we call functional module in a subroutine? Any example?

    sample code....
    REPORT  ZPL_BDC_PA30.
    TABLES : PA0022.
    DATA : V_PERNR LIKE PA0022-PERNR,
           V_SLABS LIKE PA0022-SLABS.
    DATA : FILENAME TYPE STRING.
    DATA : BEGIN OF IT_DATA OCCURS 0,
             PERNR LIKE PA0022-PERNR,       "Personnel Number
             SLABS LIKE PA0022-SLABS,       "Certificate code
             SLABS1 LIKE PA0022-SLABS,      "Certificate code new
           END OF IT_DATA.
    DATA : IT_BDCDATA LIKE BDCDATA OCCURS 1 WITH HEADER LINE.
    DATA : BEGIN OF IT_ERROR OCCURS 0,
             POS LIKE SY-TABIX,
             TEXT(40),
           END OF IT_ERROR.
    PARAMETERS : P_FNAME TYPE DXFIELDS-LONGPATH.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FNAME.
      CALL FUNCTION 'F4_DXFILENAME_TOPRECURSION'
    EXPORTING
      I_LOCATION_FLAG       = ' '
      I_SERVER              = '?'
      I_PATH                = I_PATH
      FILEMASK              = '.'
      FILEOPERATION         = 'R'
       IMPORTING
      O_LOCATION_FLAG       = O_LOCATION_FLAG
      O_SERVER              = O_SERVER
         O_PATH                = P_FNAME
      ABEND_FLAG            = ABEND_FLAG
       EXCEPTIONS
         RFC_ERROR             = 1
         ERROR_WITH_GUI        = 2
         OTHERS                = 3
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    START-OF-SELECTION.
      FILENAME = P_FNAME.
      PERFORM UPLOAD.            "Uploading inputfile to internal table.
      PERFORM VALIDATE.          "validating the values
      PERFORM POPULATE_BDC.      "Populating bdc internal table
      PERFORM ERROR_RECORDS
            TABLES IT_ERROR.     "Error records
    *&      Form  bdc_fdata
    FORM BDC_FDATA  USING  FNAM FVAL.
      CLEAR IT_BDCDATA.
      IT_BDCDATA-FNAM = FNAM.
      IT_BDCDATA-FVAL = FVAL.
      APPEND IT_BDCDATA.
    ENDFORM.                    " bdc_fdata
    *&      Form  bdc_hdata
    FORM BDC_HDATA  USING PROGRAM SCRNO DYNBEGIN.
      CLEAR IT_BDCDATA.
      IT_BDCDATA-PROGRAM = PROGRAM.
      IT_BDCDATA-DYNPRO = SCRNO.
      IT_BDCDATA-DYNBEGIN = DYNBEGIN.
      APPEND IT_BDCDATA.
    ENDFORM.                    " bdc_hdata
    *&      Form  upload
    FORM UPLOAD .
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME                      = FILENAME
         FILETYPE                      = 'ASC'
         HAS_FIELD_SEPARATOR           = 'X'
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
      CODEPAGE                      = ' '
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
      CHECK_BOM                     = ' '
      VIRUS_SCAN_PROFILE            = VIRUS_SCAN_PROFILE
      NO_AUTH_CHECK                 = ' '
    IMPORTING
      FILELENGTH                    = FILELENGTH
      HEADER                        = HEADER
        TABLES
          DATA_TAB                      = IT_DATA
       EXCEPTIONS
         FILE_OPEN_ERROR               = 1
         FILE_READ_ERROR               = 2
         NO_BATCH                      = 3
         GUI_REFUSE_FILETRANSFER       = 4
         INVALID_TYPE                  = 5
         NO_AUTHORITY                  = 6
         UNKNOWN_ERROR                 = 7
         BAD_DATA_FORMAT               = 8
         HEADER_NOT_ALLOWED            = 9
         SEPARATOR_NOT_ALLOWED         = 10
         HEADER_TOO_LONG               = 11
         UNKNOWN_DP_ERROR              = 12
         ACCESS_DENIED                 = 13
         DP_OUT_OF_MEMORY              = 14
         DISK_FULL                     = 15
         DP_TIMEOUT                    = 16
         OTHERS                        = 17
      IF SY-SUBRC <> 0.
        MESSAGE I000(BCTRAIN) WITH 'FILE NOT UPLOADED'.
      ELSE.
       MESSAGE I000(BCTRAIN) WITH 'FILE UPLOADED'.
      ENDIF.
    ENDFORM.                    " upload
    *&      Form  populate_bdc
    FORM POPULATE_BDC .
      LOOP AT IT_DATA .
        PERFORM BDC_HDATA USING 'SAPMP50A'
                                    '1000'
                                    'X'.
        PERFORM BDC_FDATA USING 'RP50G-PERNR'
                                 IT_DATA-PERNR.
        PERFORM BDC_FDATA USING 'RP50G-CHOIC'
                                 '0022'.
        PERFORM BDC_FDATA USING 'BDC_OKCODE'
                                 '=MOD'.
        PERFORM BDC_HDATA USING 'MP002200'
                                     '2000'
                                     'X'.
        PERFORM BDC_FDATA USING 'P0022-SLABS'
                                 IT_DATA-SLABS1.
        PERFORM BDC_FDATA USING 'BDC_OKCODE'
                                 '=UPD'.
        CALL TRANSACTION 'PA30' USING IT_BDCDATA.
        REFRESH IT_BDCDATA.
      ENDLOOP.
    ENDFORM.                    " populate_bdc
    *&      Form  validate
    FORM VALIDATE .
        data : num like sy-tabix,
               num1 like sy-tabix.
      LOOP AT IT_DATA.
       num = num + 1.
    num1 = sy-tabix.
        SELECT PERNR
             FROM PA0022
             INTO V_PERNR WHERE
             PERNR EQ IT_DATA-PERNR.
        ENDSELECT.
        IF SY-SUBRC <> 0.
          MOVE num TO IT_ERROR-POS.
          MOVE 'Invalid Pernr' TO IT_ERROR-TEXT.
          APPEND IT_ERROR.
          DELETE IT_DATA .
        ELSE.
          IF IT_DATA-SLABS IS INITIAL.
            MOVE num TO IT_ERROR-POS.
            MOVE 'Certificate code is initial' TO IT_ERROR-TEXT.
            APPEND IT_ERROR.
            DELETE IT_DATA.
          ENDIF.
        ENDIF.
      ENDLOOP.
    ENDFORM.                    " validate
    *&      Form  error_records
    FORM ERROR_RECORDS TABLES IT_ERRORS.
      FORMAT COLOR COL_GROUP.
      WRITE : / 'Error in the following records : ' .
      FORMAT COLOR COL_NEGATIVE.
      LOOP AT IT_ERROR.
        WRITE : /  IT_ERROR-POS,
                   IT_ERROR-TEXT.
      ENDLOOP.
    ENDFORM.                    " error_records

  • My iphone was restored to its original state and I lost all of my contacts and applications... any ideas how I can get it back??

    My iphone was restored to its original state and I lost all of my contacts and applications... any ideas how I can get it back??

    Why did you restore without transferring your music to your computer?
    If you are in the U.S., then you can use the newly released beta version of the cloud to get your music.

  • I have transferred a load of files from my PC to my iMac using the migration assistant.  The message on both machines say that the process was successful bu tI can not find the files on the mac.  Any ideas?

    I have transferred a load of files from my PC to my iMac using the migration assistant.  The message on both machines say that the process was successful but I can not find the files on the mac.  Any ideas?

    When you use Migration Assitant it creates another user account and puts your files there. Please log out of your normal account and log into the new account. Had you use Setup Assistant when it asked if you were migrating that would not have occured. You have a couple of options, combine the two accounts (not recommended) or start over, use Setup Assistant and have everything in one user account. Here is a link to Pondin's guide for Lion Setup Assistant tips however if you want to combine the two accounts he has addressed that in
    http://pondini.org/OSX/Transfer.html

  • I have existing projects made in iMovie and now I can't play them or edit them... any idea what's going on? Thank you

    I have existing projects made in iMovie and now I can't play them or edit them... any idea what's going on? P/s M preview window is totally blank.  I can't figure out what went wrong. Thank you

    For iMovie to see your projects, they must be in a certain place. If they are on your startup internal hard drive, they must be in the Movies/iMovie Projects/ folder. If they are on an external drive, they must be in the iMovie Projects/ folder at the top level of the drive. Is it possible that your projects have been moves somewhere else?

  • HT4059 I just downloaded IOS 7.0.2, and I can't open the books in iBooks...any ideas?

    I just downloaded 7.0.2 to my IPad. When I open my iBooks, I can't get my books to download...any ideas?

    Okay... try this...
    Go to Settings -> iTunes & App Store -> Apple ID and sign out of your account. Then sign back in with your Apple ID. Try downloading again.
    If that doesn't work, go to Settings -> General -> Reset -> Reset All Settings. When done, turn your iPad off (hold the Sleep button down for several seconds. When the red slider appears, switch it off. Wait a few seconds and then press and hold the Sleep button for 1-2 seconds and let go). After the reboot you will need to reconnect your Wi-Fi, log back in to App Store, iBook Store, and iTunes. Try downloading content again.
    Hope this answers your question!
    ~Joe

  • HT5557 since i updated my Apple ID with correct email address I can now only send imessages to email addresses and not iphone numbers - any idea how to fix this problem ?

    since i updated my Apple ID with correct email address I can now only send imessages to email addresses and not iphone numbers - any idea how to fix this problem ?

    You might want to try contacting Apple for assistance by going to https://expresslane.apple.com, then click See All Products and Services>iTunes>iTunes Store>Passwords & Security Questions>Lost or Forgotten Apple ID password.  They should be able to explain what's going on and help you reset the password for the old ID if necessary.  The call should be free.

  • I have been suggested to down grade to 10.6.6 due to issues with Adobe and Apple working things out. I have downloaded 10.6.6 but wont let me install. Any ideas?

    I have been suggested to down grade to 10.6.6 due to issues with Adobe and Apple working things out. I have downloaded 10.6.6 but wont let me install. Any ideas?

    Yes, simply reinstall from your Snow Leopard installer disc.  The reinstall will not erase the hard drive.  After reinstalling you can upgrade to 10.6.6 with your updater.

  • I have a CC subscription for Lightroom and purchased the upgrade for my standalone Ver. 5 to Ver. 6, but I can't install the standalone upgrade. Anyone have any idea how to do it?

    I have a CC subscription for Lightroom and purchased the upgrade for my standalone Ver. 5 to Ver. 6, but I can't install the standalone upgrade. Anyone have any idea how to do it?

    sjrozas wrote:
    I'm only trying out the subscription. Thanks for being so concerned about my finances.
    Sent from my mobile.
    Your initial post indicated that you had a CC subscription. That seems to imply that you have subscribed. If you hadn't already purchased Lightroom 6 I would suggest that you wait until you decide about CC. You really don't need both because the Lightroom program is precisely the same except for Lightroom 6 without the creative cloud has no Lightroom mobile capabilities. But I was only trying to help.

  • I can listen to audiobook on my mac through itunes but can't get it to download onto my iphone. Any ideas?, I can listen to audiobook on my mac through itunes but can't get it to download onto my iphone. Any ideas?

    I can listen to audiobook on my mac through itunes but can't get it to download onto my iphone. Any ideas?, I can listen to audiobook on my mac through itunes but can't get it to download onto my iphone. Any ideas?

    I have this question also.  They were there and now they are not.  Until this is fixed I will not purchase another audiobook. 

  • TS1629 How do I use home sharing with direct TV / Verizon internet. I have turned on Home sharing on apple tv and in iTunes but can't see the library in apple tv. I can see the photo stream but thats it. Any Ideas????

    How do I use home sharing with direct TV / Verizon internet. I have turned on Home sharing on apple tv and in iTunes but can't see the library in apple tv. I can see the photo stream but thats it. Any Ideas????

    go to home-sharing on Apple TV and type in your info as ask.
    hope this help

  • Itunes and all my movies have disappeared,i can no longer add to library from my external hdd which ive always used and can only add from the laptops own hard drive,any ideas what the issue could be?

    ive recently updated, itunes and all my movies have disappeared,i can no longer add to library from my external hdd which ive always used and can only add from the laptops own hard drive,any ideas what the issue could be?if i transfer the movies from the external to the laptop they will add to the library without any problem so theres no issue with the laptop but when i go to add file in itunes i can path to the external but as soon as i select the file nothing happens, just goes back to itunes

    This happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, or that the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout,or vice-versa, and so is looking in slightly the wrong place.
    Select a track with an exclamation mark, use Ctrl-I to get info, then cancel when asked to try to locate the track. Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, or a drive letter has changed, it should be possible to reverse the actions.
    Alternatively, as long as you can find a location holding the missing files, then you should be able to use my FindTracks script to reconnect them to iTunes .
    tt2

Maybe you are looking for

  • Update Button for every Row of Report

    hello, is it possible to get an update button for every row of a report? After clicking this button, only this row of the report should be updated. thanks in advance dave

  • File opening error-smartform pdf

    dear friends , i created a smartform and converted the smart form into pdf file and downloaded the same but when im trying to open the file a pop-up is coming with the msg like the file is corrupted or damaged. can any one help me on this issue. for

  • Crystal XI Chinese Character Problem

    Hello, I have a report that is out a notes section that may, or may not, contain Chinese characters. This report is loaded from SQL, and is displayed as an RTF field. When I view the report using Cyrstal Reports the Chinese characters appear correctl

  • How to restore photos with all albums and metadata to later version of iPhoto?

    Hi everyone I recently had a hard drive crash on my "vintage" 2006 intel iMac. Got the HD replaced but the support service I used was unable to retrieve any of my data off it. Luckily I had all files backed up in a cloud service. The support service

  • Automatic Display of NEW Data in ALV Report using Classes and Methods

    Hi, I have developed a ALV Report for displaying data from a set of DB tables using ABAP OO, Classes and Methods. The requirement is to have the report output to be automatically updated with the new entries from the DB table at a regular frequency o