Lync Response Group Manager - cannot change opening hours

Hi all
I've run into an odd problem with Lync Response Groups with Lync 2013 Server. Just wondering if anyone has seen this before or knows of a solution. I've searched around but can't find any reference to this particular problem.
Response supervisors who are defined in the workflow and are a member of the AD group CSResponseGroupManager cannot change working hours for their response group from a custom schedule to a preset in the web interface.
If the workflow is already set to preset they can switch between existing presets, and they can switch from preset to custom. But once it has been set to custom they cannot change it back to preset.
They can select to do so but when they click Save they receive an error on the page saying "The term 'Remove-CsRgsHoursOfBusiness' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name,
or if a path was included, verify that the path is correct and try again."
I don't believe this is by design, why would you want a workflow manager to be able to switch between presets or to custom but not back again?
If they are a member of CSResponseGroupAdministrator this works, however this is not really a solution as members of this group can edit all workflows and we don't want the managers of a workflow for one department able to access the workflows of another.
Any information greatly appreciated.

Hi
I had to abondon working on this for a while as we only had 1 Response Group in place, it wasn't too much hassle for me to do these changes myself.
However we now have about 6 Response Groups. All are managed and have a user listed as manager in the workflow, that user is also in the CSResponseGroupManager AD user group.
As previously described they can change the opening hours from between existing presets, and from preset to custom, but attempting to change back to preset from custom causes the error given previously.
This does not occur if the user is a member of CSResponseGroupAdministrator, however putting our Response Group managers in this group is not appropriate as it gives them access to all Response Groups not just their own.
Is it possible the error is due to the fact that the CSResponseGroupManager group is not giving them permission to the Remove-CSRGSHoursofBusiness cmdlet, I think PowerShell tells you a cmdlet doesn't exist if you don't have permissions to use it?

