You must link an Incident to an Emergency Change in the "Incidents Fixed by Change" tab at the bottom

ServiceNow Use6
Tera Guru

Hi,

I am creating a brand new Emergency Change and when I was creating one, when I click on Request for Approval, I am getting this error. You must link an Incident to an Emergency Change in the "Incidents Fixed by Change" tab at the bottom. Why should link an incident anyway? Kindly help.

find_real_file.png

find_real_file.png

Regards

Suman P.

1 ACCEPTED SOLUTION

Hi,

You can associate more than one incidents with change by below:

1. Open Incident which you want to map with change request.

2. Scroll to Related records tab and update the Change request field with your change number.

find_real_file.png 

Also you can add incidents by clicking on edit button in 'Incidents fixed by Change' related list.

find_real_file.png

 

Thanks,
Anil Lande

Please appreciate the efforts of community contributors by marking appropriate response as correct answer and helpful, this may help other community users to follow correct solution in future.
Thanks
Anil Lande

View solution in original post

6 REPLIES 6

I would like to make my emergency changes require an incident. Would this be done with a business rule? 

Hi @Mark Petras,

 

  1. Navigate to: System Definition > Business Rules
  2. Click New, and configure:
    • Name: Require Incident for Emergency Change Request
    • Table: Change Request [change_request]
    • When: Before
    • Insert: TRUE
    • Update: TRUE
    • Condition: current.type == 'emergency'
    • Script:
      • if (!current.incident || current.incident.nil()) {
            gs.addErrorMessage("An Incident must be linked for Emergency Changes.");
            current.setAbortAction(true);
        }

Best,

Connor Lyons

Consultant at Infocenter

CSA | CAD | 15x CIS

LinkedIn

Please mark answer correct and/or helpful for others reading this with the same issue/question.