Caller ID country specific

Hi,
I have had a UK skype number for some time.
I just bought a second (US) number, and now ALL outgoing calls show that number. Including calls to the UK .
OK - so I tried to change it and it has no means of selecting the number depending on where I am calling .
What I WANT it to do (which is the MOST sensible solution anyway ) :
I have a UK and US number.
When calling the UK - it should use my UK number
When calling the US - it should use the US number
When calling anywhere else - I 'should' be able to select which number (or none, or 'local') to use.
This is pretty basic stuff if you want us to buy numbers for different countries. I am absolutely amazed that this is not the standard way of working . Its how I 'assumed' it would just work when I bought a second number .
If it IS possible - how do I set it up please. If not (yet) possible - when will it be ???.
Thanks
Graham

Thanks, guys. I found a solution that works:  before the contact phone number, enter *31# ahead of the area code and number. Whenever that contact phone number is called, the receiving phone will display my caller ID number.
All of the contact numbers in my favorites list have *31#. These are basically staff and family. All of these people have my caller ID information and their phone will display that it is me that is calling.
My office uses Map Mobile for our 24/7 phone answering. They send a text message which includes their typed in name and phone number and also includes the caller's caller ID number. This number is generally but not always the same number as they spoke when they talked to Map Mobile. I can see if they are the same. If I touch the blue link in the text message, the phone dials that number without caller ID and I am speaking to the caller. That way the client calls back to the office number that is answered by Map Mobile and not to my cell phone.
I got this information from another thread on this site. There is apparently another way using *82 and having the AT&T switch block all caller ID (not from within the iPhone) and using *82 to signal the AT&T switch to allow the caller ID for that call, but just entering *31# seems a lot simpler.

