Problems with CME user locale

Hello!
I have Cisco 2811(IOS 12.4(22)T1, CME 7.0.1).
I try to set up user locale but get error message:
voip(config-telephony)#user-locale U2 US
Updating CNF files
Cannot open flash:/its/user_define_2_tags_file, some TAGs will be displayed in English
Cannot open flash:/its/user_define_2_utf8_tags_file, some TAGs will be displayed in English
CNF files updating complete
Where I can find this files (tags files)?
Telephony-service config:
telephony-service
em keep-history
max-ephones 25
max-dn 20
ip source-address 192.168.2.100 port 2000
timeouts ringing 40
system message
cnf-file location flash:
cnf-file perphone
user-locale U2 US
user-locale 1 U1 load CME-locale-ru_RU-Russian-7.0.1.1.tar
network-locale RU
load 7960-7940 P00308000400
time-zone 32
time-format 24
date-format dd-mm-yy
voicemail 5000
max-conferences 10 gain -6
call-forward pattern .T
moh music-on-hold.au
multicast moh 239.0.0.1 port 16834 route 192.168.2.100
dn-webedit
time-webedit
transfer-system full-consult
transfer-pattern .T
directory entry 1 1000 name mnb
create cnf-files version-stamp 7960 Jan 26 2009 13:34:34

Thank for your reply.
My problem consisted in that IP Communicator not change locale even set "user locale RU", using ephone-profile...
But I find my mistake. I not set type for ephone. After change type to CIPC, all work correctly.

