<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Pratiksha Mahajan &#8211; LogiUpSkill</title>
	<atom:link href="https://logiupskills.com/author/pratikshamahajan/feed/" rel="self" type="application/rss+xml" />
	<link>https://logiupskills.com</link>
	<description></description>
	<lastBuildDate>Fri, 30 Jan 2026 11:39:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://logiupskills.com/wp-content/uploads/2025/11/cropped-Untitled-design-37-32x32.png</url>
	<title>Pratiksha Mahajan &#8211; LogiUpSkill</title>
	<link>https://logiupskills.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>SCHEDULED JOB</title>
		<link>https://logiupskills.com/scheduled-job/</link>
					<comments>https://logiupskills.com/scheduled-job/#respond</comments>
		
		<dc:creator><![CDATA[Pratiksha Mahajan]]></dc:creator>
		<pubDate>Tue, 30 Dec 2025 11:20:37 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://logiupskills.com/?p=10679</guid>

					<description><![CDATA[<p>Introduction In ServiceNow, Scheduled Jobs are used to run scripts automatically at a defined time or interval. They are commonly used for tasks like sending reminder emails, updating records, cleaning up old data, or monitoring SLAs. This blog explains: What a Scheduled Job is When to use it How it works One real-time example with script What is a Scheduled Job in ServiceNow? A Scheduled Job is a server-side script that runs: At a specific date and time Daily / Weekly / Monthly At regular intervals (for example, every 15 minutes) It runs in the background without user interaction. When Should You Use a Scheduled Job? Use a Scheduled Job when: You need automation based on time No user action is involved You want to run reports or checks regularly Common Use Cases Send daily or weekly reports Notify users about SLA breaches Auto-close old incidents Escalate tickets stuck in a state Scheduled Job Types in ServiceNow Run once – Executes only one time Repeat – Runs daily, weekly, or monthly Run at intervals – Runs every X minutes or hours Example Scenario (Real-Time Use Case) Requirement Send an email every day at 7:00 AM to the IT Manager listing all Incidents that are still Open for more than 3 days. Step-by-Step: Create Scheduled Job Step 1: Navigate to Scheduled Jobs System Definition → Scheduled Jobs → New Step 2: Fill Basic Details Name: Daily Open Incident Reminder Run: Daily Time: 07:00:00 Active: true Step 3: Script (Example Code) (function () {    var gr = new GlideRecord(&#8216;incident&#8217;);    gr.addQuery(&#8216;state&#8217;, &#8216;!=&#8217;, 7); // Not Closed    gr.addQuery(&#8216;opened_at&#8217;, &#8216;&#60;=&#8217;, gs.daysAgoStart(3));    gr.query();     var incidentList = &#8221;;     while (gr.next()) {        incidentList += gr.number + &#8216; &#8211; &#8216; + gr.short_description + &#8216;n&#8217;;    }     if (incidentList != &#8221;) {        gs.eventQueue(&#8216;daily.open.incident.alert&#8217;, null, incidentList, &#8221;);    }})(); Step 4: Email Notification Create an Email Notification: Table: Incident Event name:daily.open.incident.alert To: IT Manager Subject: Daily Open Incidents Older Than 3 Days Body: Hello Team, Below are the incidents open for more than 3 days: ${parm1} Regards,ServiceNow Output Every morning at 7:00 AM: Scheduled Job runs Checks for old open incidents Sends one consolidated email to the IT Manager Best Practices Always test scripts in Background Scripts first Avoid heavy queries during business hours Log messages using gs.log() for debugging Keep scheduled jobs simple and efficient Conclusion Scheduled Jobs are powerful automation tools in ServiceNow. With proper planning and scripting, they help reduce manual effort and improve operational efficiency.</p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/scheduled-job/">SCHEDULED JOB</a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="10679" class="elementor elementor-10679" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-008144a e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="008144a" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-18d64e1 elementor-widget elementor-widget-heading" data-id="18d64e1" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Introduction</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-2f89b95 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="2f89b95" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-212e676 elementor-widget elementor-widget-text-editor" data-id="212e676" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>In ServiceNow, <strong>Scheduled Jobs</strong> are used to run scripts automatically at a defined time or interval. They are commonly used for tasks like sending reminder emails, updating records, cleaning up old data, or monitoring SLAs.</p><p>This blog explains:</p><ul><li>What a Scheduled Job is</li><li>When to use it</li><li>How it works</li><li>One real-time example with script</li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-2931bb6 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="2931bb6" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-387d489 elementor-widget elementor-widget-heading" data-id="387d489" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">What is a Scheduled Job in ServiceNow?</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-b029ada e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="b029ada" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-9b1359f elementor-widget elementor-widget-text-editor" data-id="9b1359f" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>A <strong>Scheduled Job</strong> is a server-side script that runs:</p><ul><li>At a specific date and time</li><li>Daily / Weekly / Monthly</li><li>At regular intervals (for example, every 15 minutes)</li></ul><p>It runs in the background without user interaction.</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-2d1dbd7 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="2d1dbd7" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-e86d191 elementor-widget elementor-widget-heading" data-id="e86d191" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">When Should You Use a Scheduled Job?</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-e75dc58 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="e75dc58" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-6768a52 elementor-widget elementor-widget-text-editor" data-id="6768a52" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>Use a Scheduled Job when:</p><ul><li>You need automation based on time</li><li>No user action is involved</li><li>You want to run reports or checks regularly</li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-391afa5 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="391afa5" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-b7bbfd2 elementor-widget elementor-widget-heading" data-id="b7bbfd2" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Common Use Cases</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-420f927 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="420f927" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-11e5f90 elementor-widget elementor-widget-text-editor" data-id="11e5f90" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li>Send daily or weekly reports</li><li>Notify users about SLA breaches</li><li>Auto-close old incidents</li><li>Escalate tickets stuck in a state</li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-4e85b16 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="4e85b16" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-6be7372 elementor-widget elementor-widget-heading" data-id="6be7372" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Scheduled Job Types in ServiceNow</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-3c59ea3 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="3c59ea3" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-85e415f elementor-widget elementor-widget-text-editor" data-id="85e415f" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ol><li><strong>Run once</strong> – Executes only one time</li><li><strong>Repeat</strong> – Runs daily, weekly, or monthly</li><li><strong>Run at intervals</strong> – Runs every X minutes or hours</li></ol>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-cd755c6 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="cd755c6" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-56ee3ba elementor-widget elementor-widget-heading" data-id="56ee3ba" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Example Scenario (Real-Time Use Case)

Requirement
</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-3c88856 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="3c88856" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-b2224a9 elementor-widget elementor-widget-text-editor" data-id="b2224a9" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>Send an email every day at <strong>7:00 AM</strong> to the IT Manager listing all <strong>Incidents that are still Open for more than 3 days</strong>.</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-daf2235 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="daf2235" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-82e2294 elementor-widget elementor-widget-heading" data-id="82e2294" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Step-by-Step: Create Scheduled Job</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-0f5d981 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="0f5d981" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-f5ee298 elementor-widget elementor-widget-heading" data-id="f5ee298" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Step 1: Navigate to Scheduled Jobs</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-bce1030 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="bce1030" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-dd38537 elementor-widget elementor-widget-text-editor" data-id="dd38537" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>System Definition → Scheduled Jobs → New</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-e020c9e e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="e020c9e" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-86ac51b elementor-widget elementor-widget-heading" data-id="86ac51b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Step 2: Fill Basic Details</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-1ca3a0b e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="1ca3a0b" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-23fb779 elementor-widget elementor-widget-text-editor" data-id="23fb779" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li><strong>Name:</strong> Daily Open Incident Reminder</li><li><strong>Run:</strong> Daily</li><li><strong>Time:</strong> 07:00:00</li><li><strong>Active:</strong> true</li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-187b412 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="187b412" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-1a65102 elementor-widget elementor-widget-image" data-id="1a65102" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img fetchpriority="high" decoding="async" width="640" height="360" src="https://logiupskills.com/wp-content/uploads/2025/12/1-13-1024x576.png" class="attachment-large size-large wp-image-10685" alt="Scheduled job in ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/1-13-1024x576.png 1024w, https://logiupskills.com/wp-content/uploads/2025/12/1-13-300x169.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/1-13-768x432.png 768w, https://logiupskills.com/wp-content/uploads/2025/12/1-13-1536x864.png 1536w, https://logiupskills.com/wp-content/uploads/2025/12/1-13.png 1920w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-0c3e4bd e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="0c3e4bd" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-516b9a8 elementor-widget elementor-widget-heading" data-id="516b9a8" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Step 3: Script (Example Code)</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-6d69522 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="6d69522" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-a0dda69 elementor-widget elementor-widget-text-editor" data-id="a0dda69" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>(function () {<br />    var gr = new GlideRecord(&#8216;incident&#8217;);<br />    gr.addQuery(&#8216;state&#8217;, &#8216;!=&#8217;, 7); // Not Closed<br />    gr.addQuery(&#8216;opened_at&#8217;, &#8216;&lt;=&#8217;, gs.daysAgoStart(3));<br />    gr.query();<br /><br />    var incidentList = &#8221;;<br /><br />    while (gr.next()) {<br />        incidentList += gr.number + &#8216; &#8211; &#8216; + gr.short_description + &#8216;\n&#8217;;<br />    }<br /><br />    if (incidentList != &#8221;) {<br />        gs.eventQueue(&#8216;daily.open.incident.alert&#8217;, null, incidentList, &#8221;);<br />    }<br />})();<br /><br /></p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-4c05ba6 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="4c05ba6" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-0edcb7e elementor-widget elementor-widget-image" data-id="0edcb7e" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img decoding="async" width="640" height="360" src="https://logiupskills.com/wp-content/uploads/2025/12/2-13-1024x576.png" class="attachment-large size-large wp-image-10687" alt="Scheduled job in ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/2-13-1024x576.png 1024w, https://logiupskills.com/wp-content/uploads/2025/12/2-13-300x169.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/2-13-768x432.png 768w, https://logiupskills.com/wp-content/uploads/2025/12/2-13-1536x864.png 1536w, https://logiupskills.com/wp-content/uploads/2025/12/2-13.png 1920w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-f49f71a e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="f49f71a" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-1d3f1f5 elementor-widget elementor-widget-heading" data-id="1d3f1f5" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Step 4: Email Notification</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-78b053f e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="78b053f" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-5276b88 elementor-widget elementor-widget-text-editor" data-id="5276b88" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>Create an <strong>Email Notification</strong>:</p><ul><li><strong>Table:</strong> Incident</li><li><strong>Event name:</strong>daily.open.incident.alert</li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-fcc5c0a e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="fcc5c0a" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-9780845 elementor-widget elementor-widget-image" data-id="9780845" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img decoding="async" width="640" height="360" src="https://logiupskills.com/wp-content/uploads/2025/12/event-trigger-1024x576.png" class="attachment-large size-large wp-image-10692" alt="Scheduled job in ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/event-trigger-1024x576.png 1024w, https://logiupskills.com/wp-content/uploads/2025/12/event-trigger-300x169.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/event-trigger-768x432.png 768w, https://logiupskills.com/wp-content/uploads/2025/12/event-trigger-1536x864.png 1536w, https://logiupskills.com/wp-content/uploads/2025/12/event-trigger.png 1920w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-8f76e59 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="8f76e59" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-0edc7c3 elementor-widget elementor-widget-text-editor" data-id="0edc7c3" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li><strong>To:</strong> IT Manager</li><li><strong>Subject:</strong> Daily Open Incidents Older Than 3 Days</li><li><strong>Body:</strong></li></ul><p>Hello Team,</p><p>Below are the incidents open for more than 3 days:</p><p>${parm1}</p><p>Regards,<br />ServiceNow</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-1e0b2bd e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="1e0b2bd" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-6462106 elementor-widget elementor-widget-image" data-id="6462106" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="360" src="https://logiupskills.com/wp-content/uploads/2025/12/3-14-1024x576.png" class="attachment-large size-large wp-image-10699" alt="Scheduled job in ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/3-14-1024x576.png 1024w, https://logiupskills.com/wp-content/uploads/2025/12/3-14-300x169.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/3-14-768x432.png 768w, https://logiupskills.com/wp-content/uploads/2025/12/3-14-1536x864.png 1536w, https://logiupskills.com/wp-content/uploads/2025/12/3-14.png 1920w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-1c7ca26 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="1c7ca26" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-7864da9 elementor-widget elementor-widget-image" data-id="7864da9" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="360" src="https://logiupskills.com/wp-content/uploads/2025/12/4-14-1024x576.png" class="attachment-large size-large wp-image-10700" alt="Scheduled job in ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/4-14-1024x576.png 1024w, https://logiupskills.com/wp-content/uploads/2025/12/4-14-300x169.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/4-14-768x432.png 768w, https://logiupskills.com/wp-content/uploads/2025/12/4-14-1536x864.png 1536w, https://logiupskills.com/wp-content/uploads/2025/12/4-14.png 1920w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-5e7a2d3 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="5e7a2d3" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-56f072d elementor-widget elementor-widget-image" data-id="56f072d" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="360" src="https://logiupskills.com/wp-content/uploads/2025/12/5-12-1024x576.png" class="attachment-large size-large wp-image-10701" alt="Scheduled job in ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/5-12-1024x576.png 1024w, https://logiupskills.com/wp-content/uploads/2025/12/5-12-300x169.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/5-12-768x432.png 768w, https://logiupskills.com/wp-content/uploads/2025/12/5-12-1536x864.png 1536w, https://logiupskills.com/wp-content/uploads/2025/12/5-12.png 1920w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-7723eaf e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="7723eaf" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-7656b26 elementor-widget elementor-widget-heading" data-id="7656b26" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Output</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-506028e e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="506028e" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-1bee1bc elementor-widget elementor-widget-text-editor" data-id="1bee1bc" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>Every morning at 7:00 AM:</p><ul><li>Scheduled Job runs</li><li>Checks for old open incidents</li><li>Sends one consolidated email to the IT Manager</li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-5822d4b e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="5822d4b" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-01c8807 elementor-widget elementor-widget-heading" data-id="01c8807" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Best Practices</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-0820aa6 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="0820aa6" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-a29ebbb elementor-widget elementor-widget-text-editor" data-id="a29ebbb" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li>Always test scripts in <strong>Background Scripts</strong> first</li><li>Avoid heavy queries during business hours</li><li>Log messages using gs.log() for debugging</li><li>Keep scheduled jobs simple and efficient</li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-ebf9ba6 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="ebf9ba6" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-9d32ea3 elementor-widget elementor-widget-heading" data-id="9d32ea3" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Conclusion</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-4c2fd49 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="4c2fd49" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-8c711b2 elementor-widget elementor-widget-text-editor" data-id="8c711b2" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>Scheduled Jobs are powerful automation tools in ServiceNow. With proper planning and scripting, they help reduce manual effort and improve operational efficiency.</p>								</div>
					</div>
				</div>
				</div>
		<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/scheduled-job/">SCHEDULED JOB</a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/scheduled-job/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Change Management</title>
		<link>https://logiupskills.com/change_management/</link>
					<comments>https://logiupskills.com/change_management/#respond</comments>
		
		<dc:creator><![CDATA[Pratiksha Mahajan]]></dc:creator>
		<pubDate>Fri, 05 Dec 2025 11:01:36 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://devlogiupskill.comingsolutions.com/?p=7692</guid>

					<description><![CDATA[<p>Change Management 1. Definition: ServiceNow change management is a module that provides a structured approach to managing changes within an IT environment, ensuring they are implemented safely and efficiently while minimizing disruptions. 1.1Types of Changes 1.1.1 Standard Change Pre-approved, low-risk, and common (e.g., password reset, software update). No CAB (Change Advisory Board) approval is required.  1.1.2 Normal Change Requires risk assessment and CAB approval. (within 24 Hours) Goes through various stages: creation, assessment, approval, implementation, review.  1.1.3Emergency Change For urgent repairs (e.g., production outage). Requires expedited approval process. 2.  Normal Change Management (Flow) States in any ServiceNow application serve a specific purpose. They are designed to make it clear where in a process a record currently resides and to display progress. States should represent a unique phase in a process where a specific set of related activities are grouped together designed to achieve a particular outcome to move to the next phase of the process. 2.1 New When a Change Request is first created in ServiceNow, it enters the New state, which represents the very beginning of the change of lifecycle. At this stage, the change has only been submitted with basic details, and no evaluation, approvals, or workflow activities have started yet. The New state acts like a draft phase where the Change Manager or Change Coordinator reviews the initial information to verify whether the request is valid, complete, and ready for further processing. Only after this review does the Change move out of the New state—usually into the Assess or Authorize stage—where detailed analysis, risk and impact assessment, and approval workflows begin. 2.2 Assess In the Assessed state of a Change Request, all the necessary analysis—such as impact, risk, complexity, and resource requirements—has already been completed by the technical and change teams. Once this evaluation is done, the Change Request moves into a stage where it needs authorization before it can proceed further. At this point, the Service Owner plays a key role by reviewing the assessment details and deciding whether the change should move forward. The Service Owner approves the change in the Assessed state, ensuring that the proposed modification is beneficial, aligns with service goals, and does not pose unacceptable risks. This approval is crucial because it confirms that the change is justified, planned properly, and safe to advance toward scheduling and implementation 2.3 Authorize In Change Management, the Authorized state is the stage where all required approvals—especially from the Change Advisory Board (CAB)—are handled for Normal changes. When a Normal change reaches this state, it automatically triggers the CAB approval workflow, ensuring that the proposed change has been reviewed from technical, business, and risk perspectives. The Authorized state is also the point where the change start and end dates are finalized and confirmed. By the time a change is authorized, all assessments are complete, stakeholders have approved it, and the schedule is locked in so the change can proceed confidently toward implementation. 2.4 Scheduled In the Scheduled state of a Change Request, all approvals have already been completed, and the change is fully authorized for implementation. At this stage, no further activities or reviews take place because everything required for execution—such as risk assessment, planning, approvals, and scheduling—has already been finalized. The change simply remains in the Scheduled state until the Planned Start Date arrives. Once that date and time are reached, the change will move forward into the Implementation phase, where the actual work begins. 2.5 Implement When a Change Request moves into the Implement state, the system automatically populates the Actual Start Date field with the exact date and time the implementation begins. This marks the official start of the execution phase. During this state, all work related to the change is carried out, and the Work Notes field or associated Change Tasks are used to record every activity performed as part of the implementation. These notes help maintain complete transparency, provide technical documentation, and ensure accurate tracking of progress throughout the implementation process. 2.6 Review When a Change Request moves into the Review state, the system automatically fills in the Actual End Date with the exact date and time the implementation work is completed. This marks the official end of the execution phase. The Review state is used to verify whether the change was successful, evaluate any issues encountered, and confirm that all implementation tasks were completed as planned. The Implementer will populate the mandatory fields: 2.7 Close code &#38; Close note has three options 1) Successful 2) Successful with issues 3) Unsuccessful 2.8 Closed The Closed state represents the final completion of a Change Request (CR). It indicates that all stages of the change—planning, approvals, implementation, and review—have been fully completed and documented. Once a change reaches the Closed state, no further actions are required, and the record is effectively archived for future reference, reporting, or audit purposes. 2.9 Canceled The Canceled state represents a Change Request (CR) that is no longer required, deemed invalid, or should not continue through the change lifecycle. When a change is canceled, it means that it will not move forward to assessment, approval, implementation, or any further stage. The request is officially stopped and closed out of the active change process, typically because the need no longer exists, requirements have changed, or the change was created in error. 3 Emergency Change Management (Flow) 3.1 New In Emergency Change Management, when a change is first created, it begins in the New state, just like other change types. However, this stage is extremely brief because emergency changes are time-critical and require immediate attention. The New state simply captures the initial details of the urgent issue—such as the impact, affected services, and the reason for emergency treatment—before the change is quickly reviewed by the Change Manager or Emergency CAB (ECAB). Unlike normal changes, the New state in an emergency scenario is not used for extended analysis or planning; instead, it acts as a rapid starting point from which the change moves almost immediately into authorization and implementation</p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/change_management/">Change Management</a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="7692" class="elementor elementor-7692" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-dd4cbf6 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="dd4cbf6" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-2c33c09 elementor-widget elementor-widget-heading" data-id="2c33c09" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Change Management</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-3c59c97 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="3c59c97" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-8a586d2 elementor-widget elementor-widget-text-editor" data-id="8a586d2" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc1679891633"></a><a name="_Toc1767422386"></a>1. Definition:</h4>
<p>ServiceNow change management is a module that provides a structured approach to managing changes within an IT environment, ensuring they are implemented safely and efficiently while minimizing disruptions.</p>
<h4><a name="_Toc554067007"></a><a name="_Toc1595085966"></a>1.1Types of Changes</h4>
<h4><a name="_Toc1460667653"></a><a name="_Toc851853045"></a>1.1.1 Standard Change</h4>
<ul>
<li>Pre-approved, low-risk, and common (e.g., password reset, software update).</li>
<li>No CAB (Change Advisory Board) approval is required.</li>
</ul>
<h4> <a name="_Toc1622685280"></a><a name="_Toc1446372455"></a>1.1.2 Normal Change</h4>
<ul>
<li>Requires risk assessment and CAB approval. (within 24 Hours)</li>
<li>Goes through various stages: creation, assessment, approval, implementation, review.</li>
</ul>
<h4> <a name="_Toc1586076201"></a><a name="_Toc181403734"></a>1.1.3Emergency Change</h4>
<ul>
<li>For urgent repairs (e.g., production outage).</li>
<li>Requires expedited approval process.</li>
</ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-3753bfa e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="3753bfa" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-f594106 elementor-widget elementor-widget-text-editor" data-id="f594106" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc1190361304"></a><a name="_Toc643621529"></a>2.  Normal Change Management (Flow)</h4>
<p>States in any ServiceNow application serve a specific purpose. They are designed to make it clear where in a process a record currently resides and to display progress. States should represent a unique phase in a process where a specific set of related activities are grouped together designed to achieve a particular outcome to move to the next phase of the process.</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-576a8d9 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="576a8d9" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-16b52ac elementor-widget elementor-widget-text-editor" data-id="16b52ac" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc1849289688"></a><a name="_Toc270848812"></a>2.1 New</h4>
<ul>
<li>When a Change Request is first created in ServiceNow, it enters the New state, which represents the very beginning of the change of lifecycle. At this stage, the change has only been submitted with basic details, and no evaluation, approvals, or workflow activities have started yet.</li>
<li>The New state acts like a draft phase where the Change Manager or Change Coordinator reviews the initial information to verify whether the request is valid, complete, and ready for further processing. Only after this review does the Change move out of the New state—usually into the Assess or Authorize stage—where detailed analysis, risk and impact assessment, and approval workflows begin.</li>
</ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-0ece80f e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="0ece80f" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-51eb793 elementor-widget elementor-widget-image" data-id="51eb793" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="292" src="https://logiupskills.com/wp-content/uploads/2025/12/1-6.png" class="attachment-large size-large wp-image-7709" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/1-6.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/1-6-300x137.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/1-6-768x351.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-e7a7e01 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="e7a7e01" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-19e848e elementor-widget elementor-widget-text-editor" data-id="19e848e" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc538837946"></a><a name="_Toc1309965046"></a>2.2 Assess</h4>
<ul>
<li>In the Assessed state of a Change Request, all the necessary analysis—such as impact, risk, complexity, and resource requirements—has already been completed by the technical and change teams. Once this evaluation is done, the Change Request moves into a stage where it needs authorization before it can proceed further.</li>
<li>At this point, the Service Owner plays a key role by reviewing the assessment details and deciding whether the change should move forward.</li>
</ul>
<p>The Service Owner approves the change in the Assessed state, ensuring that the proposed modification is beneficial, aligns with service goals, and does not pose unacceptable risks. This approval is crucial because it confirms that the change is justified, planned properly, and safe to advance toward scheduling and implementation</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-c9623d9 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="c9623d9" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-9deb947 elementor-widget elementor-widget-image" data-id="9deb947" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="299" src="https://logiupskills.com/wp-content/uploads/2025/12/2-6.png" class="attachment-large size-large wp-image-7716" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/2-6.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/2-6-300x140.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/2-6-768x359.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-f0e1407 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="f0e1407" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-9d13a32 elementor-widget elementor-widget-text-editor" data-id="9d13a32" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc1758017345"></a><a name="_Toc1886521065"></a>2.3 Authorize</h4>
<ul>
<li>In Change Management, the Authorized state is the stage where all required approvals—especially from the Change Advisory Board (CAB)—are handled for Normal changes.</li>
<li>When a Normal change reaches this state, it automatically triggers the CAB approval workflow, ensuring that the proposed change has been reviewed from technical, business, and risk perspectives. The Authorized state is also the point where the change start and end dates are finalized and confirmed.</li>
<li>By the time a change is authorized, all assessments are complete, stakeholders have approved it, and the schedule is locked in so the change can proceed confidently toward implementation.</li>
</ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-4441ca2 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="4441ca2" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-0591317 elementor-widget elementor-widget-image" data-id="0591317" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="301" src="https://logiupskills.com/wp-content/uploads/2025/12/3-7.png" class="attachment-large size-large wp-image-7720" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/3-7.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/3-7-300x141.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/3-7-768x361.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-e348778 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="e348778" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-1254d66 elementor-widget elementor-widget-text-editor" data-id="1254d66" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc414893889"></a><a name="_Toc1350931883"></a>2.4 Scheduled</h4>
<ul>
<li>In the Scheduled state of a Change Request, all approvals have already been completed, and the change is fully authorized for implementation.</li>
<li>At this stage, no further activities or reviews take place because everything required for execution—such as risk assessment, planning, approvals, and scheduling—has already been finalized.</li>
<li>The change simply remains in the Scheduled state until the Planned Start Date arrives. Once that date and time are reached, the change will move forward into the Implementation phase, where the actual work begins.</li>
</ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-4df77ab e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="4df77ab" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-dcb29f7 elementor-widget elementor-widget-image" data-id="dcb29f7" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="303" src="https://logiupskills.com/wp-content/uploads/2025/12/4-7.png" class="attachment-large size-large wp-image-7721" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/4-7.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/4-7-300x142.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/4-7-768x363.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-7b6ea8e e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="7b6ea8e" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-c136bae elementor-widget elementor-widget-text-editor" data-id="c136bae" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc124285951"></a><a name="_Toc1908299290"></a>2.5 Implement</h4>
<ul>
<li>When a Change Request moves into the Implement state, the system automatically populates the Actual Start Date field with the exact date and time the implementation begins.</li>
<li>This marks the official start of the execution phase. During this state, all work related to the change is carried out, and the Work Notes field or associated Change Tasks are used to record every activity performed as part of the implementation.</li>
<li>These notes help maintain complete transparency, provide technical documentation, and ensure accurate tracking of progress throughout the implementation process.</li>
</ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-eef75a2 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="eef75a2" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-86a5e7e elementor-widget elementor-widget-image" data-id="86a5e7e" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="301" src="https://logiupskills.com/wp-content/uploads/2025/12/5-6.png" class="attachment-large size-large wp-image-7722" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/5-6.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/5-6-300x141.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/5-6-768x361.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-d5cd024 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="d5cd024" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-2e9fe96 elementor-widget elementor-widget-text-editor" data-id="2e9fe96" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc383667533"></a><a name="_Toc7007953"></a>2.6 Review</h4>
<ul>
<li>When a Change Request moves into the Review state, the system automatically fills in the Actual End Date with the exact date and time the implementation work is completed.</li>
<li>This marks the official end of the execution phase. The Review state is used to verify whether the change was successful, evaluate any issues encountered, and confirm that all implementation tasks were completed as planned.</li>
</ul>
<p>The Implementer will populate the mandatory fields:</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-02d7766 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="02d7766" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-a9e538b elementor-widget elementor-widget-image" data-id="a9e538b" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="303" src="https://logiupskills.com/wp-content/uploads/2025/12/6-8.png" class="attachment-large size-large wp-image-7723" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/6-8.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/6-8-300x142.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/6-8-768x363.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-6c888bc e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="6c888bc" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-fe8b933 elementor-widget elementor-widget-text-editor" data-id="fe8b933" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc2089686023"></a><a name="_Toc541456139"></a>2.7 Close code &amp; Close note has three options</h4>
<p>1) Successful</p>
<p>2) Successful with issues</p>
<p>3) Unsuccessful</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-92dd204 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="92dd204" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-630a95e elementor-widget elementor-widget-image" data-id="630a95e" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="292" src="https://logiupskills.com/wp-content/uploads/2025/12/7-5.png" class="attachment-large size-large wp-image-7724" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/7-5.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/7-5-300x137.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/7-5-768x351.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-21ee3f4 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="21ee3f4" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-6ed1c4f elementor-widget elementor-widget-text-editor" data-id="6ed1c4f" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc1473192924"></a><a name="_Toc1305017376"></a>2.8 Closed</h4>
<ul>
<li>The Closed state represents the final completion of a Change Request (CR). It indicates that all stages of the change—planning, approvals, implementation, and review—have been fully completed and documented.</li>
<li>Once a change reaches the Closed state, no further actions are required, and the record is effectively archived for future reference, reporting, or audit purposes.</li>
</ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-17ecacf e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="17ecacf" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-6f30c57 elementor-widget elementor-widget-image" data-id="6f30c57" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="299" src="https://logiupskills.com/wp-content/uploads/2025/12/8-7.png" class="attachment-large size-large wp-image-7725" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/8-7.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/8-7-300x140.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/8-7-768x359.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-2d0e544 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="2d0e544" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-d826a6a elementor-widget elementor-widget-text-editor" data-id="d826a6a" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc306936124"></a><a name="_Toc378892167"></a>2.9 Canceled</h4>
<ul>
<li>The Canceled state represents a Change Request (CR) that is no longer required, deemed invalid, or should not continue through the change lifecycle.</li>
<li>When a change is canceled, it means that it will not move forward to assessment, approval, implementation, or any further stage.</li>
<li>The request is officially stopped and closed out of the active change process, typically because the need no longer exists, requirements have changed, or the change was created in error.</li>
</ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-31a77d9 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="31a77d9" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-d59c574 elementor-widget elementor-widget-image" data-id="d59c574" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="296" src="https://logiupskills.com/wp-content/uploads/2025/12/9-6.png" class="attachment-large size-large wp-image-7726" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/9-6.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/9-6-300x139.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/9-6-768x355.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-37f0ccf e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="37f0ccf" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-d367c51 elementor-widget elementor-widget-image" data-id="d367c51" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="297" src="https://logiupskills.com/wp-content/uploads/2025/12/10-8.png" class="attachment-large size-large wp-image-7727" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/10-8.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/10-8-300x139.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/10-8-768x357.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-03267d8 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="03267d8" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-34efe25 elementor-widget elementor-widget-text-editor" data-id="34efe25" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><a name="_Toc124939724"></a>3 Emergency Change Management (Flow)</p>
<h4><a name="_Toc452051048"></a>3.1 New</h4>
<ul>
<li>In Emergency Change Management, when a change is first created, it begins in the New state, just like other change types. However, this stage is extremely brief because emergency changes are time-critical and require immediate attention.</li>
<li>The New state simply captures the initial details of the urgent issue—such as the impact, affected services, and the reason for emergency treatment—before the change is quickly reviewed by the Change Manager or Emergency CAB (ECAB).</li>
<li>Unlike normal changes, the New state in an emergency scenario is not used for extended analysis or planning; instead, it acts as a rapid starting point from which the change moves almost immediately into authorization and implementation to restore service as quickly as possible.</li>
</ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-ca4b0d0 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="ca4b0d0" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-22917da elementor-widget elementor-widget-image" data-id="22917da" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="288" src="https://logiupskills.com/wp-content/uploads/2025/12/11-6.png" class="attachment-large size-large wp-image-7728" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/11-6.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/11-6-300x135.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/11-6-768x346.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-624d7bf e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="624d7bf" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-778a313 elementor-widget elementor-widget-text-editor" data-id="778a313" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc1693850829"></a>3.2 Authorize</h4>
<ul>
<li>In Emergency Change Management, the Authorized state is still used to handle approvals, but the process is significantly faster due to the urgent nature of the change.</li>
<li>While Normal changes require full CAB approval, emergency changes are typically reviewed and authorized by the Emergency CAB (ECAB) or a designated authority who can make rapid decisions. In this state, the emergency change is quickly validated, approved, and prepared for immediate execution.</li>
<li>The Authorized state also confirms the scheduled start time—often set to begin as soon as possible—to ensure that the emergency fix can proceed without delay, minimizing service disruption and restoring normal operations swiftly.</li>
</ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-f8568ea e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="f8568ea" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-8c9d380 elementor-widget elementor-widget-image" data-id="8c9d380" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="289" src="https://logiupskills.com/wp-content/uploads/2025/12/12-4.png" class="attachment-large size-large wp-image-7729" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/12-4.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/12-4-300x136.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/12-4-768x347.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-fdbfd93 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="fdbfd93" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-777c009 elementor-widget elementor-widget-text-editor" data-id="777c009" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc1181750464"></a>3.3 Scheduled</h4>
<ul>
<li>In Emergency Change Management, the Scheduled state still indicates that the change has been fully approved for implementation, but this phase is extremely short or sometimes bypassed altogether due to the urgent nature of the work.</li>
<li>Since emergency changes are meant to be executed immediately to restore service or prevent major impact, the Scheduled state simply reflects that the change is ready to proceed and is only waiting for the planned start time—which, in most emergency cases, is set to begin right away.</li>
<li>No additional activities occur in this state; it merely serves as a brief holding point before the change quickly moves into implementation.</li>
</ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-45b54c1 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="45b54c1" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-9d6f51d elementor-widget elementor-widget-image" data-id="9d6f51d" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="295" src="https://logiupskills.com/wp-content/uploads/2025/12/13-4.png" class="attachment-large size-large wp-image-7733" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/13-4.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/13-4-300x138.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/13-4-768x354.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-44f59ca e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="44f59ca" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-e89f001 elementor-widget elementor-widget-text-editor" data-id="e89f001" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc302388099"></a>3.4 Implement</h4>
<ul>
<li>In Emergency Change Management, when the change moves into the Implement state, the system automatically fills the Actual Start Date with the exact date and time the urgent work begins.</li>
<li>This marks the start of the high-priority implementation phase, where teams work quickly to restore service or prevent further impact. During this state, all technical actions, troubleshooting steps, and updates must be recorded in the Work Notes or captured through Change Tasks.</li>
<li>These entries provide essential documentation of what was done, who performed it, and how the issue was addressed, ensuring clear tracking and accountability even in a fast-paced emergency scenario.</li>
</ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-fb92f6c e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="fb92f6c" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-ae13f98 elementor-widget elementor-widget-image" data-id="ae13f98" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="291" src="https://logiupskills.com/wp-content/uploads/2025/12/14-3.png" class="attachment-large size-large wp-image-7734" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/14-3.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/14-3-300x136.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/14-3-768x349.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-372da2c e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="372da2c" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-4bcf98a elementor-widget elementor-widget-text-editor" data-id="4bcf98a" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc636452193"></a>3.5 Review</h4>
<ul>
<li>In Emergency Change Management, when the change moves into the Review state, the system automatically populates the Actual End Date with the exact date and time the emergency implementation was completed.</li>
<li>This signals that the urgent work has finished, and the service has been restored or stabilized. In this state, the Implementer must fill in all mandatory fields to provide a complete record of what was done.</li>
<li>These typically include details such as the implementation summary, resolution notes, backout information (if applicable), and any lessons learned. This documentation is crucial because it ensures that even though the change was executed rapidly, a clear and accurate record exists for audit, analysis, and future prevention.</li>
</ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-0919598 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="0919598" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-fb4b9b1 elementor-widget elementor-widget-image" data-id="fb4b9b1" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="289" src="https://logiupskills.com/wp-content/uploads/2025/12/15-2.png" class="attachment-large size-large wp-image-7735" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/15-2.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/15-2-300x136.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/15-2-768x347.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-0f2cead e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="0f2cead" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-05f3c21 elementor-widget elementor-widget-text-editor" data-id="05f3c21" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc756293875"></a>3.6 Close</h4>
<ul>
<li>In Emergency Change Management, the Closed state represents the final completion of the Change Request (CR) after all urgent activities have been fully carried out and properly documented.</li>
<li>Even though an emergency change moves through the lifecycle much faster, once it reaches the Closed state, it means every step—authorization, rapid implementation, and post-implementation review—has been completed.</li>
<li>All required fields, work notes, and outcomes have been recorded to ensure traceability and compliance. At this point, the change is officially closed and archived, serving as a reference for future analysis, audits, and continuous improvement of emergency handling processes.</li>
</ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-8d7d390 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="8d7d390" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-38a37b2 elementor-widget elementor-widget-image" data-id="38a37b2" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="259" src="https://logiupskills.com/wp-content/uploads/2025/12/16-1.png" class="attachment-large size-large wp-image-7737" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/16-1.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/16-1-300x121.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/16-1-768x310.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-fe51600 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="fe51600" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-d57accc elementor-widget elementor-widget-image" data-id="d57accc" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="302" src="https://logiupskills.com/wp-content/uploads/2025/12/17-2.png" class="attachment-large size-large wp-image-7738" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/17-2.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/17-2-300x142.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/17-2-768x362.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-a6441e8 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="a6441e8" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-cf3c856 elementor-widget elementor-widget-text-editor" data-id="cf3c856" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc1232116199"></a>3.7 Canceled</h4>
<ul>
<li>In Emergency Change Management, the Canceled state represents a Change Request (CR) that is no longer needed, considered invalid, or should not proceed through the change lifecycle.</li>
<li>Even though emergency changes are time-sensitive, there may be situations—such as the underlying issue being resolved by other means or the emergency being a false alarm—where the change is stopped.</li>
</ul>
<p> </p>
<ul>
<li>Moving the change to the Canceled state officially terminates it, ensuring that no further actions, approvals, or implementations are performed, while maintaining a record for audit and tracking purposes.</li>
</ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-6c4343d e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="6c4343d" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-d7369c6 elementor-widget elementor-widget-image" data-id="d7369c6" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="300" src="https://logiupskills.com/wp-content/uploads/2025/12/18-2.png" class="attachment-large size-large wp-image-7742" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/18-2.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/18-2-300x141.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/18-2-768x360.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-f5cd05b e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="f5cd05b" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-9486839 elementor-widget elementor-widget-text-editor" data-id="9486839" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc1560438309"></a>4.Standard Change Management (Flow)</h4>
<h4><a name="_Toc116214261"></a>4.1 New</h4>
<ul>
<li>In Standard Change Management, when a change is first created, it enters the New state, which serves as the initial stage of the change lifecycle. At this point, the change has been submitted with only the basic details, such as the description, category, and requester information.</li>
<li>No assessment, approvals, or implementation planning occurs in the New state. It essentially acts as a placeholder to capture the change request and allows the Change Manager or designated authority to review the submission, verify its validity, and determine whether it should proceed further in the standard change workflow.</li>
</ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-81f7654 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="81f7654" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-f39dd8f elementor-widget elementor-widget-image" data-id="f39dd8f" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="293" src="https://logiupskills.com/wp-content/uploads/2025/12/19-1.png" class="attachment-large size-large wp-image-7744" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/19-1.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/19-1-300x137.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/19-1-768x351.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-49d0b70 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="49d0b70" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-85413ab elementor-widget elementor-widget-text-editor" data-id="85413ab" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc1093743621"></a>4.2 Scheduled</h4>
<ul>
<li>In Standard Change Management, the Scheduled state indicates that the change has been fully approved, and all planning activities are complete.</li>
<li>No further actions or evaluations take place in this state; the change simply waits until the Planned Start Date arrives.</li>
<li>Once that date and time are reached, the change moves into the Implement state, where the actual work is carried out according to the approved schedule.</li>
</ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-7167d1b e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="7167d1b" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-abfe164 elementor-widget elementor-widget-image" data-id="abfe164" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="298" src="https://logiupskills.com/wp-content/uploads/2025/12/20-1.png" class="attachment-large size-large wp-image-7745" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/20-1.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/20-1-300x140.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/20-1-768x358.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-d4614b1 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="d4614b1" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-f5dec44 elementor-widget elementor-widget-text-editor" data-id="f5dec44" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc691595059"></a>4.3 Implement</h4>
<ul>
<li>In Standard Change Management, when a change moves into the Implement state, the system automatically populates the Actual Start Date with the exact date and time the implementation begins.</li>
<li>This marks the official start of executing the approved change. During this phase, all activities performed as part of the implementation—such as configuration updates, system modifications, or testing—are documented in the Work Notes field or through associated Change Tasks.</li>
<li>This ensures a complete record of what was done, who performed it, and when providing transparency and accountability throughout the implementation process.</li>
</ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-3f70741 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="3f70741" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-adc5dd5 elementor-widget elementor-widget-image" data-id="adc5dd5" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="293" src="https://logiupskills.com/wp-content/uploads/2025/12/21-1.png" class="attachment-large size-large wp-image-7746" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/21-1.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/21-1-300x137.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/21-1-768x351.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-6e02af6 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="6e02af6" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-34f264d elementor-widget elementor-widget-text-editor" data-id="34f264d" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc1442534560"></a>4.4 Resolve</h4>
<ul>
<li>In Standard Change Management, when a change moves into the Review (or Resolve) state, the system automatically populates the Actual End Date with the exact date and time the implementation work is completed.</li>
<li>This state is used to verify whether the change objectives were successfully met, confirm that all tasks were completed as planned, and document any issues or outcomes.</li>
<li>The implementer or change owner is responsible for filling in all mandatory fields, such as the implementation summary, resolution notes, and any backout information if applicable. This ensures that a complete and accurate record is maintained before the change moves to the Closed state.</li>
</ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-28f8b00 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="28f8b00" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-cecae64 elementor-widget elementor-widget-image" data-id="cecae64" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="292" src="https://logiupskills.com/wp-content/uploads/2025/12/22.png" class="attachment-large size-large wp-image-7747" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/22.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/22-300x137.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/22-768x351.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-7b30f0a e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="7b30f0a" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-ccb7076 elementor-widget elementor-widget-text-editor" data-id="ccb7076" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc2063935928"></a>4.5 Close</h4>
<ul>
<li>In Standard Change Management, the Closed state represents the final completion of a Change Request (CR). It indicates that all stages of the change—planning, approvals, implementation, and review—have been fully executed and properly documented.</li>
<li>Once a change reaches the Closed state, no further actions are required, and the record is officially archived.</li>
<li>This ensures a complete audit trail, provides historical reference for reporting, and confirms that the change has been successfully completed according to the defined process.</li>
</ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-ff86db0 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="ff86db0" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-7ab6899 elementor-widget elementor-widget-image" data-id="7ab6899" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="299" src="https://logiupskills.com/wp-content/uploads/2025/12/23-1.png" class="attachment-large size-large wp-image-7754" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/23-1.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/23-1-300x140.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/23-1-768x358.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-bf5c20b e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="bf5c20b" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-4acd0e6 elementor-widget elementor-widget-image" data-id="4acd0e6" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="299" src="https://logiupskills.com/wp-content/uploads/2025/12/24-1.png" class="attachment-large size-large wp-image-7755" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/24-1.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/24-1-300x140.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/24-1-768x358.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-c8f0dc5 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="c8f0dc5" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-c81723d elementor-widget elementor-widget-text-editor" data-id="c81723d" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc1592383237"></a>4.6 Canceled</h4>
<p>In Standard Change Management, the Canceled state represents a Change Request (CR) that is no longer required, considered invalid, or should not continue through the change lifecycle. When a change is moved to this state, all further actions, approvals, and implementations are stopped.</p>
<p>The record remains in the system for audit, tracking, and reporting purposes, ensuring that there is a documented reason for why the change was terminated without proceeding to completion.</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-3b7d32a e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="3b7d32a" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-49636f2 elementor-widget elementor-widget-image" data-id="49636f2" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="298" src="https://logiupskills.com/wp-content/uploads/2025/12/25-1.png" class="attachment-large size-large wp-image-7765" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/25-1.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/25-1-300x140.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/25-1-768x358.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-1df35fc e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="1df35fc" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-a5ff500 elementor-widget elementor-widget-image" data-id="a5ff500" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="293" src="https://logiupskills.com/wp-content/uploads/2025/12/26-1.png" class="attachment-large size-large wp-image-7769" alt="Change Management In ServiceNow" srcset="https://logiupskills.com/wp-content/uploads/2025/12/26-1.png 975w, https://logiupskills.com/wp-content/uploads/2025/12/26-1-300x138.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/26-1-768x352.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-b958670 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="b958670" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-41f18c0 elementor-widget elementor-widget-text-editor" data-id="41f18c0" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc2035269839"></a><a name="_Toc640801726"></a>5.Change Management – Fields Table</h4>
<p> </p>
<table>
<tbody>
<tr>
<td width="92">
<p><strong>Field Name</strong></p>
</td>
<td width="89">
<p><strong>Technical Name</strong></p>
</td>
<td width="64">
<p><strong>Type</strong></p>
</td>
<td width="379">
<p><strong>Description</strong></p>
</td>
</tr>
<tr>
<td width="92">
<p>Number</p>
</td>
<td width="89">
<p>number</p>
</td>
<td width="64">
<p>Auto-generated</p>
</td>
<td width="379">
<p>Unique identifier for each change request.</p>
</td>
</tr>
<tr>
<td width="92">
<p>State</p>
</td>
<td width="89">
<p>state</p>
</td>
<td width="64">
<p>Choice</p>
</td>
<td width="379">
<p>Current status of the change (New, Assess, Authorize, Scheduled, Implement, Review, Closed).</p>
</td>
</tr>
<tr>
<td width="92">
<p>Type</p>
</td>
<td width="89">
<p>type</p>
</td>
<td width="64">
<p>Choice</p>
</td>
<td width="379">
<p>Type of change (Standard, Normal, Emergency).</p>
</td>
</tr>
<tr>
<td width="92">
<p>Assignment Group</p>
</td>
<td width="89">
<p>assignment_group</p>
</td>
<td width="64">
<p>Reference</p>
</td>
<td width="379">
<p>The group is responsible for handling the change.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Assigned To</p>
</td>
<td width="89">
<p>assigned_to</p>
</td>
<td width="64">
<p>Reference</p>
</td>
<td width="379">
<p>User assigned to work on the change.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Requested By</p>
</td>
<td width="89">
<p>requested_by</p>
</td>
<td width="64">
<p>Reference</p>
</td>
<td width="379">
<p>User who requested the change.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Category</p>
</td>
<td width="89">
<p>category</p>
</td>
<td width="64">
<p>Choice</p>
</td>
<td width="379">
<p>Category of the change (Hardware, Software, Network, etc.).</p>
</td>
</tr>
<tr>
<td width="92">
<p>Priority</p>
</td>
<td width="89">
<p>priority</p>
</td>
<td width="64">
<p>Choice</p>
</td>
<td width="379">
<p>Impact + Urgency determines priority.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Impact</p>
</td>
<td width="89">
<p>impact</p>
</td>
<td width="64">
<p>Choice</p>
</td>
<td width="379">
<p>The level of impact the change has on business.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Urgency</p>
</td>
<td width="89">
<p>urgency</p>
</td>
<td width="64">
<p>Choice</p>
</td>
<td width="379">
<p>How quickly is the change needed.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Short Description</p>
</td>
<td width="89">
<p>short_description</p>
</td>
<td width="64">
<p>String</p>
</td>
<td width="379">
<p>A summary of the change.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Description</p>
</td>
<td width="89">
<p>description</p>
</td>
<td width="64">
<p>Journal/HTML</p>
</td>
<td width="379">
<p>Detailed information about the change request.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Change Plan</p>
</td>
<td width="89">
<p>chg_plan</p>
</td>
<td width="64">
<p>HTML</p>
</td>
<td width="379">
<p>Plan to implement the change.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Test Plan</p>
</td>
<td width="89">
<p>test_plan</p>
</td>
<td width="64">
<p>HTML</p>
</td>
<td width="379">
<p>Details about testing the change implementation.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Backout Plan</p>
</td>
<td width="89">
<p>backout_plan</p>
</td>
<td width="64">
<p>HTML</p>
</td>
<td width="379">
<p>Steps to revert if change fails.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Risk</p>
</td>
<td width="89">
<p>risk</p>
</td>
<td width="64">
<p>Integer / choice</p>
</td>
<td width="379">
<p>Level of risk (Low, Medium, High).</p>
</td>
</tr>
<tr>
<td width="92">
<p>Justification</p>
</td>
<td width="89">
<p>justification</p>
</td>
<td width="64">
<p>HTML</p>
</td>
<td width="379">
<p>Reason for the change.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Start Date</p>
</td>
<td width="89">
<p>start_date</p>
</td>
<td width="64">
<p>Date/Time</p>
</td>
<td width="379">
<p>When implementation is planned to start.</p>
</td>
</tr>
<tr>
<td width="92">
<p>End Date</p>
</td>
<td width="89">
<p>end_date</p>
</td>
<td width="64">
<p>Date/Time</p>
</td>
<td width="379">
<p>When implementation is completed.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Planned Start Date</p>
</td>
<td width="89">
<p>planned_start_date</p>
</td>
<td width="64">
<p>Date/Time</p>
</td>
<td width="379">
<p>Planned start of change activities.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Planned End Date</p>
</td>
<td width="89">
<p>planned_end_date</p>
</td>
<td width="64">
<p>Date/Time</p>
</td>
<td width="379">
<p>Planned end time of change activities.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Implementation Plan</p>
</td>
<td width="89">
<p>implementation_plan</p>
</td>
<td width="64">
<p>HTML</p>
</td>
<td width="379">
<p>Step-by-step implementation details.</p>
</td>
</tr>
<tr>
<td width="92">
<p>CAB Required</p>
</td>
<td width="89">
<p>cab_required</p>
</td>
<td width="64">
<p>Boolean</p>
</td>
<td width="379">
<p>Indicates if CAB approval is needed.</p>
</td>
</tr>
<tr>
<td width="92">
<p>CAB Date</p>
</td>
<td width="89">
<p>cab_date</p>
</td>
<td width="64">
<p>Date/Time</p>
</td>
<td width="379">
<p>Scheduled CAB meeting date.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Work Notes</p>
</td>
<td width="89">
<p>work_notes</p>
</td>
<td width="64">
<p>Journal</p>
</td>
<td width="379">
<p>Internal notes added by technicians.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Additional Comments</p>
</td>
<td width="89">
<p>comments</p>
</td>
<td width="64">
<p>Journal</p>
</td>
<td width="379">
<p>Customer-visible comments.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Approval</p>
</td>
<td width="89">
<p>approval</p>
</td>
<td width="64">
<p>Choice</p>
</td>
<td width="379">
<p>Approval status (Requested, Approved, Rejected).</p>
</td>
</tr>
<tr>
<td width="92">
<p>Approval History</p>
</td>
<td width="89">
<p>sysapproval_approval</p>
</td>
<td width="64">
<p>Related List</p>
</td>
<td width="379">
<p>Shows all approval records.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Close Code</p>
</td>
<td width="89">
<p>close_code</p>
</td>
<td width="64">
<p>Choice</p>
</td>
<td width="379">
<p>Success, Failure, or Partial.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Close Notes</p>
</td>
<td width="89">
<p>close_notes</p>
</td>
<td width="64">
<p>Journal</p>
</td>
<td width="379">
<p>Notes added while closing the change.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Configuration Item (CI)</p>
</td>
<td width="89">
<p>cmdb_ci</p>
</td>
<td width="64">
<p>Reference</p>
</td>
<td width="379">
<p>The CI impacted or related to the change.</p>
</td>
</tr>
<tr>
<td width="92">
<p>Change Owner</p>
</td>
<td width="89">
<p>change_owner</p>
</td>
<td width="64">
<p>Reference</p>
</td>
<td width="379">
<p>The person responsible for the overall change.</p>
</td>
</tr>
</tbody>
</table>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-421c7ad e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="421c7ad" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-30b24bc elementor-widget elementor-widget-text-editor" data-id="30b24bc" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><a name="_Toc1724889242"></a><a name="_Toc798334282"></a>6.Conclusion</h4>
<p>Change Management helps organizations make changes in a safe and organized way. It reduces risks, avoids unexpected issues, and ensures that every change is planned, approved, and implemented properly. By following a clear process, teams can keep systems stable while still improving and adapting to new needs.</p>								</div>
					</div>
				</div>
				</div>
		<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/change_management/">Change Management</a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/change_management/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
