You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 16, 2024. It is now read-only.
Running code containing CloseIncidentRequest throws the following error:
FakeXrmEasy.PullRequestException: 'Exception: The organization request type 'Microsoft.Crm.Sdk.Messages.CloseIncidentRequest' is not yet supported... but we DO love pull requests so please feel free to submit one! :). This functionality is not available yet.
Code being run is:
`
// Close the case
var incidentResolution = new IncidentResolution
{
Subject = "Cyclical Schedule Completed",
};
incidentResolution.IncidentId = insp.ebecs_incidentid;
CloseIncidentRequest closeRequest = new CloseIncidentRequest
{
IncidentResolution = incidentResolution,
Status = new OptionSetValue((int)Incident_StatusCode.PracticallyComplete),
};
service.Execute(closeRequest);`