Similar Messages

  • Lync response group stops after a while with receiving incomming calls

    Hi Folks, 
    We have a strange issue with the response groups of Lync. 
    It seems that the response group randomly stops working, what means that the users can't receive their call trough the response groups. 
    Only the response group call(s) don't work, the pstn -> lync lync-> lync call just works fine. 
    The quick fix is to restart one of the Lync front end servers. 
    But, that is not really a solution. 
    The event viewer don't show anything about this problem. Also the Lync monitoring service don't show anything.
    Sometimes restarting the Windows Lync response group services solves the problem, but most of the time we need to restart the whole server. 
    I'm curious some people has the same experience. 
    If you need more information about our deployment, please feel free to ask. 

    Hi,
    I suggest you try to gather some logs on the Mediation server to see what is happening. Please use Lync logging tool and capture the data for S4
    and then try to see if there are any errors after reporduce the problem.
    Please try to enable logging tool to get detailed report:
    http://blog.schertz.name/2011/06/using-the-lync-logging-tool/
    http://technet.microsoft.com/en-us/library/gg558599.aspx
    Regards,
    Kent Huang
    TechNet Community Support ************************************************************************************************************************ Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a
    marked post does not actually answer your question.

  • Lync Response group call issues

    Hi all,
    I am trying to investigate an issue with incoming calls.
    I would like to know who ended the call. Was it the caller or the callee. 
    How can I find this in Lync reports?
    Thanks,

    Here's a query that will need some work, but might help get you there. 
    Note that it's currently locked to a date range.  You can modify that.  I'd make a couple of calls to your response group, one where you hang up, and one where you have them hang up on you.
    Run the query.  Find your calls, find the ReferredById number that matches your response group.  In my case it was 10091, so I added the line "and SessionDetails.ReferredById='10091'" just before the "order by".
    Now the query returns your response group calls.  The diagnosticID will help you determine who hung up, or you can just add the VoIPDetails record you found as the join is in the query already.
    select
    (Select UserUri from Users where UserId = SessionDetails.User2Id ) as Caller,
    SessionDetails.DiagnosticId,
    (SELECT PhoneUri FROM Phones WHERE PhoneId = VoipDetails.FromNumberId) as MyFromNumberId,
    (SELECT PhoneUri FROM Phones WHERE PhoneId = VoipDetails.ConnectedNumberId) as ConnectedNumberId,
    (Select UserUri from Users where UserId = SessionDetails.User1Id ) as Agent,
    (Select UserUri from Users where UserId = SessionDetails.ReferredById ) as ResponseGroup,
    (SELECT DATEDIFF(SECOND, SessionDetails.SessionIdTime,SessionDetails.SessionEndTime)) As TalkTime,
    SessionDetails.* from SessionDetails
    LEFT OUTER JOIN dbo.VoipDetails
    ON VoipDetails.SessionIdTime = SessionDetails.SessionIdTime
    AND VoipDetails.SessionIdSeq = SessionDetails.SessionIdSeq
    where SessionDetails.SessionIdTime > '2014-10-08' and SessionDetails.SessionIdTime < '2014-10-10'
    order by SessionIdTime
    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
    This forum post is based upon my personal experience and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Is there a way to tell who answered a call to a Lync response group?

    We have Lync 2010 and a number of Response groups defined. These are rung by the public from outside lines.
    We would like to be able to identify who is answering these calls. However the records that are being populated in the Lync LCSCDR database only seem to reflect that their was a call to the response group, not who then took the call. 
    Does the LYnc database also store the user who answered the call ? 
    Is this something that can be configured ?
    We have tried running queries like the one below, which seems to indicate that its only the response group userid is kept in the call record.
    USE LCSCDR
    GO
    Select sd.SessionIdTime, sd.SessionEndTime,
    DATEDIFF(ss,sd.SessionIdTime,ISNULL(sd.SessionEndTime,sd.SessionIdTime)) AS duration,
     ph1.PhoneUri as caller1,
     ph2.PhoneUri as receiver1, 
     U1.UserUri as user1uri, U2.UserUri as user2uri, U3.UserUri as refeereruri, 
      sd.User1Id, sd.User2Id,sd.ReferredById,sd.IsUser1Internal, sd.IsUser2Internal,
     sd.SessionIdTime, voipd.*, '|||',sd.*
    From dbo.VoipDetails as voipd 
    INNER Join dbo.SessionDetails as sd on 
    (voipd.SessionIdTime = sd.SessionIdTime and 
     voipd.SessionIdSeq = sd.SessionIdSeq ) 
    LEFT OUTER JOIN dbo.Users as U2 
    ON U2.UserId = sd.User2Id
    LEFT OUTER JOIN dbo.Users as U1
    ON U1.UserId = sd.User1Id 
    LEFT OUTER JOIN dbo.Users as U3
    ON U3.UserId = sd.ReferredById
    LEFT OUTER JOIN dbo.Phones as ph1
    ON ph1.PhoneId = voipd.FromNumberId
    LEFT OUTER JOIN dbo.Phones as ph2
    ON ph2.PhoneId = voipd.ConnectedNumberId
    where sd.SessionIdTime > (GETDATE() - 2) 
    and sd.MediaTypes = 16 
    and voipd.FromGatewayId  is not null -- external
    and User1Id is null

    The calls will have the same CorrelationId.
    If you have for example C1 calling RG1.
    In turn you will see C1 calling A1, and C1 calling A1.  These are the response group calls to each agent.
    All 3 of these calls will share the same CorrelationId.  Likewise you can check the Response code to see which Agent call had a 200.
    There will also be a 4th call from AX to C1, and AX will be whomever took the call.  The ReplacesDialogIdTime will associate the replacement call back to the original call in.
    So something like this should work
    SELECT *
    FROM [LcsCDR].[dbo].[SessionDetails] WHERE
    ReplacesDialogIdTime = ANY
    (SELECT sd.SessionIdTime
    FROM [LcsCDR].[dbo].[SessionDetails] as sd
    LEFT OUTER JOIN [LcsCDR].[dbo].[Users] as u1
    ON u1.UserId = sd.User1Id
    LEFT OUTER JOIN [LcsCDR].[dbo].[Users] as u2
    ON u2.UserId = sd.User2Id
    WHERE u1.UserUri = '[email protected]' and u2.UserUri = '[email protected]')

  • Cannot change "Open with" (in context menu) from CS3 to CS6

    I have CS5 and CS6 installed, and now I've also installed CS3 (because of problems with ps actions that does not work properly), and in the context menu "Open with", "Open" and "Edit" now starts CS3 instead of CS6.
    How change all that to CS6?
    Note:
    when choosing "Open with", "Select standard program", and browse/selecting the CS6 exe-file, then STILL the CS3 is displayed in context menu and the CS3 starts.  It's like there is some assocciation from CS6 to CS3 that cannot be altered??
    Do I have to uninstall CS6 and install CS6 again, or what?
    OS: Windows 7.
    And yes, all my PS versions are legit.

    When you install a version of Photoshop the install will associate many image file types the the Photoshop versions your installing.  You may want to re-install CS6 on top of itself and the update it.  You will still have all your Photoshop preferences and CS6 add-ons install and CS6 will be the default application for image file types. Or you can manually change all the image file type associations. Adobe Bridge CS6  may also be able to change image fie types associations in its edit preferences UI. I not sure about the bridge fie each version of the bridge I have installed shows that the same level as tne bridge version of Photoshop is associated with image file file type.  After  I installed CS2 I manually change Image File association back to CC.  However I had to re-install CC a couple of times since then. I have CS2, Subscription CS6 version and CC installed on my workstation.
    If you have old CS3 actions that do not work in CS5 and CS6 you can edit them and modify them to work in CS5 and CS6.  If the action add adjustment layers and that is where your you having Problems..  Adobe introduced options in CS4 adjustment panel that can cause Photoshop to work incorrectly.  If you set the option to Adobe defaults setting you may fine that your actions that add Adjustment layer work correctly.  For some unknown reason Adobe refuses the address the bad options they added to the Adjustments panels fly-out menu.  The options change Photoshop Behavior some time which simply put is a bug waiting to bite.

  • Limited Logistic cannot change open Print Layout Designer?

    Dear Experts,
    My customer has multiple Purchase Order layouts, they are using Limited Logistic user license and have full authorization to Change Default Report.
    However, when they click on the Print Layout Designer, the pencil icon from toolbar, an error message prompt, You cannot open Window [60213] Type List Form with your current license.
    Online License Authorization document that i have read does not provide details information about Limited Logistic vs Print Layout Designer.
    Can someone please advice me is it SAP limited logistic license design or is it a bug or is it some setting has been done wrongly?
    Thanks.
    Regards,
    Lay Chin

    Hi Gordon,
    The SAP Note No: 1223477 is indicating what happend last time. But for the new customers who start using SAP B1 8.8, when they purchases limited logistic, they get limited logistic license with the correct access right defined in https://websmp203.sap-ag.de/~sapidb/011000358700000953982007E, no more professional license is given.
    Below statement is quoted from SAP Support Portal:-
    New user types are now enforced
    The new user types that have been introduced in the SAP Business One pricing and licensing model are now enforced in the SAP Business One 8.8 application: The limited users and indirect users are implemented; the use of the add-on access user is re-defined (this user will now be a normal user).
    Please correct me if I understand the statement wrongly.
    Thanks.
    Regards,
    Lay Chin

  • PSE 5.02: Catalog cannot be opened (hour glass)

    Please help me:
    I have a big problem: A rather new Vista PC, PSE 5.02, rather big catalog (18MB). PSE has frozen (no reaction, only hour glass). After I killed PSE I restarted it. The PSE Windows shows up (without any pictures) and again immediatly PSE is frozen (no reaction, only hour glass).
    If I open another catalog, there is no problem. So I think, the original catalog has some problem. So I started PSE with CTRL pressed, and the catalog was repaired. But even after this repair, PSE freezes immediately after opening the catalog. Has anybody an idea?
    Any hints are appreciated!
    Best regards,
    Thomas.

    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb400848&sliceId=1

  • Control Panel Response Groups Empty/Blank

    Good day all - I am starting to tinker around with Response Groups and was going to create my first group. However, when accessing the Response Groups via Control Panel, nothing is labeled. Also, I noticed (running Lync 2010) there is not a service running
    labeled "Lync Response Group" (not sure if this is required). My account is a member of the CSResponseGroupAdminstrator
    Thanks

    If that your only Lync pool and you're still configured for EV without that enabled?  I didn't know that was possible.  :)  Interesting.
    That said, if you go to the properties on your Standard Edition Pool, you should be able to check that box.  Once checked, you'll need to publish the topology and rerun step 2 of the Lync deployment wizard to add the new roles.  Once the role are
    added, you'll need to start additional services or reboot.  I'd suggest working with that off-hours and making sure you have a backup of your topology if you need to back out.
    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
    This forum post is based upon my personal experience and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Response Groups and Polycom CX600

    Hello,
    We have some users who only have Polycom CX600 devices deployed for Lync access.  They are part of Lync Response Groups set to answer queued calls.  When the Polycom device is in a locked state, no Response Groups calls are presented to the user. 
    If a call is in queue and they unlock their phone, the call will then be presented.
    We are unable to disable the lock policy due to requirements, so I am wondering if there is another way around this.  Some of these users are UNIX users, so we cannot deploy a Lync client to them to help with the USB tethering that would resolve the
    issue for Windows or Mac users.
    Any help here is greatly appreciated as it is preventing the roll over of many users to Lync.
    Thanks,
    Paul Dietrich

    Not a great answer because almost all of the group routing method settings are based upon presence.  If you set your groups to the "attendant" routing method they should ring regardless of presence however.  
    I'm not sure how well that works if the phone is locked, and it's basically a ring-everyone-whomever-answers-first-wins type of group.
    Perhaps the answer is a different model of phone that won't obey the locking.  If you're experiencing response group delays (you answer and have to wait a few beeps before you can speak) this can also reduce that delay.
    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

  • Migrating Response Groups

    Hi everyone,
    Migrating from lync 2010 to lync 2013 using this guide http://technet.microsoft.com/en-us/library/jj204854.aspx 
    Now i have run the Move-CsRgsConfiguration 
    command and now i can see the response group created in lync 2013 and still exist in lync 2010 for roll back purposes as the guide specified.
    Now i want to turn of the lync 2010 sql, so how can i decommission the
    old lync response groups in lync 2010 before i remove the whole lync 2010
    ammarhasayen

    I would not remove the Workflows from 2010. The article states "If any Lync Server 2010 response groups have been migrated to a Lync Server 2013 deployment, do not remove the contact objects of the migrated response groups. If you remove the contact object
    of a migrated response group, the new response group will stop working. The response groups that remained in Lync Server 2010 after the migration will be removed when the Lync Server 2010 deployment is decommissioned."
    If you remove the Service Contact Object, it will be removed from AD and the workflow will no longer be valid. When you decomision 2010 server, the duplicates will no longer appear. 
    Drago
    http://www.lynclog.com

  • Cannot change relationship status

    In my Lync 2013 client, I cannot change any user in my contact list to Workgroup or Friends and Family.  Has anyone also seen this behavior?
    Thanks

    This may be related with your Lync client. Please try to sign in another Lync client with your Lync account. If you still have the problem with the other Lync client, this problem is related to the account setting.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Firefox will not launch in any mode. I cannot open Profile manager to change to another profile. No change with delete and reload of program.

    I've been using Firefox for years. Had this happen once before but was able to open the profile manager and change to a new profile. At this point I can't even do that. Suggestions??

    [[Basic Troubleshooting]] has a "clean reinstall" section at the end that does not require you to open Firefox.
    In any case, you should first take a look at the [[Firefox will not start]] article, which I mentioned in my first post. If that doesn't help, also check out http://kb.mozillazine.org/Browser_will_not_start_up#Windows-specific_problems

  • Lync 2013 Response Group - timeout issues

    I have an Lync 2013 Enterprise Pool deployment with three FE servers.  For the Response Group configuration, the Group is setup as Informal, Alert Time 20 seconds, Routing method as Attendant with a single agent in it.  The Queue is setup
    with the Enable queue time out set to 20 seconds and forward call to voicemail to a sip user.  The workflow is huntgroup with routing to Queue during business hours.
    when I call from inside or outside, Lync call or PSTN call, the agent gets alerted for 20 seconds while the external caller hears music on hold, but after the 20 seconds, instead of going to voicemail, the call comes back to the agent and the caller hears
    nothing for the next 20 seconds.  after two separate 20 second ring cycles for the agent and 20 seconds of music and 20 seconds of dead air for the caller, the call is routed to Exchange UM. 
    Changing Alert Time or Queue Timeout has no impact on the above behavior (except for the amount of time a call rings during each cycle).  Routing on queue timeout to another user or a number instead of voicemail also results in the same behavior. 
    I have tested the exact configuration on Lync 2013 Standard Edition and it works fine.
    Anyone ran into similar issues with Lync 2013 Enterprise pool?

    We just experienced the same issue today on a Lync 2013 Standard Edition server. I originally had the Agents set for Informal Participation, 10 second alert, and Attendant Routing method. The call would come in to the Response Group (either PSTN or internal...same
    behavior) and ring all the users. The caller would hear hold music for 10 seconds while all Agents rang. Then the caller would hear silence while the callee's end would stop ringing for a second and then start ringing again (caller's end remains silent).
    When I changed the routing method to Serial, I ended up with the same sort of function but broken down by user. So, the caller would hear hold music while the first Agent rang for 10 seconds. Then the caller would hear silence and the Agent's ringing would
    stop momentarily and start again. The Queue has a 15 second limit before timeout, so it would timeout to an IVR (as configured) at that time. Because it is in production, I couldn't mess with things too much but I hope to test and make changes this evening
    if needed.

  • Cannot delete login item "You cannot change this item because it's managed by your system administrator"

    We migrated a server (ldap and file serving) to some new machines, which have new names.  We've got all of the login and file sharing functionality working on the new machines, but wherever we have a mount of a share in the Login Items for a user, we can't get the old machine out of the Login Items.  It's not fatal, but it does make login take a lot longer because it has to fail first.
    We can mount the share from the new server, and save THAT in a NEW Login Item just fine -- it's just that when you click on the old defunct one the minus sign is greyed out, and the mouseover says "You cannot change this item because it's managed by your system administrator."  There is a yellow triangle next to the item in the list.  Went into the user's ~/Library/Preferences/com.apple.loginitems.plist and it's not in the file.  The /Library/Preferences don't have anything that looks like a plist of the right name.
    Where do I find it and how do I get rid of it?

    In response to ManishBhatt94's post today, I may have some information that may be useful to you. I called Microsoft's 800-642-7676 and spoke with a technical representative with questions pertaining to my particular issue. I also have friend that has the
    same issue with her computer running windows 8. A representative from my ISP told me how to go into 1)Tools, 2)Internet Options, 3)Connections, 4)LAN settings and uncheck the proxy settings box. However after restarting or shutting down my computer it reappears.
    It will also reappears while I play games on Facebook not allowing me continue until I go back into the proxy settings in LAN and uncheck the box AGAIN and AGAIN. A local owner of a computer repair shop told my friend that it was a virus. After speaking with
    Microsoft today I was told the same thing/it was more than likely a virus on my personal PC at home. As most people likely do,  I use wireless internet in my home on the affected computer. Solution; as suggested by Microsoft rep was to have the virus
    professionally removed either by someone or to use their remote service for a fee of $149 which comes with several guarantees and does not require you to re-install software or documents. I hope that my response was of some help to you. I also kept trying
    to fix this problem but wasted a lot of time. He also suggested to Google the proxy problem to see if ANYONE has any alternatives to fixing this problem!
     

  • Cannot upload music file in Response Group Workflow

    Hi Support,
    This is multi site deployment. 3 site Lync 2013 Enterprise Edition, site A, B and C.
    I'm creating Hunt Group via Response Groupconfiguration tool in Site A.
    when I try to upload the music file for 'after business hour message' and 'music on hold' it prompt with error 
    "the file was not uploaded. An error occurred while trying to upload the file.
    The file may be too big"
    but I can upload the music file in Site B and C Response Group Workflow using the same file, Verified by test the Hunt Group and its working.
    Detail music file:
    afterofficehour.wav 1.52MB
    musiconhold.wav 1.92MB
    Detail Lync Share folder:
    Right: everyone - Read/Write
    \\LyncShare-A\1-ApplicationServer-1\AppServerFiles\rgs\temp
    \\LyncShare-B\1-ApplicationServer-1\AppServerFiles\rgs\temp
    \\LyncShare-C\1-ApplicationServer-1\AppServerFiles\rgs\temp
    Any Idea on this issue?

    Hi,
    below is the recommendation for the MOH file for RGS,
    All wave files must meet the following requirements
    8-bit or 16-bit file
    Linear pulse code modulation (LPCM), A-Law, or mu-Law format
    Mono or stereo
    4MB or less
    For the best performance of wave files, a 16 kHz, mono, 16-bit Wave file is recommended.
    get a file converted to above specs and upload. it should work.
    Z-Hire -- Automate Lync User Account creation process ( AD / Exchange / Lync )

Maybe you are looking for

  • Arrangement of icons in a folder not saving on reboot....

    Hello - I'm posting this here as recommended - didn't get an answer on another forum. Hi - first problem with my year old mac, and first question here. Apologies if this one has been answered already - I looked through a few pages of the forum, but n

  • HOWTO: Magic Mouse in Windows XP Pro (redirect)

    Follow this link to the thread under Boot Camp http://discussions.apple.com/thread.jspa?threadID=2230472&tstart=0

  • How to disable REAL TIME QUERY in DG 11gr2 ?

    Hi, With 11gr2, by default, on STARTUP, the standby database is open -> in READ ONLY mode -> with Intended State: APPLY-ON so the ACTIVE DATAGUARD option is in use .... is there a way to deactivate REAL TIME QUERY permanently, so whether on STARTUP o

  • Table for conversion of logical system

    HI All please let me know the table name which will have all source system converion list. thanks in advance. thx vij

  • Easy Installation step-by-step for SAP ECC 6.0

    Dear all: I am starting to install SAP ECC 6.0 with Oracle 10g is there any easy simple step by step guideline . which CD is the first one I should used? is it kernel ,master data disk and which exe file to start. Thanks in advance.