CUCM End User Administration

Our Helpdesk staff performs the basic functions of add/remove phones and add/remove users from CUCM.  We've just upgraded from CM 4.2 to CUCM 8.5(1).  We are using the integrated CUCM LDAP and not AD integration.  My Helpdesk users are able to use the User/Phone Add option to create a new phone and a new CUCM End User.  They are able to edit all the necessary properties of the phone and line settings.  But with their current group/role memberships they are unable to change attributes of users or to be able to delete them.  The only Role I can see to add them to that allows changes to End Users is Standard CCMADMIN Administration and the only User Group is Standard CCM Super Users.  Both of those give far more rights than I would like Helpdesk staff to have.  Am I missing something obvious to allow them to perform End User management?  Has anyone else encountered this?  Below are the groups/roles my Helpdesk staff are currently part of.  Any help would be apprecitated.
Bryan
I've added the users on our Helpdesk to the following Groups:
Standard CCM Admin Users
Standard CCM End Users
Standard CCM Phone Administration
Standard CTI Enabled
Standard RealtimeAndTraceCollection
Which automatically adds them to the following Roles:
Standard CCM Admin Users
Stadard CCM End Users
Standard CCM Phone Management
Standard CCMADMIN Read Only
Standard CCMUSER Administration
Standard CTI Enabled
Standard CUReporting
Standard RealtimeAndTraceCollection

Bryan,
If I remember correctly, there isn't a pre-canned role that will allow for End User administration. I don't know why.
Your best bet is to create a custom Role and User Group. This way, you can give your Helpdesk exactly the access they need. The descriptions for the Role permissions are pretty self-explanatory, so it should be pretty easy to accomplish.
Steps:
1) create new role
2) assign permissions to the new role
3) create a new User Group
4) assign the new Role to the new User Group
5) assign the new User Group to the End/Application User accounts for the helpdesk.
This maybe helpful: http://www.cisco.com/en/US/partner/docs/voice_ip_comm/cucm/admin/8_5_1/ccmsys/a02mla.html#wp1062944
HTH
Adam

