Hi Team,
We recently upgraded our CRM version to 2016. After up gradation we are facing some with the case status. Case status list is showing additional values in the custom portal we implemented but not showing in CRM as shown below. It is showing one additional value in custom portal as "Merged". Could any one help me to resolve this issue.
CRM:
Custom Portal
We have written following code for retrieving case status in the custom portal we implemented
RetrieveAttributeRequest _Request = new RetrieveAttributeRequest
{
EntityLogicalName = Incident.EntityLogicalName,
LogicalName = PicklistName,
RetrieveAsIfPublished = true
};
RetrieveAttributeResponse _Response = (RetrieveAttributeResponse)_iOgranizationService.Execute(_Request);
StatusAttributeMetadata _StatusAttributeMetadata = (StatusAttributeMetadata)_Response.AttributeMetadata;
OptionMetadata[] optionList = _StatusAttributeMetadata.OptionSet.Options.ToArray();
*This post is locked for comments