Genesys CTI User Forum
Genesys CTI User Forum => Genesys-related Development => Topic started by: Ali on November 06, 2017, 10:24:01 AM
-
Hello,
Working on an IWS-related Project.
When we are to conclude a preview call, we have disposition codes displayed on the Interaction Window. What I want is to Show disposition codes as Call Result pull-down menu is not visible to user.
In my code,
[code]if(_viewManager.ViewsByRegionName["InteractionDetailsRegion"] != null)
{
foreach(ViewActivator view in _viewManager.ViewsByRegionName["InteractionDetailsRegion"])
{
if(view.ViewName == "DispositionsView")
{
// view.ViewType = null;
IDispositionsView MyView = view.ViewType as IDispositionsView;
break;
}
}
}[/code]
So, I have two questions:
1. Can I have retrieve the object reference to Call Result pull-down menu?
2. (AND/OR) Is there a way to disable/hide Call Result pull-down menu?
Thank you in advance and best regards,
Ali
-
Under roles, isn't there an option for that?
Enviado de meu E6633 usando Tapatalk
-
[quote author=cavagnaro link=topic=10732.msg48780#msg48780 date=1509968653]
Under roles, isn't there an option for that?
Enviado de meu E6633 usando Tapatalk
[/quote]
Outbound - Can Set Call Result
https://docs.genesys.com/Documentation/IW/latest/Dep/OutboundCampaignPrivileges
You can disable editing, but not disable displaying it
-
Hello,
We are still using GAD (v76).
Is there an option to disable it on this component?
We are using the agent scripting (v81) for agents to complete however it is still possible to mark done a record using the original call result field - which we want to stop.
thanks
-
Does the outbound contact server "record_processed" = false option suite your needs?
https://docs.genesys.com/Documentation/OU/latest/Dep/OCSOptionDescriptions
-
Hello,
no it does not as the agent cannot complete the record after the call has been released.
thanks