Similar Messages

  • Error message in time machine: "There was a problem with the user name or the password of the network

    I have been unable to back up my macbook to my time capsule for some time now. I received the following error message (translated from Swedish) when trying to back up using time machine:
    "The network's volume could not be placed on the desktop. There was a problem with the user name or the password for the network.
    Open system preferences and go to Time Machine. Select the volume for security backup again and state the correct user name and password."
    I have confirmed the network password, and also tried with resetting the password. I have not idea what else to do. Any help is much appreciated.
    Best regards,
    John

    I have been unable to back up my macbook to my time capsule for some time now. I received the following error message (translated from Swedish) when trying to back up using time machine:
    "The network's volume could not be placed on the desktop. There was a problem with the user name or the password for the network.
    Open system preferences and go to Time Machine. Select the volume for security backup again and state the correct user name and password."
    I have confirmed the network password, and also tried with resetting the password. I have not idea what else to do. Any help is much appreciated.
    Best regards,
    John

  • Charm: BP problem with the user

    Hi!
    I have problem with the user for the usage of ChaRM.
    When I try to set the the (urgent) correction in Development i get the following error.
    There is no valid business partner assigned to your user.
    Meanwhile the appropriate BP-entry for the user exists:
    External BP number: <SID> <CLNT> <user name>
    Identification number: <SID> <installation number> <user name>
    Furthermore I have the following error, when I try to approve the change request:
    Partner 141 (Change-Manager) is neither an employee nor an organizational unit
    I would be great to get some help here.
    Thank you
    regards
    Thom

    Hi Thomm,
    1. There is no valid business partner assigned to your user.
       In BP under identification tab,
       ID type    idenification number
      CRM001 <SID> <installation number><CLNT><username>
    2.Partner 141 (Change-Manager) is neither an employee nor an organizational unit
    Assign the BP role as "Employee" for Change Manager
    regards
    Naveen

  • Sql Devloper 4.0.0.13 - problems with displaying user data types

    Hi,
    I have installed new version of sqldeveloper and have discovered some problems with displaying user data types. The data that is described as VARCHAR2 are displayed with ‘???’.
    The problem persist in table view, script output and exported files.
    My type is described as follows:
    create or replace TYPE "DPTY_ADRESA" AS OBJECT
      ID_DPSF_OPCINE                                         NUMBER,
      ID_DPSF_MJESTA                                        NUMBER,
      OPCINA                                            VARCHAR2(100),
      MJESTO                                            VARCHAR2(100),
      ULICA                                 VARCHAR2(200),
      BROJ                                   VARCHAR2(20),
      SPRAT                VARCHAR2(20),
      OSTALO                             VARCHAR2(100),
      CONSTRUCTOR FUNCTION dpty_adresa RETURN SELF AS RESULT
    add MEMBER FUNCTION dajAdresu RETURN VARCHAR2 cascade;
    when make select column from table that contains this type I get next results:
    CASE 1:
    SQLDeveloper Version 3.2.20.09; Build MAIN-09.87; JDK 1.6.0_43; Windows 7 64 bit
    Select:
    select id, adresalokacija
    from dptr_saglasnosti
    where id = 1;
    Result:
            ID ADRESALOKACIJA
             1 COMP.DPTY_ADRESA(124,4913,'TRAIK','TURBE','BABANA','3452','0',NULL)
    END CASE 1;
    CASE 2:
    SQLDeveloper Version 4.0.0.13; Build MAIN-13.80; JDK 1.7.0_40; Windows 7 64 bit
    Select1:
    select id, adresalokacija
    from dptr_saglasnosti
    where id = 1;
    Result1:
    ID ADRESALOKACIJA
             1 COMP.DPTY_ADRESA(124,4913,'???','???','???','???','???',NULL)    
    But if I select one element it is displayed normal.
    Select2:
    select id, a.adresalokacija.opcina
    from dptr_saglasnosti a
    where id = 1;
    Result2:
    ID ADRESALOKACIJA.OPCINA
             1 TRAVNIK                  
    END CASE 2;
    I have tried this scenario on three different pc with same output.
    Pleas help me to get rid of the '???' in result.
    Best Regards,
    Omer

      I tried on SQLDeveloper Version 4.0.0.13; Build MAIN-13.80; JDK 1.7.0_45; Windows 7 64 bit; NLS setting is default
    all data can show,No ??? in result
    Test step as following:
    create or replace TYPE "DPTY_ADRESA" AS OBJECT
      ID_DPSF_OPCINE                                         NUMBER,
      ID_DPSF_MJESTA                                        NUMBER,
      OPCINA                                            VARCHAR2(100),
      MJESTO                                            VARCHAR2(100),
      ULICA                                 VARCHAR2(200),
      BROJ                                   VARCHAR2(20),
      SPRAT                VARCHAR2(20),
      OSTALO                             VARCHAR2(100),
      CONSTRUCTOR FUNCTION dpty_adresa RETURN SELF AS RESULT
    alter TYPE "DPTY_ADRESA" add MEMBER FUNCTION dajAdresu RETURN VARCHAR2 cascade;
    CREATE TABLE dptr_saglasnosti (
    adresalokacija        DPTY_ADRESA,
      id    number);
      INSERT INTO dptr_saglasnosti VALUES (
      DPTY_ADRESA (65,225,'Vrinda Mills', '1-800-555-4412','sss','aaaa','eeeee','attta'),1 );
    select id, adresalokacija from dptr_saglasnosti where id = 1;
    ID ADRESALOKACIJA
    1    HRCP.DPTY_ADRESA(65,225,'Vrinda Mills','1-800-555-4412','sss','aaaa','eeeee','attta')

  • Problem with"Evaluate User Policies"sch task after the upgrade OIM R1 to R2

    Problem with "Evaluate User Policies" scheduled task after the upgrade from OIMg R1 to OIM 11g R2
    After the upgrade process is completed we are having issue with Access policy not triggering if rule is set to custom attribute
    - We had a Rule with custom attribute (Policy='Full-Time') the value gets populated by event handler which triggers the access policy in OIM 11g R1.. which worked fine in OIM R1
    After the upgrade the value is getting populated but even after running "Evaluate User Policy" the Access Policy is not getting triggered.
    We tested creating a rule with other custom attribute,policy does not trigger even after running Evaluate User Policy schedule Task in this case too
    but if we try creating rule with OOTB attributes(Country='US') it works fine the access policy got triggered after running Evalute User Policy
    One more issue we observed is
    - Evaluate User Policy value usr_policy_update is not updated still set to '1' even after the Access policy got triggered (as it worked when rule is set to OOTB attribute)
    I believe after the evaluate user policy gets triggered for a user it should update the value from '1' to '0')
    Please let me know if you have any idea..Thanks!

    well, I overcame the issue by 'fooling' the installer: on second node, change the scan ip address to point to something else (ie, different ip address to the scan in the first node, cleanup then rerun root.sh, it went past the trouble stage, then I still have problem later at the time database creation. I think scan ip address has to be setup correctly (round robin thingy)
    This is how i did the cleanup before rerun root.sh
    /u01/app/11.2.0/grid/crs/install/rootcrs.pl -verbose -deconfig -force

  • Problem with both user and cmos password

    I have problem with my user and cmos password, can formating clear the passward with remove the cmos battary.

    It depends on the model. Formatting will not touch the BIOS or power on passwords but will take away the Windows user password and allow you to have a different one, but will kill all the data on the machine. Removing the CMOS battery might clear the BIOS password and power on password, but on most current laptops even that will not help. The BIOS data is on a chip that holds its contents even when all power is removed.

  • 7912G user-local problems with CME 4.0

    Hi,
    I have set the user-local to IT (italian), and have 2 7960's and 1 7912G.
    The 7960's pick up the italian display on the phones, but the 7912 does not.
    Any tips would be highly appriciated.

    Another thing that I needed to do, when I reverted back to manual configuration, was setting the phone type to 7912 in the ephone section.
    ephone 3
    no multicast-moh
    mac-address 0011.xxxx.xxxx
    type 7912
    button 1:3

  • Permissions problems with networked users

    Hi,
    We use 11 intel imacs with networked users from an xserve and run Logic Pro. I have told all students to run their projects from a temporary folder on the local hard drive and then copy the final work to their desktop to secure it for next time if they use a different machine, this seems to work OKish.
    However there are a few features that refuse to work in Logic for a managed user, time stretching is one and various others so what I need to know is anyone have a comprehensive list of ALL the folders that logic would use so I can make them all read/write to everyone and see if the problems go away. A local account with admin privileges seems to work fine but I am keen to solve the problem at the root level and this seems like a good place to start.
    Anyone have any tips on networked LDAP users and Logic Pro?

    I don't know about the network stuff as such, but there are various utilities that hook into OSX to display all file activity - you can turn on logging, run the application, then look through the log to see what files that Logic was trying to access while it was running.
    It might give you some clues, beyond all the obvious stuff (application, preferences files, app support files, garageband libraries, plugin settings, plugins, sampler instruments, audio files, project manager database files and so on)

  • Problems with Environement Preferences (locale)

    Hello,
    I'm starting to use Warehouse Builder Design Center, with the "User's Guide". After having created the repository, I launched the Design Center, and logged in without any problem.
    I followed the steps and tried to adjust the client preferences, as suggested in the user's guide. I tried to alter the Environmemt Preferences, and changed the locale to my area (Portuguese - Portugal). The system asked to logout to accept the changes. Now I can not connect The system's message is "API5022: Cannot conect to the specified repository. Verify connection information."
    Does anyone know what is the problem?
    I thank you in advance for some help.
    Ana Azevedo

    I was able to resolve the problem.
    Here is what I have done:
    I search for file "Preference.properties". I oppened the document with NOTEPAD. I changed "LOCALE=pt_PT_EURO" for "LOCALE=en". I oppened the DESIGN CENTER. The application oppened witn an error ("Internal Error: SQL exception")... But the application started. Once there, I accessed the menu TOOLS/PREFERENCES, and changed the LOCALE under the Appearence prefences. I was asked to restart the Builde, which I did. And It works!
    I tried Portuguese to, and it also works... so I think the problem is when you choose EURO.
    Regards,
    Ana

  • 10.9.3 = major problem with fast user switching

    I've found a major problem with the 10.9.3 update with my 27" iMac, you probably won't see it if your on a laptop. I did all the updates in past few days i.e., 10.9.3 combo update, iTunes 11.2.1.
    Afterward I noticed a bug when Fast User Switching i.e. FUS. I have 5 accounts but the bug can be replicated with only 2.
    I login to userA  have some windows open but you can just open a Finder window. Now make the window at least half the with of the screen and move it to the right side of the screen. Then login in to userB and setup the windows the same way as userA. Now FUS to userA and then back to userB. You will notice that the Finder window has been moved to the upper left corner of the screen. This problem happened's to all user accounts you login to except the first account you logged into.
    Since I didn't know what update caused the problem I had to use Time Machine to revert to my last version of 10.9.2. I then double checked the for the bug and sure enough everything was working fine. I now was going to install one update at a time and to see which one was causing the bug. So I installed 10.9.3 first and found the bug immediately.
    I now know what's happening. When the switch occurs the screen is resized to about the equivalent of a 13" MBP. At this point the windows that fall some ware outside that size get moved to the upper left corner and resized. Then the screen resizes to normal but it's too late, all the window have moved and been resized to fit the 13" screen size.
    You can reproduce this effect by going to System Preferences and selecting Display and then select the Scaled radio button. No select the smallest size, say, 1280 x 720. Now select the Best for display radio button again. You will now see all the windows you have open that were too big no moved and resized to the upper left corner. I know why the Mac moves the windows, it's so you don't have any windows stuck off screen.
    Now when I say 13" it could be some other size but it's about that size give or take.

    Yes, it's when you user Fast User Switching.
    Here's snapshot before the screen resized. Ignore the window in the lower right, I moved it from the upper left before taking the screen shot.
    I hate to say it but I'm glad I'm not the only one with this bug.

  • Ethernet Problem with Multiple users on same Mac

    Hi, sorry i advance for my english. I am writing from italy.
    I have an imAc with 2 users profiles on it. one profile is administratoe, and the oter a standard user.
    I also have a time capsule configured to connect to my network with the ethernet cable. the cable is plugged in the wan pot, the configuration is "bridged" and i use as a router a linksys wifi router.
    well. suppsung that i am logging in with one of my users and access to time capsule wirelessly, it shows me the disk content.
    i then swith to the other user without logging off the first one and then access time capsule where i see the same folfder and i can access it. so everything works fine.
    in the case i connect my mac with ethernet (disabling airort) to my linksys router, ifuser 1mounts time capsule, user 2 can't access it if user 1 does not unmount.
    why so?
    i need to switch from user 1 to user 2 without logging off, and i don't understand why it works wirless and not with ethernet..
    thak you
    paolo

    In fact, all my page beans are in REQUEST scope...
    The only bean in Application scope is the standard applicationBean created by Creator itself.
    We use one Bean in session scope which contains another class.
    I will try to explain our common process:
    - when logging into the app, the session Bean stores user data (rights for using app,...);
    - when navigating in the app, the user can search data, modify them and create one (if he has the right to do it);
    - to define the screen, we use a lot the beforeRenderResponse();
    - when viewing a data, the user can choose to modify it, so depending on the action, the page is in "CONSULT" mode or "MODIFY" mode. In the second one, he can display new gridPanel (as a subform) to populate datatable.
    The problem is obvious while using this grid: my grid can disappear if someone else has validated his form before me and if my page goes trough the beforeRender of my page.
    It is not really clear. If needed, i can give access to our application to show the problem (and msn adress too to talk about it).
    Thank you

  • Urgent - problem with multiple users on same page

    Hi all,
    I have got an big problem with my app:
    when several users are using the same page, the action launched by USER_A affects the page displayed and used for USER_B.
    If there is only one user using the page, there is no problem at all.
    The webapp is deployed on Tomcat or JBoss and the problem remains the same on both.
    Thank you for your help.
    PS: I am not accurate because I don't know what to paste here.

    In fact, all my page beans are in REQUEST scope...
    The only bean in Application scope is the standard applicationBean created by Creator itself.
    We use one Bean in session scope which contains another class.
    I will try to explain our common process:
    - when logging into the app, the session Bean stores user data (rights for using app,...);
    - when navigating in the app, the user can search data, modify them and create one (if he has the right to do it);
    - to define the screen, we use a lot the beforeRenderResponse();
    - when viewing a data, the user can choose to modify it, so depending on the action, the page is in "CONSULT" mode or "MODIFY" mode. In the second one, he can display new gridPanel (as a subform) to populate datatable.
    The problem is obvious while using this grid: my grid can disappear if someone else has validated his form before me and if my page goes trough the beforeRender of my page.
    It is not really clear. If needed, i can give access to our application to show the problem (and msn adress too to talk about it).
    Thank you

  • Problem with transfered user sessions from a 10.4 system

    On my new MacBook pro with ML, I tranfered the user sessions of my previous mac (power book G4 working with OS 10.4).
    With these "old" users accounts,  part of the trackpad features (like scroling up and down with 2 fingers) does not work, whereas it is working with new users.
    Any idea on how to solve this?
    Thanks in advance

    That was a good idea, I tried to delete the com.apple.finder.plist and the com.apple.systempreferences.plist but that did not work.
    Eventually to solve the problem, I transferred all the files I needed to a session created with the new system. I'm waiting a week or two just to see if I have not forgotten something important and then I will delete the "old session".
    Thanks anyway for your help.

  • Problem with forum user name

    I appear to have been 'bitten' with the user reset problem. My original id is now "nealeh-Y42Jq8" while my original "nealeh" now appears as a brand new user. I recall others having this problem in the past. How do you get it put right?
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children

    I noticed that, as was going to point you to the Forum Comments forum, where Adobe-Admin (John) would be able to help you, BUT the forum was so very wonky today, that it was taking me six log-ins, just to read the PrE forum.
    It looks like you have the "real" Neale back, and I'm glad.
    For the fix, just post to the Forum Comments forum, with your log-in details (sans PW). John will fix things for you.
    Glad to have you back!
    Hunt
    PS - the UK was not the only area of Earth, that was smurfed by the Adobe Forum issues - the US was hit just as badly, and many experienced similar to you.
    PPS - in a few days, I'll be terrorizing Mayfair, and will hoist a pint, or two, in your honour.

  • HTTP to ABAP Proxy - Problem with "Current User" parameter

    Hi experts,
    We have a HTTP to ABAP proxy sceario, where I used an HTTP Destination to connect to the proxy.
    We're trying to use the option "Current User" in that destination in order to login to ECC with the same user that in PI adapter plain.
    The user exists i both systems, PI and ECC, with the same password.
    Checking that parameter we get the following error:
    <SAP:Error><SAP:Category>XIServer</SAP:Category><SAP:Code>INTERNAL.UNAUTHORIZED</SAP:Code><SAP:P1>401 </SAP:P1><SAP:P2>Unauthorized</SAP:P2><SAP:P3>(See attachment HTMLError for details)</SAP:P3></SAP:Error>
    We think that PI is not getting the password.
    Does aybody know how to do this?
    Thanks and regards,
    LUIS B.

    Hi Chirumamilla,
    If we put user and password in SM59 (unchecking "Current User") the commuication works without problems.
    We don't want to leave a user set there, beacuse we are looking to access to PI with different users and login to ECC with the same user.
    Thanks,

Maybe you are looking for

  • Xml file not generated through Pl/sql procedure as a concurrent executable

    Hi, I getting error while genarating xml file through Pl/sql procedure as a concurrent executable file. Error Message: The XML page cannot be displayed Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh b

  • HTTP error:while testing ADF11g app from external wls10.3

    Hi I deployed the ADF 11g App to external wls. when testing from browser i am getting only layouts of my page. i am not getting the table rows in my page. The error in domain log in server i got is: HTTP     Error     BEA-101017     [weblogic.servlet

  • How do I share between iPhone and Macbook?

    Okay, first of all, I am technologically challenged, so please dumb down your answers. I'm living somewhere without readily available internet access. However, I have a cell signal. I'm trying to figure out if there is a way to get the Netflix playin

  • How do I create an app inventory

    Unfortunately, I am an app addict and I have too many apps. I love the features recently implemented to see the apps purchased.  I want to be able to create an app inventory or database. I have checked out the apps that say they are for keeping track

  • Shared Calendar

    I am trying to configure Shared Calendar usage, basically according to the section 'Shared Calendar LDAP Lookup Configuration' on the page http://docs.sun.com/app/docs/doc/819-2568/6n4rm7fit?a=view . I have service.wcap.userprefs.ldapproxyauth ="yes"