Genesys CTI User Forum

Genesys CTI User Forum => Genesys-related Development => Topic started by: Ali on November 06, 2017, 10:24:01 AM

Title: How to hide Call Result pull-down menu
Post 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
Title: Re: How to hide Call Result pull-down menu
Post by: cavagnaro on November 06, 2017, 11:44:13 AM
Under roles, isn't there an option for that?


Enviado de meu E6633 usando Tapatalk

Title: Re: How to hide Call Result pull-down menu
Post by: hsujdik on November 06, 2017, 12:40:22 PM
[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
Title: Re: How to hide Call Result pull-down menu
Post by: PFCCWA on September 06, 2018, 10:45:47 AM
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
Title: Re: How to hide Call Result pull-down menu
Post by: hsujdik on September 06, 2018, 12:40:11 PM
Does the outbound contact server "record_processed" = false option suite your needs?
https://docs.genesys.com/Documentation/OU/latest/Dep/OCSOptionDescriptions
Title: Re: How to hide Call Result pull-down menu
Post by: PFCCWA on September 07, 2018, 11:41:47 AM
Hello,

no it does not as the agent cannot complete the record after the call has been released.

thanks