Similar Messages

  • Change CUCM end User, no AD integration

    We have CUCM (7.1.5.32900-2), we do not have Active Directory integration,
    Is it acceptable practice if a user leaves, to just change the name on the End User config within CUCM, (setting up for use as a CAD agent), rather than deleting and creating new from scratch?
    Everything stays the same on the End user except the name.
    Or is the preferred method to delete existing user and creat a new one?
    I realize if I change the name, I should delete the old resource in UCCX.

    Hi Wilson,
    Please go through the below section.
    Implications of Deleting Agents in Unified CM
    Note     This section only applies to Unified CCX Deployments with Unified CM.
    If you modify an agent's record in Unified CM (for example, changing the Unified CCX extension or deleting the agent),ensure to refresh the user page on Unified CCX Administration interface so that the agent's information in the Unified CCX RmCm subsystem is updated. Choose Subsystems > RmCm > Resources option to update the Unified CCX information in the Unified CCX Administration any time. If you change the Unified CCX extension of an agent who is currently logged in, the agent will continue to use the old extension until the agent logs off. The agent must log off and then log back in to the Cisco Agent Desktop to get the new extension.
    When Unified CCX detects that the agent no longer exists in Unified CM, it does not automatically delete that agent from the Unified CCX database. Instead, the Unified CCX Resources page displays a new link called Inactive Agents. When you click this link, Unified CCX displays a list of agents deleted from Unified CM but still existing in the Unified CCX database. In this case, select the agents to delete from Unified CCX by checking the check box next to the required agent (or select all agents for deletion by clicking Check All). Then click Delete to remove the selected agents from the Unified CCX database. Unless you follow this procedure, agents deleted in Unified CM will continue to appear in the agents list in the Unified CCX Resources page, but they will not be able to log in as the Unified CM authentication will not be successful.
    Caution        
    Deleting Inactive Agents removes the agent details and records from the Historical Reporting Database and HR reports will not display historical information of these agents.
    If Unified CM connection errors have occurred, all agents will not be visible to Unified CCX. In this case, Unified CCX interprets these agents as deleted agents. As a result, the Inactive Agents list will not be accurate. When the errors are resolved, click Inactive Agents again to see an accurate list.
    Hope it helps.
    Anand
    Please rate helpful posts..

  • No " Find " Button in CUCM End User Configuration

    Hello Community, we have two different 8.6.2 CUCM with the same Version.
    I visit the two CUCM w/ the same PC and Browser. I go to End User Configuration and Edit one of the Users. I do this on both of this CUCM. At one of the  CUCM I see the "Find Buttons" to search for example " Controlled Devices " and at the second CUCM no Find Button there. It is at more Configuration points in End User Configuration and not depend from the End User. The CUCM Version is exactly the same!
    Andy Idea appreciate!
    Really Thanks Armin
    HTH, please rate all useful posts!       

    Hi Jaime, Really thanks for your support and effort. It should be right!
    Please see the count of entrys :-)
    w/ the find button we have near 36.000 device profiles entrys
    w/o find button we have 38 device profile entrys.
    I can´t find anything in srnd etc.... regarding the limit.
    For doublecheck I would increase the count of Deviceprofiles.
    From which limit the "find button appears"?
    HTH, please rate all useful posts!

  • Unity Connection 8.5 not import CUCM end users after reinstall

    I needed to reinstall a Unity Connection 8.5 server (server crash due to power failure).
    After the reinstallation and reconfiguration of the CUC, the same does not synchronize and / or import users from CUCM (version 8.5).
    The CUCM is integrated with LDAP.
    The version of servers are:
    - CUC = version 8.5.1ES16.11900-16
    - CUCM = version 8.5.1.11900-21
    Before CUC crash, I could import users usually.
    The test in AXL servers in CUC is normal: (Test message successfully sent to AXL server 172.16.21.11:443).
    Any sugestions?
    Regards,
    Ronaldo Gama

    Hi Ronaldo,
    This is because the CUCM actually holds a database where all of these users are still tagged as being imported into UC already.  You'll have to get fancy with some SQL queries, you can try these, but do it at your own risk.
    Open SSH to the CUCM
    1) For each user, find the mapping row:
              run sql select pkid from enduserappservermap where fkenduser in (select pkid from enduser where userid = 'my_user_alias') and fkappserver in (select pkid from appserver where ipaddr = 'my_connection_server_ip')
    In the query above, replace my_user_alias with the alias of the end user and replace my_connection_server_ip with the IP address of the Connection server (or whatever the old Connection server IP address may have been if you changed it after the rebuild).
    2) Delete the mapping row:
    You should only get back one row. Delete it. Replace my_pkid with the actual pkid that you got back:
              run sql delete from enduserappservermap where pkid = 'my_pkid'
    Try to import that user again via AXL.  That's the user by user way of doing it if you don't have too many, but if you're confident they all can be deleted at once you can do the following:
    1.  Find all of the users mapped
               run sql select * from enduserappservermap
    2.  The users should all have matching value in the "fkappserver" object ID column if they were mapped to the same pre-existing Connection server.  Once you've confirmed the "fkappserver" object ID of the old UC server, issue the bulk delete command, this is irreversible!
              run sql delete from enduserappservermap where fkappserver = 'fkappserver_for_old_UC'
    Hope that helps,
    Brad

  • CUPS 8.0 end user login issue

    Hi All,
    I am having CUCM 7.1.5 and CUPS 8.0(4) installed. The problem is when I tried to login the CUPS user page the it says "login failed". The CUPS intergration with CUCM seem to be fine because all the end users can be seen in CUPS. But I am not able to login the CUPS user page. Users have needed roles assigned to them.
    CUCM is sycronized with LDAP server over SSL
    Can anyone pls help me on this. What else I need to check? Is there any log to check on CUCM or CUPS?
    Thanks

    Hi Ronak,
    It is not the problem login to the CUPC  (still I didn't tried it), I have problem login to the CUPS User Web page using end user credentials in CUCM
    End users have needed roles assigned and they also are CUP enabled users
    Pls can you suggest me to any thing to check, As I said our CUCM is sycronized with LDAP server over SSL
    Thanks

  • Enabling end - user access in Sun One Web Server 6.1 SP2

    Hi,
    I am new to Sun One Web Server 6.1 SP2 and I can't figure how to enable the end user access so that the end users can change their password.
    On iPlanet 6.0 SP2, in the Distributed Admin page, I could enable Distrubuted Administration as well as end user access on the webserver. The end users could then change their own password. I can't find a similar feature in Sun One Web server 6.1 SP2.
    Could anyone out there tell me how to get this done?
    Thanks in advance!

    Hi,
    I just found from release notes that End user administration feature (which was under Distributed Administration ) is no longer supported in Sun One Web Server 6.1. [Problem ID 4865295 in release notes]
    Could anyone provide a workaround to get over this and allow the end users to change their passwords?
    Many thanks in advance,
    auporna.

  • How to Use the same iview for both KM End User and the KM Administrator

    Hi friends,
    *This is my scenario :* How to Use the same iview for both KM End User and the KM Administrator but with different Context
    Menu Options.
    i followed these steps but im getting same context menu for both KM End User and the KM Administrator .
    Assign the role Content Administrator to the user km_admin. This is needed so that km_admin can change
    the presentation settings for the KM Folder u201EReports_kmFolder‟.
    Now, login with user km_admin. Navigate to the Km Folder reports_kmFolder through Content Administration
    -> Km Content. Click on Details link of the folder reports_kmFolder.
    Go To Settings -> Presentation. Click on the tab u201ESettings for You‟-> Click on button u201ESelect Profile‟.
    Select the radio button corresponding to u201Elayout Set‟, and choose u201EConsumerExplorer‟ from the dropdown.
    Click u201EOK‟.
    Select both the check boxes corresponding to Items Affected as shown above, and click u201ESave‟
    Now, remove the u201ESuper Administrator‟ role from the user km_admin and login with this user.
    How rto resolve this????
    Regards,
    Prasad.

    Hello Prasad,
    Most likely the user km_admin still has system principal roles assigned, even though you removed the Super Admin role, you should check that this user doesn't have any other admin roles, otherwise it will be considered a System Principal user and will therefore still have access to all content. For more information see http://help.sap.com/saphelp_nw70/helpdata/en/19/56f28fbd4e11d5993b00508b6b8b11/frameset.htm
    Try creating a new user with just read access to the content and you should see that it will not be able to make any changes etc.
    Regards,
    Lorcan.

  • IPCC extension option not found under End user on CUCM

    Hi
    I have a new deployment for UCCX express with CCM V 9.1, when i am trying to go under End user to assign the extension which will be user for IPCC , unfortunately i did not find IPCC extension option , i only find primary extension .Please help. I am unable to see the tab of IPCC extension , only find the selection for primary extension.The integration already done , everything is ok between CUCM & UCCX. + phone services for IPCC subscribe for end users
    Thanks

    Hi
    +5 for MR/Chris
    1- This is famous for fresh installation , especially on Vmware , kindly try to ssh CUCM and type the following:-
    admin:run sql select paramname,paramvalue from processconfig
    where paramname like '%nstalled%'
    Thanks
    Please rate all useful information

  • Background Administration Setup - End Users

    Hello
    We want to put in some restrictions from Transaction SM37 to our end-users
    We only want end-users to have access to display , delete , release their OWN Jobs and not have access to the other users’ from SM37
    From the Roles in PFCG that have access to SM37 I have done the following:
    •Deactivated S_BTCH_ADM          (I don’t want them to have access to Manage Background Administration)
    •Deactivated S_BTCH_NAM          (I only want the user to view himself and not other users with entry “ *” or username )
    •S_BTCH_JOB                             (Gave the values RELE , DEL , List , Prot ) – I excluded Show as for reason not to have access to display others jobs
    With the above done I can still view the other end users’ background jobs.
    Any idea on how I can setup correct security measures for SM37?
    Thanks & Regards
    Marlon

    As far as I am aware, unless you want to modify SM37 then you should use SMX to restrict users to displaying (and managing) only their jobs.
    If you leave S_BTCH_ADM, S_BTCH_JOB & S_BTCH_NAM blank, users will still be able to see all the batch jobs but only manage their own.
    The screens are very similar between SM37 & SMX so your users shouldn't have too much trouble (though nothing would surprise me.......)

  • Administrator and End user Permission

    Hello Everybody,
    How <b>Administrator permission</b> is different from <b>End user permission</b>, i cannot see any major changes if i assign or revoke those.
    2. If i have assigned <b>role assigner permission</b> to a user who does not User administrator or any other administrator rights, how he is able to assign role to other user.
    I have read on help.sap.com, but unable to understand.
    regards
    Santosh

    Hi Santhosh,
    1. The Name itself tells us the Difference .
        "Administrator" ->
           There r 3 types of Admn here
        a) "Content Admn" ( he is the one Who can create Iview / Role ..)
        b) "User Admn" ( he is the one who can Create Users and Assign Roles to the Users)
        c) "System Admn" ( he can change the System Properties ..Like Layout ,sys alias etc )
    and End User is the one who doesn't have any of the Admn Roles . A default user may contain Only EU_ROLE
    2.
       If u r a developer u must have Content Admn
       and for the basis guys must have User Admn and Sys   admn.
    Hope it helps .
    Regds,
    J

  • User Administration  for End User

    Hello Everyone,
    I needing that a end-user can only insert other users in the user group where it is administrator.
    Somebody to know as if makes this?
    Thanks.

    Lucas,
    As far as I now, there is no possibility to differenciate users in a group.
    This means that if you can't differenciate users belonging to a group, you will not be able to identify if he is administrator or not of the group. So it will not be possible to assign him a specific role that will allow him to populate users in that group only.
    For your information, you can use the role "pcd:portal_content/administrator/user_admin/delegated_user_admin_role" to allow user to :
      - create other users
      - top grant roles for with they have the "Role Assigment" permissions
      - but not to populate groups (what could lead to security problem, ie you can make your self member of Administrators group, and so have the SuperAdmin role)
    Hope this help
    Vincent

  • End User's mailing list administration

    Hi,
    I have a customer who has just migrated from iMS 5 to newest JES05Q4. Everything seems to be OK except one thing: In iMS 5 end users were able to use Delegated Admin to manage their mailing lists.In 05Q4, Delegated Admin does not allow end users to login. Is this a configuration issue, or is that function removed from the newest Delegated Admin? What is the recommended way for web-based mailing list manipulations?

    Yeah, that's gone from the current DA. We're hoping to get better stuff into JES5, due out sometime around the end of the year.

  • Dimension administration by end-users

    Dear colleagues,
    I am designing BPC solution for Headcount planning. End users should be able to change properties for employee dimension. This would be done by approx. 40 users (Fund Centre managers). Is this possible to be done within BPC admininstation, what are the challenges and risks? Has anyone done it with so many users? As far as I know it is not possible to customize or limit dimensions, which can be changed by a user. So it would be very risky that someone changes property, which he should not.
    Thank you!
    Kind regards
    Ivan

    Hi Ivan,
    If the user activity will be limited to member property change (not creating of new members) then the risk is moderate. It can be done by modified code of Master Data on the Fly http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2020b522-cdb9-2e10-a1b1-873309454fce?QuickLink=index&…
    Using this badi you can add required restrictions. You will need to change code to allow update of properties only.
    Vadim

  • Administrator's notifications to end users.

    Hello,
    we do not have portal, but would like to know is there any simple solution to include admin's notifications to end users on the page of the transaction bbpglobal.
    I would like to have it on the left side of the page, under the long descriptions of the transactions.
    TIA
    Gordan

    Hello Gordan,
    With transaction SM02, you can define system messages. They can appear in first screen after logon if you define it the logon configuration of service bbpstart.
    IIs that what you are looking for ?
    Rgds,
    Pierre

  • Jabber for Mac - End User unable to Cut & Paste Images in IM

    Full discloure: I am an END USER, not an IT admin or anything like that. Not sure if this is the proper forum to ask this question but figured it was worth a shot...
    Running OSX 10.9.1 and Jabber 9.2.1.
    I am unable to copy-and-paste images into IM conversations with co-workers.
    My "cachedPresenceConfigStore.xml" file shows:
    "<im_cutandpaste_enabled>TRUE</im_cutandpaste_enabled>"
    and
    "<screen_capture_enabled>TRUE</screen_capture_enabled>"
    ...yet these functions seem to be missing from the IM client. As far as I know our organization's service-side policy allows for sending images over IM (confirmed this using the jabber client on a windows machine).
    Am I just "doing it wrong" somehow? Is there some special method I need to use to be able to paste images into an IM conversation?
    Any help or direction is appreciated.
    Thank you,
    Jason

    It appears they disabled it server-side as the button (a paperclip) normaly appears to the right of the emoticon button. While the jabber-config.xml file can block specific file extensions, it cannot disable the feature entirely. This is done within the Service Parameters of the server, which only an admin can see.
    ProcedureStep 1 Choose Cisco Unified CM IM and Presence Administration > System > Service Parameters.Step 2 From the Server menu, choose an IM and Presence node .Step 3 In the Service Parameter Configuration window, choose Cisco XCP Router as the service.Step 4 From the Enable file transfer drop-down list, click On or Off.Step 5 Click Save.Step 6 Restart the Cisco XCP Router Service on every node in the cluster. For more information, see Restart CiscoXCP Router service, on page 43.
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/im_presence/deployment/9_1_1/CUP0_BK_D5B4C107_00_deployment-guide-for-imp-91.html
    Please remember to rate helpful responses and identify helpful or correct answers.

