How to display incoming caller numbers from india

I live in US. When some one calls from india, No caller ID is displayed on iphone. How to see the number. I already verified that the callers did not blocked their numbers from being visible.

I am using att. The number gets displayed on other att phones but not on iphone. This makes me believe that it should be problem with iphone.!

Similar Messages

  • How to limit incoming call on B-ACD CME?

    I have configure B-ACD on CME 4 and its working. But I have a problem with incoming call from outside (PSTN). I set queue-len for 30 queue. But on busy hour, some call hear only ring tone. No greeting tone or busy tone. When I check call session, its only 10 or 15 session.
    How to limit incoming call, let say, for 10 calls only? The 11th call will receive busy tone.
    Here are my config:
    application
    service queue flash:app-b-acd-2.1.2.2.tcl
    param queue-len 30
    param queue-manager-debugs 1
    param number-of-hunt-grps 1
    param aa-hunt2 0
    service aa flash:app-b-acd-aa-2.1.2.2.tcl
    paramspace english index 1
    param number-of-hunt-grps 1
    param handoff-string aa
    param dial-by-extension-option 1
    paramspace english language en
    param max-time-vm-retry 1
    param max-extension-length 7
    param aa-pilot 2999
    paramspace english location flash:
    param second-greeting-time 30
    param welcome-prompt _bacd_welcome.au
    param call-retry-timer 15
    param max-time-call-retry 60
    param voice-mail 0
    param service-name queue
    FYI: I have no voice mail. 'param voice-mail 0' is to send unanswered call to my operator.
    Regards,
    Iwan

    Hi Iwan,
    To restrict the number of calls to the application you need to configure only the appropriate number (10 in your example) of dial-peers to point to the AA Pilot number. Have a look;
    Set Up Incoming Dial Peers for AA Pilot Numbers
    In this task, you associate dial peers for incoming calls with the AA service that you want them to use.
    Cisco Unified CME B-ACD is available for outside calls through voice ports and trunks, for which dial peers must be set up. When you set up a dial peer, you use the service command to associate it with the name of the Cisco Unified CME B-ACD AA service that you want callers to that dial peer to reach.
    Note You must configure a dial peer for each incoming DID voice port.
    To determine how many ports or trunks you must have for your Cisco Unified CME B-ACD service, consider the following:
    Total number of phones across all ephone hunt groups
    Total number of slots in the queues across all queues
    Total number of PSTN ports feeding into the queues
    The number of simultaneous calls that Cisco Unified CME B-ACD can handle is limited by the number of PSTN ports, but these ports may not always be in use. For example, you could have three queues with ten slots per queue, but configure only 10 ports instead of 30 because you do not expect the three queues to ever be full at one time.
    From this good doc;
    http://www.cisco.com/en/US/products/sw/voicesw/ps4625/products_configuration_guide_chapter09186a00805f2305.html#wp1003323
    Hope this helps!
    Rob

  • How do I retrieve call history from my iPhone 4S? It only seems to log for about a month and I need an earlier date?

    How do I retrieve call history from my iPhone 4S? It only seems to log for about a month and I need an earlier date?

    If you have backup of your files, you can get your call history back as long as you sync iPhone with iTunes frequently.
    OK, the first thing you are required to do is close the function of "prevent iPhone from syncing automatically." in iTunes, avoiding to sync iPhone again.
    Now, connect your iPhone to pc and open iTunes.
    iTunes> preferences> devices
    All the backup data in iTunes will be displayed.
    Then,click the File menu and select Devices > Restore from Back up
    your iPhone will restart and you can find them back.
    This method only can find back the latest history, to get back the old, you should turn to a third party program for help.

  • Creating BOM using BDC :How to display no of records from flat file under

    Hi,
          How to display no of records from flat file under one (Alternative BOM) vertically.
        When i execute, the records are replacing one by one.
    Here my coding:
    report ZBOM1
           no standard page heading line-size 255.
    *include bdcrecx1.
    DATA: BEGIN OF bdc OCCURS 0,
           matnr(18),
           werks(4),
           stlan(1),
          END OF BDC.
    DATA: BEGIN OF BDC1 OCCURS 0,
           idnrk(18),
           MENGE(18),
           MEINS(3),
           postp(1),
          END OF bdc1.
    DATA: BEGIN OF BDCDATA OCCURS 0,
             matnr(18),
             werks(4),
             stlan(1),
             idnrk(18),
             MENGE(18),
             MEINS(3),
             postp(1),
             posnr(4),
          END OF BDCDATA.
    data: ibdcdata type  standard table of bdcdata WITH HEADER LINE.
    *start-of-selection.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                      = 'C:\Documents and Settings\dilipkumar.b\Desktop\soft.txt'
       FILETYPE                       = 'ASC'
       HAS_FIELD_SEPARATOR            = ','
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
      CODEPAGE                      = ' '
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
      CHECK_BOM                     = ' '
      VIRUS_SCAN_PROFILE            =
      NO_AUTH_CHECK                 = ' '
    IMPORTING
      FILELENGTH                     =
      HEADER                         =
      TABLES
        DATA_TAB                      = BDCDATA
    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 ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *perform open_group.
    loop at bdcdata.
    perform bdc_dynpro      using 'SAPLCSDI' '0100'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RC29N-STLAN'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'RC29N-MATNR'
                                  'SOFTDRINKS'.
    perform bdc_field       using 'RC29N-WERKS'
                                  'WIND'.
    perform bdc_field       using 'RC29N-STLAN'
                                  '1'.
    perform bdc_field       using 'RC29N-DATUV'
                                  '16.09.2008'.
    perform bdc_dynpro      using 'SAPLCSDI' '0110'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'RC29K-BMENG'
                                  '1'.
    perform bdc_field       using 'RC29K-STLST'
                                  '1'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RC29K-EXSTL'.
    perform bdc_dynpro      using 'SAPLCSDI' '0111'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RC29K-LABOR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_dynpro      using 'SAPLCSDI' '0140'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RC29P-POSTP(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=FCBU'.
    perform bdc_field       using 'RC29P-IDNRK(01)'
                                  BDCDATA-IDNRK.
    perform bdc_field       using 'RC29P-MENGE(01)'
                                  BDCDATA-MENGE.
    perform bdc_field       using 'RC29P-MEINS(01)'
                                  BDCDATA-MEINS.
    perform bdc_field       using 'RC29P-POSTP(01)'
                                  BDCDATA-POSTP.
    perform bdc_dynpro      using 'SAPLCSDI' '0130'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RC29P-POSNR'.
    perform bdc_field       using 'RC29P-POSNR'
                                   BDCDATA-POSNR.            "'0010'.
    perform bdc_field       using 'RC29P-IDNRK'
                                  BDCDATA-IDNRK.             "'15'.
    perform bdc_field       using 'RC29P-MENGE'
                                  BDCDATA-MENGE.             "'1'.
    perform bdc_field       using 'RC29P-MEINS'
                                  BDCDATA-MEINS.             "'ml'.
    perform bdc_dynpro      using 'SAPLCSDI' '0131'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RC29P-POTX1'.
    perform bdc_field       using 'RC29P-SANKA'
                                  'X'.
    *perform bdc_transaction using 'CS01'.
    *perform close_group.
    CALL TRANSACTION 'CS01' USING IBDCDATA MODE 'A' UPDATE 'S'.
    REFRESH IBDCDATA.
    endloop.
           Start new screen                                              *
    FORM BDC_DYNPRO USING PROGRAM DYNPRO.
      CLEAR iBDCDATA.
      iBDCDATA-PROGRAM  = PROGRAM.
      iBDCDATA-DYNPRO   = DYNPRO.
      iBDCDATA-DYNBEGIN = 'X'.
      APPEND ibDCDATA .
    ENDFORM.
           Insert field                                                  *
    FORM BDC_FIELD USING FNAM FVAL.
    IF FVAL <> NODATA.
        CLEAR iBDCDATA.
        iBDCDATA-FNAM = FNAM.
        iBDCDATA-FVAL = FVAL.
        APPEND iBDCDATA .
    ENDIF.
    ENDFORM.

    Hi,
    the BDCDATA structure must be fnam, fval,dynbegin,dynpro,program.
    You have to declare like this and pass this in your CALL TRANSACTION statement.
    Please give some other table name for BDCDATA you declared for and also for IBDCDATA.

  • I have all my devices connected to iCloud.  I would like a reduced contact list on my iPhone without removing any from my master list on my computer.  How do I delete contact numbers from my phone without disrupting the master list on my computer?

    I have all my devices connected to iCloud.  I would like a reduced contact list on my iPhone without removing any from my master list on my computer.  How do I delete contact numbers from my iphone without disrupting the master list on my computer?

    Are you trying to reduce the visual clutter on the phone, save space on the phone, or limit the security exposure if your phone is stolen?
    If you are only wanting to reduce the visual clutter and make scrolling through the list faster, you could set up a group on the computer containing only the contacts you want to see on my phone (called, for example, "Show on my Phone") and enable only that group inside Contacts on the phone. You might even have one or more existing groups that you could enable that way (maybe "Family" and "Personal").

  • HT1349 just got a new iphone. How do you transfer phone numbers from an old iphone to a new one

    How do you transfer phone numbers from a 3gs to a 4s?

    PLug your 3gs into iTunes, in the left panel right click on your iPhone and create a backup. After the back up is complete plug your 4s into iTunes, right click on it in the left panel and select restore from backup, select the backup file from your 3gs and that should load everything from your 3gs to your new iphone
    http://support.apple.com/kb/HT2109

  • How to display a new view from a nib ?

    how to
    display a new view from a nib in the main window after clicking on a button.
    When I click a the button named for example "goToGokyo", the link to my procedure
    runs correctly because I see my NSLog message "goToGokyo button pressed".
    My nib, which name is "GokyoViewController" does exist.
    I did as follow for the moment but I'm stuck now, my nib  :
    - (IBAction)goToGokyo:(id)sender
        NSLog(@"goToGokyo button pressed");
      //[self stopSound];
      if (gokyoViewController == nil)
            GokyoViewController *aGokyoViewController = [[GokyoViewController alloc]
                                                         initWithNibName:@"GokyoViewController" bundle:nil];
            self.gokyoViewController = aGokyoViewController;
            //[aGokyoViewController release];
        [self GokyoView:gokyoViewController animated:YES completion: nil];
    Thanks in advance for your advice.
    Cheers

    I did that now :
    - (IBAction)btnLoadMyViewController:(id)sender
        NSViewController *viewController = [[NSViewController alloc] initWithNibName:@"MyView" bundle:nil];
        NSView *view = [viewController view];
        [_myWindowController.window setContentView:view];
        //view addSubview:view];
        //[self.myView addSubview:view];
    Using
    "_myWindowController.window setContentView:view];"
    or
    "[self.myView addSubview:view];"
    does not an error but does nothing !
    Would you help me one more times please ?
    Thanks in advance

  • Handling incoming caller ID from legacy PBX

    Hello,
    At my company we're currently in the process of running Lync 2010 EV through a POC. Everything is working great at the moment except for incoming caller ID from the legacy PBX. When a call comes into Lync from the legacy PBX (either from a desk phone or
    from outside the company), the legacy PBX replaces the actual 'from' number with the company's main number. Apparently this is due to the legacy PBX being old and masking the outbound caller ID information at a global level. (So basically ANY call that goes
    outbound from the legacy PBX has the caller ID masked with the main number, no way to make exclusions. This has been verified by the vendor that services the legacy PBX.)
    The problem this introduces on the Lync client is that in the address book everyone has the company's main number as their phone number, except with an extension at the end. So when a call comes in from the legacy PBX the Lync client quite literally randomly
    picks someone from the address book and says the call is coming from the randomly picked person.
    So far in my attempts to fix this, I've tried creating a contact in AD with a phone number of just the main number. This did not change anything from the Lync clients perspective, however when I miss a call that was sent from the legacy PBX, Outlook now
    indicates that the missed call is from the contact object with the main number instead of saying I missed a call from some random person from the address book.
    I've also looked into seeing if a MSPL script could intercept incoming audio requests and change the From parameter to something else if the From value was the main number. So far I haven't seen any examples of this, nor do I have a test environment to test
    MSPL scripts in yet.
    Does anyone have any suggestions on what can be done for the POC we're trying to do? Obviously if (more like 'when' really...) we decide to move everything over to Lync EV and pull the plug on the legacy PBX this won't be an issue, but right now I can't
    even move forward with doing a POC outside of my team until I figure out something to do with the inbound caller ID.
    Thanks,
    Cody

    How are you connected to the legacy PBX?  It might be easier to put a modification in a gateway if you're using one. 
    Also, why Lync 2010 instead of 2013? 
    What do you have set for the lineURIs of the users?  Is it the main number with extensions or a DID?
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications

  • How to disconnect incoming call in ios7 when iPhone is locked?

    How to disconnect incoming call in ios7 when iPhone is locked?

    Press the Sleep/Wake button twice quickly on the top of iPhone

  • How to display a oracle table from a java program?

    How to display a oracle table from a java program.
    Hello friends, I have written a Java program, using oracle 10g as backend.
    I want to display a oracle table as output. Im not getting how to display oracle table as a output table.. Pls help me
    Thank you

    jayanthds, you're not going to get a satisfactory
    answer to this here. it's too big a task to justbe
    quickly outlined in a forum - the reply "all youneed
    to do is to query you table and return it asJTable"
    is worthless, for example, since the solution to
    any problem can be distilled to such a
    soundbite, if need be. doesn't make the solutionany
    simpler
    essentially you're asking "how do I write adatabase
    application?". all you'll get is snippets of code
    that, when fitted together, will eventually helpyou
    do this, but you'll spend days and days comingback
    saying "right, I've done that, now what?" until
    either you or the forum gets frustrated with the
    whole affair and the process stops
    there are entire books written about this subject,
    and countless tutorials and guides on theinternet.
    you're better off going down that routehehehe.well, it's true! I used to have a manager that would outline the solution to a problem in a few lines of pseudocode, and then firmly believe that the actual solution would be just as brief and simple. shame his pseudocode included such lofty abstractions as "reformat all data"

  • We have 2 iphones both synched to 1 ipad how do we reovw phone numbers from only one of the phones

    We have 2 iphones and they are both synched to an ipad, how do we reomve phone numbers from only one of the phones without hte numbers being removed from the other phone

    one can't sync iPhones with ipads
    best you can do is to sync all with iclouds
    if you do so and wish to stop syncing contacts with one of the iPhones you have set it not to sync contacts in the settings of the iPhone

  • How to block incoming call on iphone

    how to block incoming call on iphone

    Contact your carrier & see if they offer call blocking...some do, some don't. There is no other way to block calls on any cell phone.

  • Non- Display of Incoming calls numbers.

    hi,
    i have an iPhone 4(factory unlocked) running iOS4.1. when i get incoming calls, the incoming call number is displayed as "UNKNOWN CALLING" and not the number.
    all incoming calls are displayed like above including my contacts in the phone.
    can anybody answer my query.
    thanks,

    yes it is enabled only.
    previously it was showing the numbers, but suddenly for the past one week, it's showing unknown.

  • BB will not Display Incoming Calls Contact Info

    Hi there,
    I am a new user to the Black Berry world, and have encountered a problem I hope can be fixed.
    I have 84 contacts in my Adress Book in my Black Berry 8900, all with 10 digit phone numbers linked to each.
    I do not pay for caller ID through Rogers Canada (Just to let you know).
    The problem I am having is that, when one of my contacts call me, even though I have there phone number in my contact list their name or picture does not appear. I simply get a pop up saying Incoming Call Unknown Number...
    I've done some searching online and found that in some other black berries people had this fixed by turning off their content protection in secruity>General settings> Content Protection.
    This however did not work for my phone.
    I have had a Sony Ericsson W580i which was capable of doing this simple feature from over a year ago and was on the Rogers service for that phone too.
    I just got off the phone with Rogers and they are claiming that without Caller ID it is impossible to do this simple feature on a Black Berry.
    Hope I can have my issue solved here!
    Thanks in advance!
    Nick 

    Well, unless I'm missing it, none of those posts referred to not having the CallerID service provisioned on the line...rather, they seemed to be discussing getting callerID to display from contacts in the device address book versus the SIM. Personally, I have no use for my SIM...I'm on VZW, though...not sure if other devices or other carriers can handle a BB with no SIM. Probably not.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to display a Report 9i from Forms if the Report has a Parameter Form?

    Hi,
    could some one please post me a code sample to show how to call a (paper layout, RDF) Report from Forms if I would like it to display the Report's parameter form first?
    Thank you in advance.
    Tamas Szecsy
    I used the following code segment do achieve the job, but I get "REP-546: Warning: The value of restricted LOV parameter P_ALAL is not among the selectable values" message, even though I would like to specify the P_ALAL value on the report's parameter Form.
    declare
    paramlist_id ParamList;
    tmp_riport_name varchar2(200);
    report_id          report_object;
    report_job_id varchar2(200);
    tmp_id number;
    begin
    -- init
    tmp_riport_name := null;
              -- parameter list
    paramlist_id := get_parameter_list('mytmp_params');
    if not id_null(paramlist_id) then
    destroy_parameter_list(paramlist_id);
    end if;
    paramlist_id := Create_Parameter_List('mytmp_params');
    add_parameter( paramlist_id, 'PARAMFORM', TEXT_PARAMETER, 'YES' );
              -- call report
    report_id := find_report_object( 'DUMMY' );
    if report_id.id is null then
         return;
    end if;
    -- display
    set_report_object_property( report_id, report_execution_mode, runtime );
    set_report_object_property( report_id, report_comm_mode, synchronous );
    set_report_object_property( report_id, report_destype, 'preview' );
    set_report_object_property( report_id, report_desformat, 'PDF' );
    set_report_object_property( report_id, report_server, 'rep_geoias' );
         set_report_object_property( report_id, report_filename, :ALAP_REPORTS_NAME||'.rep' );
    report_job_id := run_report_object( report_id, paramlist_id );
    tmp_id := to_number(substr( report_job_id, length(name_in('rep_geoias'))+2 ));
    web.show_document( '/reports/rwservlet/getjobid'||tmp_id||'?server=rep_geoias', '_blank' );
    END;

    I think you specified report object name incorrect.
    in command line:
    repid := FIND_REPORT_OBJECT('REPORT1');
    Report1 must be name of report object in Form Builder.
    However to call report from Oracle Form you must do more work. For example:
    - Create report server name
    - Adding some code to set property for report object base on report server you created.
    Cheer!

Maybe you are looking for

  • How to get timesheet information in a javascript (Project Server 2013)

    Hi all, In Project Server 2013, I'm trying to customize the Timesheet ribbon. This far, I've been able to add a new button and tie an event to it. All is working well. This is all done using elements.xml and a javascripts. Now the problem is that I w

  • Pricing of Service Entry Sheet is not coming in editable mode in ML81N

    Dear Friend, I am trying to create a Service Entry Sheet in ML81N where selecting the red button for Condition where itu2019s all coming in display mode where as I have maintained some Z Condition to put the value or % wise. Client requirement is put

  • How do I transfer the music from my iPad to iPhone?

    I have an iPad 2 with lots of music. I want to transfer the tunes to my iPhone 3GS. How?

  • NoClassDefFound org/omg/CORBA/UserException

    I am attempting to install IFS 1.0.8 for a new instance on a Unix server 2.7 that already has an existing IFS 1.0.8 install against another database. Following the creation of the second ORACLE_HOME, second instance, and the installing IFS, I attempt

  • Datafile problem

    Hi Gurus, I have two different environments A and B(diff hardware) where two identical oracle user exists. My problem is in one environment which is currently live(env A) has the data file size 8G whereas in the other one(env B) I have to resized the