Hi,
I'm trying to find the component that has a specific id. Does anyone know how to do this? My CRM instance is Online and using "CRM Online Spring '14 (6.1.2.133) (DB6.1.2.112).
The reason I want to find it is that when I attempt to import a managed solution I get the following error:
"A managed solution cannot overwrite the OptionSet component with Id=xxxxx"
I have tried using xrm classes such as RetrieveAllOptionSetsRequest and RetrieveAttributeRequest without any luck e.g.
RetrieveAllOptionSetsRequest retrieveAllOptionSetsRequest = new RetrieveAllOptionSetsRequest();
RetrieveAllOptionSetsResponse retrieveAllOptionSetsResponse = (RetrieveAllOptionSetsResponse)service.Execute(retrieveAllOptionSetsRequest);
or
RetrieveAttributeRequest retrieveAttributeRequest = new RetrieveAttributeRequest();
retrieveAttributeRequest.MetadataId = new Guid("xxxxxx");
RetrieveAttributeResponse retrieveAttributeResponse = (RetrieveAttributeResponse)service.Execute(retrieveAttributeRequest);
Thanks
Ken