Hi,
I try to create a custom Incident form in Visual Studio to replace the default Incident form in SCSM console. Unfortunately my new form does not load when creating a new Incident, instead it always opens the default Incident form. I tried to link the form to various Incident TypeProjections like System.WorkItem.Incident.ProjectionType for example. I also tried to link the form to the Incident class itself which did not work either.
<Form ID="customforms.incident" Accessibility="Public" Target="SMIML!System.WorkItem.Incident.ProjectionType" Assembly="customforms.assembly" TypeName="customforms.IncidentForm"> <Category>Form</Category> </Form>
However when I link the form to another custom class or TypeProjection I created, everything works as expected and the form loads when creating a new object of this class from console. So it seems that there is no error in my MP and/or custom form...
Maybe someone can point me to the right direction.
Thanks for your help!