Similar Messages

  • How to call  the country specific application depending upon Pers area

    We are using ess / mss on  EP 7  and back end is ECC 6.0    .
    Our requirement is
    Though in R/3 for all employees country grouping maintained for all employees is 40 (India), As per project requirement we need to pull country specific screens for employee in portal  depending upon  the personnel area of logged in employee..
    We need to pull the respective countries page based on the personal area of employee.
    for e.g
    If employee belong to per area   A   then he should get the  US specific  Adddress  application
    If employee belong to per area   B  then he should get the  India  specific  Adddress  application
    If employee belong to per area   C then he should get the  IGermany specific  Adddress  application  etc
    Is there any  configuration / way to achieve this functionality on portal
    Reagrds
    Rajendra

    Hi Rajendra,
    There is something called Internationalization of WebDynpro Iview. Refer this concept. When you will implement and import those packages in program at that time either languages will change automatically location based or u can put if() condition to make the things workable. But more important things will start supporting your IViews.
    Best Regards,
    Roshan

  • Call Country Specific Screen in ESS

    Hi experts,
      I am customizing the ESS Address,want to call country specific screens.How can I call country specific address screen for different countries?
    How SAP call the country specific screen based on contry?
    Thanks&Regards,
    vino
    Edited by: vino on Dec 3, 2008 11:57 PM

    Hi,
    What is this molga ?
    Can anyone explain in detail how to acheive country specific scenarios ( like if i want some UI elements to be visible for one country but not for other )?
    Can this be achieved from the backend settings (spr) in homepage framework or we need to do changes by going into the UI ?
    If changes are to be done by going into UI then do we need to create seperate iviews for each country ?
    Regards,
    Indu

  • How to call Country specific applications based on personal area ?

    Hi all,
    Though in R/3 for all employees country grouping maintained for all employees is 40 (India), As per project requirement we need to pull country specific screens for employee in portal. Screens vary mainly for personal data, address, bank details, family members data as per country .
    We need to pull the respective countries page based on the personal area of employee.
    Reagrds
    Rajendra

    Hi,
    Please go through the blog below:
    /people/amir.madani/blog/2007/01/05/create-dynamic-xss-homepages-with-static-services-using-a-simple-proxy-class
    Hope this helps.
    Cheers-
    Pramod

  • Country Specific PR 1.2 & Global PR 1.2 !

    Region wise and country wise is there a difference in Features included in PR 1.2 like I was reading somewhere India where the phone is not even made available yet, does not have Skype video calling Feature in the PR 1.2 that is scheduled for it.
    So which one should One Flash to, Global version (To have all the features) or Country Specific ?

    Sever wrote:
    i would assume that the countries that have laws against fm transmitters may have it locked out via firmware.
    So in such a case where a particular feature is not made available to a specific country, does it make sense to then Flash to a Global version of Firmware Update so that it gets that feature.

  • Country specific to 99

    Dear Experts,
    Kindly let me know the possibilities to use some country version for other countries for which SAP localization not released
    Since there is no SAP country specific version for Oman, is it possible to  call Saudi specific schema and country specific feature  from Other country versions (99)
    Please provide your suggestions
    Regards,
    R.Rajesh

    Hi Rajesh,
    i thing your talking about payroll.. If you don't have country specific payroll for Oman then you have to go for the international payroll. For this you need to use 99 as the country grouping ( molga). And use the international payroll schema X000.
    you need to incorporate all your statutory deduction or payments via  writing PCR. you should not copy the feature or schema for other country version because all this schema and feature will read the value from it's own specific country group tables. For an example if you copy the schema for Saudi, it will read the saudi country group payroll related tables.
    But if you still wanted to make a copy , then you copy and make it to customer feature or schema and ask your ABAP er to change the structure of schema or feature to read the value according to your country group 99.
    Regards,
    Dinesh.

  • Country specific date format

    Hi,
       Please help me as i require to display dates are per the country , for eg if it is US the date should be dd/mm/yyyy else for other countries like india it should be dd.mm.yyyy .
    Regards
    Abhishek

    I know this is an old thread, but thought I would add my on comments:
    This code example shows how to create a country specific date format.
    Also see table T005 and field DATFM / Domain DATFM
    DATA: external_date  LIKE  rvdat-extdatum,
          country  LIKE  t005-land1,
          internal_date  LIKE  syst-datum,
          internal_period LIKE  tprg-prgrs .
          internal_date = sy-datum.
          internal_period = 1.
          country = 'DO'. "Dominican Republic
    CALL FUNCTION 'PERIOD_AND_DATE_CONVERT_OUTPUT'
      EXPORTING
        country                  = country     " Enter Country Code Here
        internal_date            = internal_date
        internal_period          = internal_period   " Default this value to one
      LANGUAGE                 = SYST-LANGU
      I_PERIV                  = I_PERIV
      I_WERKS                  = I_WERKS
      I_MRPPP                  = I_MRPPP
      IMPORTING
        external_date            = external_date     " The date formated for the country will be in this field
      EXTERNAL_PERIOD          = EXTERNAL_PERIOD
      EXTERNAL_PRINTTEXT       = EXTERNAL_PRINTTEXT
    EXCEPTIONS
      DATE_INVALID             = 1
      PERIODE_INVALID          = 2

  • Disabling country specific checkings for it 0021

    Although we are a german-based company and only do german payroll, we still have to maintain personal records from our employees all over the world, mainly for reporting purposes. Last week someone from our HR-staff tried to create it 0021 subtype 1 (spouse), but just can't manage to get it work. Some debugging showed me, that a class CL_HRPA_INFOTYPE_0021_ES with method CHECK_NIF_CONYUGE_REPRESENTANT is called and throws an error. I haven't figured out what is checked, but I definetly don't want any checking at all. Are there any means to disable this country specific checking (customizing ???).

    Hi Shrinivas
    The messagenumber is 5E048:
    El valor  no está permitido para el parámetro
    According to babelfish.yahoo.com this means:
    The value is not allowed for the parameter
    well, that's the truth from SAP's point of view, because the afore mentionend
    method checks the subtype against t5e91:
    method CHECK_NIF_CONYUGE_REPRESENTANT .
      data:  wa_t5e91 type t5e91,
             l_msg TYPE symsg.
      select single * from t5e91 into wa_t5e91
      where infty eq '0021' and
            subty eq p_subty.
      if wa_t5e91-isfam eq 'C' or wa_t5e91-isfam eq 'R'.
        if p_codim is initial.
          CLEAR l_msg.
          l_msg-msgid = '5E'.
          l_msg-msgty = 'E'.
          l_msg-msgno = '048'.
          CALL METHOD message_handler->add_message
            EXPORTING
              message = l_msg
              cause   = if_hrpa_message_handler=>infotype_specific.
          is_ok = false.
        endif.
      endif.
    endmethod.
    What I need to achieve is, that class CL_HRPA_INFOTYPE_0021_ES isn't called at all, so no checking is done.

  • Crm country specific settings?

    We are implementing Oppurtunity management in CRM for one of our clients in the usa. They have another office in mexico and want to make sure that whatever configurations & settings we do is viewable to their office in mexico in their local language.
    I have never handled a multiple lanuage/country situation before. I want to find out that, if I make changes and customize their sales methodology. For eg I create a new phase called XYZ in the sales assistant. Will this get transalated to the spanish lanuage when they login in that language? What steps do I need to take to ensure this? Do I have to advise the client to have any country specific language versions installed?
    I would greatly appreciate if you can help me out with this stuff.

    Ofcourse you need to have Spanish added as an installed language.  You Basis person should be able to do that without any problems.  In addition, the users of the system should have their local language set. And finally, any developments you do may need to have some screen elements translated, unless you can stick with SAP supplied field elements (they get displayed in the proper language if this was installed by Basis)

  • Fm to read screen labels for country specific screens

    Hi
      Is there any funtion module to read the field labels from modulepool for country specific screens.
    Thanks in advance

    hi,
    chk out this sample code:,
    data: li_dynpfields type table of dynpread,
            lw_temp       like line of li_dynpfields.
            data: lv_molga like dynpread-fieldvalue,
             lv_para like dynpread-fieldvalue,
             lv_subty like dynpread-fieldvalue.
      move 'P_MOLGA' to lw_temp-fieldname.
      append lw_temp to li_dynpfields.
       move 'P_PARA' to lw_temp-fieldname.
      append lw_temp to li_dynpfields.
       move 'P_SUBTY' to lw_temp-fieldname.
      append lw_temp to li_dynpfields.
      call function 'DYNP_VALUES_READ'
        exporting
          dyname               = sy-cprog
          dynumb               = sy-dynnr
          translate_to_upper   = ' '
        tables
          dynpfields           = li_dynpfields
        exceptions
          invalid_abapworkarea = 1
          invalid_dynprofield  = 2
          invalid_dynproname   = 3
          invalid_dynpronummer = 4
          invalid_request      = 5
          no_fielddescription  = 6
          invalid_parameter    = 7
          undefind_error       = 8
          double_conversion    = 9
          stepl_not_found      = 10
          others               = 11.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
      clear lw_temp.
    do 3 times.
      read table li_dynpfields index sy-index into lw_temp.
    if sy-index = 1.
    lv_molga = lw_temp-fieldvalue.
    elseif sy-index = 2.
    lv_para = lw_temp-fieldvalue.
    else.
    lv_subty = lw_temp-fieldvalue.
    endif.
      enddo.
    Regards,
    Arunsri

  • Can't Cancel Country Specific Monthly Subscription

    I have tried to cancel my country specific monthly subscription several times with different browsers in the last month, but every time I click on the link "Thanks but no thanks, I still want to cancel" the page just reloads and I am unable to cancel.  It feels like Skype/Microsoft is making it impossible to simply cancel my subscription.  Any ideas on how to fix this problem?
    Thanks!

    I think you may need to contact customer service regarding your concern. Just click the link below to see the instructions on how you can get in touch with the Support team ;
    http://community.skype.com/t5/The-Skype-Lounge/How​-to-Contact-Skype-Customer-Service/td-p/2056783
    CONTACT SKYPE CUSTOMER SERVICE   |  HOW TO RECORD SKYPE VIDEO CALLS  | HOW TO HANDLE SUPICIOUS CALLS AND MESSAGES   |  WINDOWS PROBLEMS TROUBLESHOOTING   |  SKYPE DOWNLOAD LINKS  
    MORE TIPS, TRICKS AND UPDATES AT
    skypefordummies.blogspot.com

  • I-views - Country specific settings

    Hi,
    We have a requirement of a WD ABAP application for education info in ESS for employee belonging to US, Canada and Trinidad.
    I have defined the z-resource, z-service and the country specific settings for same as well as done the active subtype settings in spro.
    For settings at the portal end, i want to know whether i will have to create an i-view for education data under the 'personal information' for each country?i.e. one education i-view for US, one for canada and one for trinidad. If yes, can all  the three i-views  call the same WD ABAP application?
    If the above is done, then 3 pages will have to be created for the 3 i-views.
    Kindly confirm my understanding.
    TIA.

    Hi,
    You can just have one WDA and maintain OTR for the texts which are displayed on the view.
    Using the FM SOTR_API_WB_TRANSLATE you can maintain translations in your required language.
    Thanks,
    Deepthi

  • SAP support for country-specific legal requirements

    Just wondering if anyone could clarify how does SAP support work for the country-specific legal requirements. I'm sure in every country some new laws come to life regularly that affect the SAP customers and their ERP systems.
    Case in point - on July 1st Mexican authority SAT decided to ask businesses to send them some XML files with some GL account information ('Anexo 24' - see the announcement in Spanish here). The deadline for the first file submission is October 2014.
    This clearly affects every single SAP customer in the whole Mexico, as well as potentially many North America customers who have manufacturing facilities there. So would it be reasonable to expect SAP to come up with some standard solution? XML file extraction doesn't seem to be incredibly complex to me (although I might be off).
    Another question - how would the customers know that SAP is aware of new laws and is taking some action? Could there be an announcement posted somewhere? There is a website for SAP Latin Americabut the latest announcement there is from June and nothing else is on the home page except for the HANA ads. (My Spanish is limited to "dos cervezas por favor", sorry if I missed something.)
    In absence of such communication, naturally, the only option the individual customers have is to send a message to SAP. And that's where SAP replies with a copy/paste text (we got the same exact response as another SCN member here):
    Feel free to maintain this incident opened, but contact us in the next three weeks, then we will be able to confirm if this legal requirement will be supported by SAP.
    I'm confused - "IF"?! This is a legal requirement, there is no "if" for the business. Let's see if I got it right - we wait for 3 weeks, then SAP decides "nah, not gonna support that" (by the way, why is it on the customers to contact support again?) and every SAP customer in the whole country will have to scramble their own resources or pay for consulting (on top of SAP maintenance fees) to deliver the same exact set of programs on their own in under 2 months?
    It could've been just an unfortunate choice of verbiage by Global Support, but I'm curious - is this really how the support for legal requirements supposed to work?
    Thank you.

    Hi Jelena,
    Having been part of the SAP Globalization Services in Brazil, I understand a little bit of that process.
    A few comments:
    1) Localization of SAP solutions to country-specific regulation is under the responsibility of an area called Globalization Services. You can find more info about what they do here:
    http://service.sap.com/globalization
    2) Typically, those country-specific requirements are discussed in much details on the local ASUG chapters (at least that's how we did it in Brazil). That's why it's usually hard to find material in English, but I'd say that your local IT/Biz people in Mexico should be regulars in their local ASUG meetings, specially if they have a specific chapter to discuss Localization matters.
    3) I found out this note with more specifics about "SAT Anexo 24".
    http://service.sap.com/sap/support/notes/2041490
    Apparently SAP is still analyzing it.
    Suggestion if you want to speed the analysis up: reach out to your commercial contact in SAP.
    4) Regarding your statement about the time it takes for the analysis & delivery to take place.
    As an SAP customer, you have all the right to complain about the service level you're getting, it's just that, having been on the other side of the table, I know some facts that sometimes may be taken for granted. For example, SAP do not have infinite maintenance resources. I do understand that all customers pay maintenance and need to have their demands addressed, but SAP does not have a bench of developers available for whenever a new demand appears. If there is a new demand, they need to estimate the efforts and accommodate it into the development resource planning.
    5) From a legal perspective, there is a difference between Legal Change and New Legal Requirement. The latter, if differing too much from the initial purpose of the acquired software, might not necessarily be required by the Software provider to be fulfilled within the maintenance scope. I'm not saying that it's the case for this Mexican requirement, I'm just saying there is this possibility, generally.
    My personal recommendation: get your local Mexico people to be closer to the SAP Mexico team. They are usually responsible to publish information about such local requirements and the SAP release plan.
    Hope that helps.
    Best,
    Henrique.

  • How do I call on a specific child in a container

    I am loaded images into a container that is being displayed on a map.  I've created a string of my images names and am looping a loader to load each image and add them to the container.
    var overlays=["compsmall.png","compsmall3.png","compsmall3.png","compsmall4.png"]
    var overlay_container:MovieClip= new MovieClip();
    function calloverlays():void
    for (var i:Number = 0; i < overlays.length; i++)
    var overlay_url = overlays[i];
    var overlay_loader = new Loader();
    overlay_loader.load(new URLRequest(overlay_url));
    overlay_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, overlayLoaded);
    function overlayLoaded(e:Event):void
    var my_overlay:Loader = Loader(e.target.loader);
    overlay_container.addChild(my_overlay);
    Once all of my images are loaded into the container overaly_container how can I call on a specific child of the container?  For example how can I call on compsmall2.png once its been loaded into overlay_container?
    I place these images onto a map by placing the whole container at the correct location.  I then turn layers on/off by adding and removing the children within the container.  This is why I'd like to specify a specific object in the parent.
    Thanks in advance,
    j

    Well, there are better ways given how you're loading - nesting functions is generally frowned upon... but this should get you started anyway. This is a little function that you could use to hide one of your loaded images:
    function hideLayer(image:String){
        var c:int = overlay_container.numChildren;
        for(var i:int = 0; i < c; i++){
            if(Loader(overlay_container.getChildAt(i)).contentLoaderInfo.url.indexOf(image) != -1){
                overlay_container.getChildAt(i).visible = false;
                break;
    and then use like: hideLayer("compsmall2.png");
    But like I said, there are better ways. But you'd need to restructure your code - get rid of the nested functions, and the loop... then load each image one at a time. Then you know the index in the array of the image being loaded and can match that with the index inside the container...

  • Using Country Specific Chart of Account in addition to Operational COA

    Dear Team
    We are implementing 16 company codes with Group COA A002 and
    Operational COA A001 across all companies. Out of 16 Company codes 4
    company codes already went live and running successfully. We are also
    using one controlling area and operating concern for all company codes.
    Out of 16 company codes there are 2 company codes from Turkey and
    requires Turkey Country specific COA to be used mandatorily. But we
    would like use same COA A001 for Turkey company codes in order to use
    one Controlling Area across group which is not fulfilling the legal
    requirement of the Turkey. We would like to use Country specific COA in
    addition to the Operational COA and the same will be assigned to the
    Company code in OB62.
    In this case we need to create GL Accounts under Turkey COA and assign
    the same in the Operational COA as alternate Account no.
    In this case can we meet all the Turkey country specific legal
    requirements as given below through Alternate GL Accounts No?Turkey Legal Requirements:
    1.Country Specific GL account numbering
    2.Reflection accounting
        - Monthly Closing for Expenses Accounts
        - Yearly closing for Expenses and Balance Sheet accounts
    3.Inflation Accounting- Presently not using
    4.Country Specific Reporting
    5.Bank accounting- Bills if Exchange
    6.Print out of Transactions in Turkish language
    7.Cost of Sales statement
    8.Document Journal     
    9.Taxes on Sales & Purchases
    Please help in this regard.
    Thanks in advance
    Ravi Nalluri

    Hi,
    1. Create country COA in OB13
    2. Assign it to your company code in OB62
    3. Create GL accounts in your country COA
    4. Assign country GL account to your operating COA gl account(FS00 > Control data > Alternative account no.)
    5. System doesn't allow you to assign country COA gl if already has the balance
         So, change message settings accordingly in OBA5
    6. You can see financials from your country COA also as F.01 & F.08(Select Alternative Account Number)
    Rgds
    Murali. N

Maybe you are looking for