Click here to Skip to main content
15,887,945 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hello,
I need assistance with coding SDK. What I am trying to do is display an indicator on the screen when a duplicate value is entered into a data field/box. For example, if (2) people take a call on "ticket 123" I need an indicator to appear on the screen stating something to the extent of "ticket# currently in use". Can you assist?

Will this SDK work?
PropID a = new PropID();
a.Name = "My Prop ID";
CreateRequest req = new CreateRequest();
req.Parameters.Add("SuppressDuplicateDetection", false);
req.Target = a;
try
{
service.Execute(req);
}
catch (FaultException<organizationservicefault> ex)
{
if (ex.Detail.ErrorCode == -2147220685)
{
// Account with name "My Property ID" already exists
}
else
{
throw;
}
}
Posted
Comments
RedDk 9-Mar-15 12:47pm    
What is the name of the SDK?
Member 11510617 9-Mar-15 12:49pm    
Encompass 360
RedDk 9-Mar-15 12:59pm    
Have you looked at:

http://www.encompdev.com/Examples
Member 11510617 9-Mar-15 13:00pm    
I will look into it. Thank you.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900