CIS-ITSM Exam

sn-ushi
Tera Contributor

What is recommended to do if you incorrectly classify an emergency change as a normal change during the creation and scope stage of the change?

  •  Cancel and recreate the change as an Emergency change
  •  Tick the CAB approval required checkbox
  •  Create an emergency change and link them as parent-child
  •  Select Revert to New and update the type to Emergency

 

9 REPLIES 9

Thank you! But how do you Select Revert to New? In my PDI I do not see this option.

Hi @sn-ushi ,

Please check if the model field is empty or not.

If the model is empty then please deactivate 'State model - Can change state?' this business rule filrst and then try to Run the Fix script mentioned below to move the state to New.

Code :

var gr = new GlideRecord('change_request');
gr.addQuery('sys_id','9d3f823bc611228700376cc3b4b5b87b'); // please replace the sys_id with your chnage request sys_id
gr.query();
while(gr.next()){
	gr.state = -5; // backend value of 'new' state 
	gr.update();
}

Please try the code above. If It's helpful for you please mark it helpful and accept the solution.

Regards,
Sagnic

Sarthak Kashyap
Mega Sage

Hi @sn-ushi ,

 

Please check correct ans below 

D. Select Revert to New and update the type to Emergency

SarthakKashyap_0-1769328699056.png

 

Please mark my answer correct and helpful if this works for you

Thanks and Regards,

Sarthak

Thank you! But how do you Select Revert to New? In my PDI I do not see this option.

Vijaya_Mnpram
Kilo Sage

  If the change is still in 'Creation and Scope' stage, then Option 4 - 'Select Revert to New and update the type to Emergency' is the right option. The Change Model and Type becomes read-only soon after the change goes into 'Approval' Stage.

Vijaya_Mnpram_1-1776265894484.png

 

But in 'Creation and Scope' stage, the change Model is still editable. There is no direct option as ''Select Revert to New and update the type to Emergency' in the Change form, but the 'Model' is still in editable. So, you can change the value from 'Normal' to 'Emergency'.

Vijaya_Mnpram_0-1776265872245.png

 

 

Did you already finish CIS-ITSM exam? If yes, how was it?