Maybe you are looking for

  • 2 Websites with 2 different IP addresses

    I have 10.6 server on a mini, with a single static ip serving 2 websites. Everything is working well, but I was wondering if I could use 2 different static ips to reach the 2 different websites on my server. The DNS entry at the domain name registrar

  • Socket stuff... Connection works but neither client nor server will receive

    Okay, here's the deal... I have a serversocket and a clientsocket in the same program. I have the client connect to 127.0.0.1 and the server accepts a connection. Both server and client make a thread to listen to one another. Then the server sends so

  • Colors out of alignment over DVI

    Hello forum, I've connected my Mac mini 1.66 Core Duo to my Samsung HL-R5067W via DVI-to-HDMI. I do get an image, and I can correct the overscan using the Display preferences, but the image appears to be "out of convergence". Here's a photo: http://i

  • Use month in calculation

    Hi guys, I have to use the value of just month from user provided Calendear Month/year. I know the code to do this would be   if i_step = 2.     loop at i_t_var_range into z_t_var_range where vnam = '0CMLMON'.     z_month = z_t_var_range-low+4(2).   

  • I may have stumbled onto a wifi/cellular connectivity solution

    I have a 5s and was suffering from almost zero connectivity after my iOS8.x upgrade. None of the solutions given on this forum or any other forum or the tech support worked. I had a phone that would make calls and that's basically it. Yesterday I tur