<?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>Vivek Chavan &#8211; LogiUpSkill</title>
	<atom:link href="https://logiupskills.com/author/vivekchavan/feed/" rel="self" type="application/rss+xml" />
	<link>https://logiupskills.com</link>
	<description></description>
	<lastBuildDate>Wed, 11 Feb 2026 05:46:11 +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>Vivek Chavan &#8211; LogiUpSkill</title>
	<link>https://logiupskills.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Scripted REST API </title>
		<link>https://logiupskills.com/scripted-rest-api-2/</link>
					<comments>https://logiupskills.com/scripted-rest-api-2/#respond</comments>
		
		<dc:creator><![CDATA[Vivek Chavan]]></dc:creator>
		<pubDate>Fri, 06 Feb 2026 11:55:16 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://logiupskills.com/?p=15216</guid>

					<description><![CDATA[<p>Scripted REST API Scripted REST API is a server-side interface in ServiceNow that lets external systems send and receive data using HTTP methods (GET, POST, PUT, DELETE) with custom logic written in JavaScript.  Table API provides access to all fields of a table (based on ACLs), which means consumers can retrieve or modify every accessible field in that table.  In contrast, Scripted REST API allows us to control and limit field access by explicitly defining which fields are exposed in the response as per business requirements.  Basically, Table API exposes all accessible fields, whereas Scripted REST API allows us to restrict and expose only required fields, improving security and performance.  Scenario 1 &#8211; Create scripted REST API to get count of records in any table in ServiceNow  Scenario 2 – Create scripted REST API to get 5 fields of incident record by passing sys id.  Solution – Navigate &#8211;&#62; All –Scripted rest API &#8211;&#62; New   Create record as below:  Now create one resource to get data form system as below by clicking in new   Now scroll down and test our scripted REST API by clicking on Explore REST API   Now Fill the table name as input to Api parameter e.g.- incident, problem, change_request  Now click on send button on below and scroll down to see result   Use case 2&#8211; New incidents are created daily in the target instance by synchronizing incidents from source ServiceNow instance that are in the new state and were created between yesterday and today.  To achieve above use case in source instance create Resource in same scripted REST API  Give name getIncByState , select GET HTTP method and in relative path give the state as dynamic value   Write a script which sends a response to another instance by requesting a state value.  Create an array of object and fetch incidents whose state is new and any input and add records in array of object, assign array of object to response with count like shown below.  Now, in target instance opens scheduled jobs to create a new scheduled script for fetching incidents from source instance.  Click on “new” to create new and select Run – Daily, Time zone –user system time zone and Give time value to run script on the time   Write a script in a scheduled job to fetch data in the target instance.  Now check the incident table, some records will be created in the target instance same as the source instance between yesterday and today.  Open incident table in source instance and create 2-3 incidents Now click on “Execute Now” scheduled job and see the target instance incident table. Incidents will be created in the target instance form yesterday.  This use case implements a Scripted REST API to synchronize incidents between two ServiceNow instances by automatically creating new incidents in the target instance daily. The integration filters source incidents to include only those in the new state and created within a defined time window (from yesterday to today), ensuring that only relevant and recent records are transferred. This approach maintains data consistency across instances, avoids duplicating or outdated records, and supports efficient, scheduled incident synchronization. </p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/scripted-rest-api-2/">Scripted REST API </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="15216" class="elementor elementor-15216" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-58ed729 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="58ed729" 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-17ed1a0 elementor-widget elementor-widget-heading" data-id="17ed1a0" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h1 class="elementor-heading-title elementor-size-default">Scripted REST API </h1>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-d8edc10 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="d8edc10" 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-80e11ce elementor-widget elementor-widget-text-editor" data-id="80e11ce" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><b><span data-contrast="auto">Scripted REST API</span></b><span data-contrast="auto"> is a server-side interface in ServiceNow that lets external systems </span><b><span data-contrast="auto">send and receive data using HTTP methods</span></b><span data-contrast="auto"> (GET, POST, PUT, DELETE) with </span><b><span data-contrast="auto">custom logic</span></b><span data-contrast="auto"> written in JavaScript.</span><span data-ccp-props="{}"> </span></p><p><b><span data-contrast="auto">Table API</span></b><span data-contrast="auto"> provides access to </span><b><span data-contrast="auto">all fields of a table</span></b><span data-contrast="auto"> (based on ACLs), which means consumers can retrieve or modify every accessible field in that table.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="auto">In contrast, </span><b><span data-contrast="auto">Scripted REST API</span></b><span data-contrast="auto"> allows us to </span><b><span data-contrast="auto">control and limit field access</span></b><span data-contrast="auto"> by explicitly defining </span><b><span data-contrast="auto">which fields are exposed in the response</span></b><span data-contrast="auto"> as per business requirements.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="auto">Basically, Table API exposes all accessible fields, whereas Scripted REST API allows us to restrict and expose only required fields, improving security and performance.</span><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">Scenario 1 &#8211; Create scripted REST API to get count of records in any table in ServiceNow</span><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">Scenario 2 – Create scripted REST API to get 5 fields of incident record by passing sys id.</span><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">Solution – Navigate &#8211;&gt; All –Scripted rest API &#8211;&gt; New </span><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">Create record as below:</span><span data-ccp-props="{}"> </span></p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-24f9919 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="24f9919" 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-1f16dfb elementor-widget elementor-widget-image" data-id="1f16dfb" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img fetchpriority="high" decoding="async" width="640" height="313" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture38.png" class="attachment-large size-large wp-image-15218" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture38.png 780w, https://logiupskills.com/wp-content/uploads/2026/02/Picture38-300x147.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/Picture38-768x376.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-ce98d58 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="ce98d58" 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-62bc4c9 elementor-widget elementor-widget-text-editor" data-id="62bc4c9" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li><span class="TextRun SCXW87650453 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW87650453 BCX0">Now create one resource to get data form system as below by clicking in new </span></span><span class="EOP SCXW87650453 BCX0" data-ccp-props="{}"> </span></li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-e9af829 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="e9af829" 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-e18b562 elementor-widget elementor-widget-image" data-id="e18b562" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img decoding="async" width="640" height="323" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture39.png" class="attachment-large size-large wp-image-15219" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture39.png 780w, https://logiupskills.com/wp-content/uploads/2026/02/Picture39-300x152.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/Picture39-768x388.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-ffbd9e8 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="ffbd9e8" 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-90aac45 elementor-widget elementor-widget-text-editor" data-id="90aac45" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li><span class="TextRun SCXW257387188 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW257387188 BCX0">Now scroll down and test our scripted REST API by clicking on Explore REST API </span></span><span class="EOP SCXW257387188 BCX0" data-ccp-props="{}"> </span></li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-29ccf1a e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="29ccf1a" 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-64425a8 elementor-widget elementor-widget-image" data-id="64425a8" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img decoding="async" width="640" height="316" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture40.png" class="attachment-large size-large wp-image-15220" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture40.png 780w, https://logiupskills.com/wp-content/uploads/2026/02/Picture40-300x148.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/Picture40-768x379.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-586049d e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="586049d" 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-c7360bb elementor-widget elementor-widget-text-editor" data-id="c7360bb" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li><span class="TextRun SCXW233305795 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW233305795 BCX0">Now Fill the table name as input to Api parameter </span><span class="NormalTextRun SCXW233305795 BCX0">e.g.</span><span class="NormalTextRun SCXW233305795 BCX0">&#8211;</span><span class="NormalTextRun SCXW233305795 BCX0"> i</span><span class="NormalTextRun SCXW233305795 BCX0">ncident, problem, </span><span class="NormalTextRun SCXW233305795 BCX0">change_request</span></span><span class="EOP SCXW233305795 BCX0" data-ccp-props="{}"> </span></li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-3fb0171 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="3fb0171" 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-05abb65 elementor-widget elementor-widget-image" data-id="05abb65" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="316" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture41.png" class="attachment-large size-large wp-image-15221" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture41.png 731w, https://logiupskills.com/wp-content/uploads/2026/02/Picture41-300x148.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-ede9d47 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="ede9d47" 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-8415e01 elementor-widget elementor-widget-text-editor" data-id="8415e01" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li><span class="TextRun SCXW83019620 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW83019620 BCX0">Now click on send button on below and scroll down to see result </span></span><span class="EOP SCXW83019620 BCX0" data-ccp-props="{}"> </span></li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-f8fedfc e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="f8fedfc" 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-28e450e elementor-widget elementor-widget-image" data-id="28e450e" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="587" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture42.png" class="attachment-large size-large wp-image-15222" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture42.png 640w, https://logiupskills.com/wp-content/uploads/2026/02/Picture42-300x275.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-1135e33 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="1135e33" 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-9e5e98f elementor-widget elementor-widget-text-editor" data-id="9e5e98f" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><b><span data-contrast="auto">Use case 2</span></b><span data-contrast="auto">&#8211; New incidents are created daily in the target instance by synchronizing incidents from source ServiceNow instance that are in the new state and were created between yesterday and today.</span><span data-ccp-props="{}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="1" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559683&quot;:0,&quot;335559684&quot;:-2,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">To achieve above use case in source instance create Resource in same scripted REST API</span><span data-ccp-props="{}"> </span></li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-a150f89 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="a150f89" 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-558e2ee elementor-widget elementor-widget-image" data-id="558e2ee" 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/2026/02/Picture43.png" class="attachment-large size-large wp-image-15223" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture43.png 780w, https://logiupskills.com/wp-content/uploads/2026/02/Picture43-300x141.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/Picture43-768x361.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-66a8e26 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="66a8e26" 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-a4a3e7e elementor-widget elementor-widget-text-editor" data-id="a4a3e7e" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li><span class="TextRun SCXW130524897 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW130524897 BCX0">Give name </span><span class="NormalTextRun SCXW130524897 BCX0">getIncByState</span><span class="NormalTextRun SCXW130524897 BCX0"> </span><span class="NormalTextRun SCXW130524897 BCX0">,</span><span class="NormalTextRun SCXW130524897 BCX0"> select GET HTTP method </span><span class="NormalTextRun SCXW130524897 BCX0">and in relative path give the state as dynamic value </span></span><span class="EOP SCXW130524897 BCX0" data-ccp-props="{}"> </span></li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-dd46731 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="dd46731" 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-facf96e elementor-widget elementor-widget-image" data-id="facf96e" 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/2026/02/Picture44.png" class="attachment-large size-large wp-image-15224" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture44.png 780w, https://logiupskills.com/wp-content/uploads/2026/02/Picture44-300x135.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/Picture44-768x347.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-09aee07 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="09aee07" 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-5124efe elementor-widget elementor-widget-text-editor" data-id="5124efe" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li style="font-weight: 400" data-leveltext="" data-font="Symbol" data-listid="2" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559683&quot;:0,&quot;335559684&quot;:-2,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">Write a script which sends a response to another instance by requesting a state value.</span><span data-ccp-props="{}"> </span></li><li style="font-weight: 400" data-leveltext="" data-font="Symbol" data-listid="2" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559683&quot;:0,&quot;335559684&quot;:-2,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="2" data-aria-level="1"><span data-contrast="auto">Create an array of object and fetch incidents whose state is new and any input and add records in array of object, assign array of object to response with count like shown below.</span><span data-ccp-props="{}"> </span></li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-5007d82 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="5007d82" 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-54cd2e3 elementor-widget elementor-widget-image" data-id="54cd2e3" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="324" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture45.png" class="attachment-large size-large wp-image-15225" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture45.png 780w, https://logiupskills.com/wp-content/uploads/2026/02/Picture45-300x152.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/Picture45-768x389.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-f077227 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="f077227" 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-f354223 elementor-widget elementor-widget-text-editor" data-id="f354223" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li><span class="TextRun SCXW179027396 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW179027396 BCX0">Now, </span><span class="NormalTextRun SCXW179027396 BCX0">in</span><span class="NormalTextRun SCXW179027396 BCX0"> target instance </span><span class="NormalTextRun SCXW179027396 BCX0">opens</span><span class="NormalTextRun SCXW179027396 BCX0"> scheduled </span><span class="NormalTextRun SCXW179027396 BCX0">jobs</span><span class="NormalTextRun SCXW179027396 BCX0"> </span><span class="NormalTextRun SCXW179027396 BCX0">to create</span><span class="NormalTextRun SCXW179027396 BCX0"> </span><span class="NormalTextRun SCXW179027396 BCX0">a new</span><span class="NormalTextRun SCXW179027396 BCX0"> scheduled script for </span><span class="NormalTextRun SCXW179027396 BCX0">fetching incidents </span><span class="NormalTextRun SCXW179027396 BCX0">from</span><span class="NormalTextRun SCXW179027396 BCX0"> source </span><span class="NormalTextRun SCXW179027396 BCX0">instance</span><span class="NormalTextRun SCXW179027396 BCX0">.</span></span><span class="EOP SCXW179027396 BCX0" data-ccp-props="{}"> </span></li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-40d8c14 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="40d8c14" 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-288c2db elementor-widget elementor-widget-image" data-id="288c2db" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="324" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture46.png" class="attachment-large size-large wp-image-15226" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture46.png 780w, https://logiupskills.com/wp-content/uploads/2026/02/Picture46-300x152.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/Picture46-768x389.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-871dc92 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="871dc92" 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-7af2a9c elementor-widget elementor-widget-text-editor" data-id="7af2a9c" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li><span data-contrast="auto">Click on “new” to create new and select Run – Daily, Time zone –user system time zone</span><span data-ccp-props="{}"> a</span><span data-contrast="auto">nd Give time value to run script on the time </span><span data-ccp-props="{}"> </span></li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-99fb423 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="99fb423" 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-c08fea8 elementor-widget elementor-widget-image" data-id="c08fea8" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="307" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture47.png" class="attachment-large size-large wp-image-15227" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture47.png 780w, https://logiupskills.com/wp-content/uploads/2026/02/Picture47-300x144.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/Picture47-768x368.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-767abed e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="767abed" 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-5d07834 elementor-widget elementor-widget-text-editor" data-id="5d07834" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li><span class="TextRun SCXW156475801 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW156475801 BCX0">Write a script </span><span class="NormalTextRun SCXW156475801 BCX0">in </span><span class="NormalTextRun SCXW156475801 BCX0">a scheduled</span><span class="NormalTextRun SCXW156475801 BCX0"> job </span><span class="NormalTextRun SCXW156475801 BCX0">to fetch data in the target instance</span><span class="NormalTextRun SCXW156475801 BCX0">.</span></span><span class="EOP SCXW156475801 BCX0" data-ccp-props="{}"> </span></li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-f3b2e8c e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="f3b2e8c" 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-6e01133 elementor-widget elementor-widget-image" data-id="6e01133" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="339" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture48.png" class="attachment-large size-large wp-image-15228" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture48.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/Picture48-300x163.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-cd4dd7c e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="cd4dd7c" 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-960776c elementor-widget elementor-widget-image" data-id="960776c" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="331" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture49.png" class="attachment-large size-large wp-image-15229" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture49.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/Picture49-300x159.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-c8ca40c e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="c8ca40c" 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-6d07485 elementor-widget elementor-widget-image" data-id="6d07485" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="243" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture50.png" class="attachment-large size-large wp-image-15230" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture50.png 782w, https://logiupskills.com/wp-content/uploads/2026/02/Picture50-300x114.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/Picture50-768x292.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-902ce0a e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="902ce0a" 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-32e50f2 elementor-widget elementor-widget-text-editor" data-id="32e50f2" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li style="font-weight: 400" data-leveltext="" data-font="Symbol" data-listid="3" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559683&quot;:0,&quot;335559684&quot;:-2,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">Now check the incident table, some records will be created in the target instance same as the source instance between yesterday and today.</span><span data-ccp-props="{}"> </span></li></ul><ul><li style="font-weight: 400" data-leveltext="" data-font="Symbol" data-listid="3" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559683&quot;:0,&quot;335559684&quot;:-2,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="2" data-aria-level="1"><span data-contrast="auto">Open incident table in source instance and create 2-3 incidents</span></li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-62e11ea e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="62e11ea" 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-e73b3f0 elementor-widget elementor-widget-image" data-id="e73b3f0" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="190" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture51.png" class="attachment-large size-large wp-image-15231" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture51.png 780w, https://logiupskills.com/wp-content/uploads/2026/02/Picture51-300x89.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/Picture51-768x228.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-410088b e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="410088b" 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-360663c elementor-widget elementor-widget-text-editor" data-id="360663c" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li><span data-contrast="auto">Now click on “Execute Now” scheduled job and see the target instance incident table. </span><span data-contrast="auto">Incidents will be created in the target instance form yesterday.</span><span data-ccp-props="{}"> </span></li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-6194db0 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="6194db0" 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-87bb84b elementor-widget elementor-widget-image" data-id="87bb84b" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="194" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture52.png" class="attachment-large size-large wp-image-15232" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture52.png 780w, https://logiupskills.com/wp-content/uploads/2026/02/Picture52-300x91.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/Picture52-768x232.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-1293edf e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="1293edf" 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-2fc7311 elementor-widget elementor-widget-text-editor" data-id="2fc7311" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW34806885 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW34806885 BCX0">This use case implements a Scripted REST API to synchronize incidents between two ServiceNow instances by automatically creating new incidents in the target instance </span><span class="NormalTextRun SCXW34806885 BCX0">daily</span><span class="NormalTextRun SCXW34806885 BCX0">. The integration filters source incidents to include only those in the </span></span><span class="TextRun SCXW34806885 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW34806885 BCX0">new</span></span><span class="TextRun SCXW34806885 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW34806885 BCX0"> state and created within a defined time window (from yesterday to today), ensuring that only relevant and recent records are transferred. This approach </span><span class="NormalTextRun SCXW34806885 BCX0">maintains</span><span class="NormalTextRun SCXW34806885 BCX0"> data consistency across instances, avoids </span><span class="NormalTextRun SCXW34806885 BCX0">duplicating</span><span class="NormalTextRun SCXW34806885 BCX0"> or outdated records, and supports efficient, scheduled incident synchronization.</span></span><span class="EOP SCXW34806885 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:0,&quot;335551620&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p>								</div>
					</div>
				</div>
				</div>
		<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/scripted-rest-api-2/">Scripted REST API </a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/scripted-rest-api-2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Service level Agreements (SLA)  </title>
		<link>https://logiupskills.com/service-level-agreements-sla/</link>
					<comments>https://logiupskills.com/service-level-agreements-sla/#respond</comments>
		
		<dc:creator><![CDATA[Vivek Chavan]]></dc:creator>
		<pubDate>Tue, 03 Feb 2026 13:06:18 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://logiupskills.com/?p=14782</guid>

					<description><![CDATA[<p>Service level Agreements (SLA) Service Level Agreement   It is a contract between the service provider and the customer that ensures response and resolution of tasks within a specified timeframe.  SLA timer  The SLA timer component is to track the amount of time required to complete the task as defined by the matching SLA definition.  Response &#8211;   It is the time taken to acknowledge the ticket.  Eg &#8211; Time required to give response for an incident such as assignment of incident to the user.   Resolution &#8211;   Actual time taken to resolve a ticket.  Eg- Time required for resolve the incident.  OLA &#8211;   An Operational Level Agreement (OLA) is an agreement that defines service commitments between internal teams or supporting organizations to ensure SLAs are met. (e.g., Network Team &#38; Service Desk)  SLA Conditions-  Start Condition &#8211;   The SLA starts when this condition evaluates true.  Example: Incident state is New or In Progress  Pause Condition &#8211;   Defines when the SLA timer is temporarily stopped. Time is not counted while the pause condition is true.  Example: Incident state is On Hold, Waiting for customer response  Stop Condition &#8211;  Defines when the SLA timer ends.  Example: Incident state is Resolved or Closed  Reset Condition &#8211;   Defines when SLA timing is recalculated as if it started again.  Eg – when incident is reopened   Scenario:  The organization tracks user-reported incidents with SLAs defined for Priority 1 cases. A Response SLA of 15 minutes starts when the incident is created and assigned to a group and ends when it is assigned to an individual. A Resolution SLA of 3 hours begins at incident creation and ends when the incident is resolved, pausing while the incident is in the On Hold state and resuming once work continues. Both SLAs operate 24/7 based on the caller’s time zone.    Navigate to → All → SLA → SLA Definitions → New   Solution &#8211;  1.Create an SLA record for Priority 1 with a 15-minute response time, as per the configuration below.  2.Response SLA will be completed when it is assigned to any user.  3.Create an incident record with Priority 1 and assign it to any assignment group. The Response SLA is attached to the incident in the related list.  4. The Response SLA timer is breached after 15 minutes.   5.The Response SLA is marked as completed once the incident is assigned to a user.  6.Create Priority 1 Resolution SLA as below   7.The SLA is paused when the incident is On Hold, and business time is not calculated.  8.The SLA timer stops when the incident is resolved or closed, and the SLA state is marked as completed.  9.Create an incident record with Priority 1 and assign it to the user as shown below. The Resolution SLA will be attached to the incident.  10.After the incident is resolved, the SLA state is marked as completed once the stop condition is met. </p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/service-level-agreements-sla/">Service level Agreements (SLA)  </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="14782" class="elementor elementor-14782" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-bc60dbb e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="bc60dbb" 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-67ff89e elementor-widget elementor-widget-heading" data-id="67ff89e" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Service level Agreements (SLA)  </h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-6a2be60 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="6a2be60" 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-1c94b40 elementor-widget elementor-widget-text-editor" data-id="1c94b40" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-contrast="none">Service Level Agreement </span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></p><p><span data-contrast="none">It is a contract between the service provider and the customer that ensures response and resolution of tasks within a specified timeframe.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="none">SLA timer</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></p><p><span data-contrast="none">The SLA timer component is to track the amount of time required to complete the task as defined by the matching SLA definition.</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></p><p><span data-contrast="none">Response</span><b><span data-contrast="none"> &#8211;</span></b><span data-contrast="none"> </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="none">It is the time taken to acknowledge the ticket.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="none">Eg &#8211; Time required to give response for an incident such as assignment of incident to the user. </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="none">Resolution </span><span data-contrast="none">&#8211;</span><span data-contrast="none"> </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="none">Actual time taken to resolve a ticket.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="none">Eg- Time required for resolve the incident.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="none">OLA</span><span data-contrast="none"> &#8211; </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="none">An Operational Level Agreement (OLA) is an agreement that defines service commitments between internal teams or supporting organizations to ensure SLAs are met. (e.g., Network Team &amp; Service Desk)</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="none">SLA Conditions-</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></p><p><span data-contrast="none">Start Condition</span><span data-contrast="auto"> &#8211; </span><span data-ccp-props="{}"> </span></p><ol><li data-leveltext="%1." data-font="Aptos" data-listid="6" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;multilevel&quot;,&quot;469778510&quot;:&quot;default&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">The SLA starts when this condition evaluates true.</span><span data-ccp-props="{}"> </span></li></ol><ol><li data-leveltext="%1." data-font="Aptos" data-listid="6" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;multilevel&quot;,&quot;469778510&quot;:&quot;default&quot;}" data-aria-posinset="2" data-aria-level="1"><span data-contrast="none">Example: Incident state is New or In Progress</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:280,&quot;335559739&quot;:280}"> </span></li></ol><p><span data-contrast="none">Pause Condition</span><span data-contrast="none"> &#8211;</span><span data-contrast="none"> </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></p><ol><li data-leveltext="%1." data-font="Aptos" data-listid="7" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;multilevel&quot;,&quot;469778510&quot;:&quot;default&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="none">Defines when the SLA timer is temporarily stopped.</span> <br /><span data-contrast="none">Time is not counted while the pause condition is true.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></li></ol><ol><li data-leveltext="%1." data-font="Aptos" data-listid="7" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;multilevel&quot;,&quot;469778510&quot;:&quot;default&quot;}" data-aria-posinset="2" data-aria-level="1"><span data-contrast="none">Example: Incident state is On Hold, Waiting for customer response</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:280,&quot;335559739&quot;:280}"> </span></li></ol><p><span data-contrast="none">Stop Condition</span><span data-contrast="none"> &#8211;</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></p><ol><li data-leveltext="%1." data-font="Aptos" data-listid="8" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;multilevel&quot;,&quot;469778510&quot;:&quot;default&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="none">Defines when the SLA timer ends.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></li></ol><ol><li data-leveltext="%1." data-font="Aptos" data-listid="8" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;multilevel&quot;,&quot;469778510&quot;:&quot;default&quot;}" data-aria-posinset="2" data-aria-level="1"><span data-contrast="none">Example: Incident state is Resolved or Closed</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:280,&quot;335559739&quot;:280}"> </span></li></ol><p><span data-contrast="none">Reset Condition</span><span data-contrast="none"> &#8211; </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></p><ol><li data-leveltext="%1." data-font="Times New Roman" data-listid="9" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;multilevel&quot;,&quot;469778510&quot;:&quot;default&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="none">Defines when SLA timing is recalculated as if it started again.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></li></ol><ol><li data-leveltext="%1." data-font="Times New Roman" data-listid="9" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;multilevel&quot;,&quot;469778510&quot;:&quot;default&quot;}" data-aria-posinset="2" data-aria-level="1"><span data-contrast="none">Eg – when incident is reopened </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></li></ol><p><span data-contrast="none">Scenario:</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="5" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">The organization tracks user-reported incidents with SLAs defined for Priority 1 cases. A </span><b><span data-contrast="auto">Response SLA</span></b><span data-contrast="auto"> of 15 minutes starts when the incident is created and assigned to a group and ends when it is assigned to an individual. A </span><b><span data-contrast="auto">Resolution SLA</span></b><span data-contrast="auto"> of 3 hours begins at incident creation and ends when the incident is resolved, pausing while the incident is in the </span><b><span data-contrast="auto">On Hold</span></b><span data-contrast="auto"> state and resuming once work continues. Both SLAs operate </span><b><span data-contrast="auto">24/7 based on the caller’s time zone</span></b><span data-contrast="auto">.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></li></ul><p><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559685&quot;:720,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="5" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="2" data-aria-level="1"><span data-contrast="none">Navigate to → All → SLA → SLA Definitions → New</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></li></ul><p><span data-contrast="none"> Solution &#8211;</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></p><p><span data-contrast="none">1.Create an SLA record for Priority 1 with a 15-minute response time, as per the configuration below</span><span data-contrast="none">.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></p>								</div>
				<div class="elementor-element elementor-element-80cff12 elementor-widget elementor-widget-image" data-id="80cff12" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="309" src="https://logiupskills.com/wp-content/uploads/2026/02/1-1.png" class="attachment-large size-large wp-image-14794" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/1-1.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/1-1-300x149.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-58dae5a elementor-widget elementor-widget-text-editor" data-id="58dae5a" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW53312868 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="none"><span class="NormalTextRun SCXW53312868 BCX0">2.Response SLA will be completed when it is assigned to any user.</span></span><span class="EOP SCXW53312868 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></p>								</div>
				<div class="elementor-element elementor-element-7bfca38 elementor-widget elementor-widget-image" data-id="7bfca38" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="280" src="https://logiupskills.com/wp-content/uploads/2026/02/2-3.png" class="attachment-large size-large wp-image-14801" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/2-3.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/2-3-300x135.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-6148410 elementor-widget elementor-widget-text-editor" data-id="6148410" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW12237756 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="none"><span class="NormalTextRun SCXW12237756 BCX0">3.Create an incident record with Priority 1 and assign it to any assignment group. The Response SLA is attached to the incident in the related list.</span></span><span class="EOP SCXW12237756 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></p>								</div>
				<div class="elementor-element elementor-element-49c5857 elementor-widget elementor-widget-image" data-id="49c5857" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="296" src="https://logiupskills.com/wp-content/uploads/2026/02/3-3.png" class="attachment-large size-large wp-image-14808" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/3-3.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/3-3-300x142.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-17571fa elementor-widget elementor-widget-text-editor" data-id="17571fa" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW241197065 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="none"><span class="NormalTextRun SCXW241197065 BCX0">4</span><span class="NormalTextRun SCXW241197065 BCX0">. The Response SLA timer is breached after 15 minutes. </span></span><span class="EOP SCXW241197065 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></p>								</div>
				<div class="elementor-element elementor-element-06c79ab elementor-widget elementor-widget-image" data-id="06c79ab" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="291" src="https://logiupskills.com/wp-content/uploads/2026/02/4-3.png" class="attachment-large size-large wp-image-14815" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/4-3.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/4-3-300x140.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-125c5f2 elementor-widget elementor-widget-text-editor" data-id="125c5f2" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW150743888 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="none"><span class="NormalTextRun SCXW150743888 BCX0">5</span><span class="NormalTextRun SCXW150743888 BCX0">.</span><span class="NormalTextRun SCXW150743888 BCX0">The Response SLA is marked as completed once the incident is assigned to a user.</span></span><span class="EOP SCXW150743888 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></p>								</div>
				<div class="elementor-element elementor-element-5819b2d elementor-widget elementor-widget-image" data-id="5819b2d" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="598" height="285" src="https://logiupskills.com/wp-content/uploads/2026/02/5-2.png" class="attachment-large size-large wp-image-14819" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/5-2.png 598w, https://logiupskills.com/wp-content/uploads/2026/02/5-2-300x143.png 300w" sizes="(max-width: 598px) 100vw, 598px" />															</div>
				<div class="elementor-element elementor-element-8d31778 elementor-widget elementor-widget-text-editor" data-id="8d31778" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW103571992 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="none"><span class="NormalTextRun SCXW103571992 BCX0">6</span><span class="NormalTextRun SCXW103571992 BCX0">.</span><span class="NormalTextRun SCXW103571992 BCX0">Create Priority 1 Resolution SLA as below </span></span><span class="EOP SCXW103571992 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></p>								</div>
				<div class="elementor-element elementor-element-1bc3386 elementor-widget elementor-widget-image" data-id="1bc3386" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="595" height="297" src="https://logiupskills.com/wp-content/uploads/2026/02/6-1.png" class="attachment-large size-large wp-image-14826" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/6-1.png 595w, https://logiupskills.com/wp-content/uploads/2026/02/6-1-300x150.png 300w" sizes="(max-width: 595px) 100vw, 595px" />															</div>
				<div class="elementor-element elementor-element-27c46ae elementor-widget elementor-widget-text-editor" data-id="27c46ae" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW255088981 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="none"><span class="NormalTextRun SCXW255088981 BCX0">7</span><span class="NormalTextRun SCXW255088981 BCX0">.</span><span class="NormalTextRun SCXW255088981 BCX0">The SLA is paused when the incident is On Hold, and business time is not calculated.</span></span><span class="EOP SCXW255088981 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></p>								</div>
				<div class="elementor-element elementor-element-9dd00f0 elementor-widget elementor-widget-image" data-id="9dd00f0" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="525" height="171" src="https://logiupskills.com/wp-content/uploads/2026/02/7-1.png" class="attachment-large size-large wp-image-14830" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/7-1.png 525w, https://logiupskills.com/wp-content/uploads/2026/02/7-1-300x98.png 300w" sizes="(max-width: 525px) 100vw, 525px" />															</div>
				<div class="elementor-element elementor-element-c229e78 elementor-widget elementor-widget-text-editor" data-id="c229e78" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW48736195 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="none"><span class="NormalTextRun SCXW48736195 BCX0">8</span><span class="NormalTextRun SCXW48736195 BCX0">.</span><span class="NormalTextRun SCXW48736195 BCX0">The SLA timer stops when the incident is resolved or closed, and the SLA state is marked as completed.</span></span><span class="EOP SCXW48736195 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></p>								</div>
				<div class="elementor-element elementor-element-cc30c62 elementor-widget elementor-widget-image" data-id="cc30c62" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="561" height="158" src="https://logiupskills.com/wp-content/uploads/2026/02/8.png" class="attachment-large size-large wp-image-14834" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/8.png 561w, https://logiupskills.com/wp-content/uploads/2026/02/8-300x84.png 300w" sizes="(max-width: 561px) 100vw, 561px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-c8adbf9 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="c8adbf9" 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-ea8fb87 elementor-widget elementor-widget-text-editor" data-id="ea8fb87" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW106753641 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="none"><span class="NormalTextRun SCXW106753641 BCX0">9</span><span class="NormalTextRun SCXW106753641 BCX0">.</span><span class="NormalTextRun SCXW106753641 BCX0">Create an incident record with Priority 1 and assign it to the user as shown below. The Resolution SLA will be attached to the incident.</span></span><span class="EOP SCXW106753641 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></p>								</div>
				<div class="elementor-element elementor-element-0cec3aa elementor-widget elementor-widget-image" data-id="0cec3aa" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="567" height="250" src="https://logiupskills.com/wp-content/uploads/2026/02/9-1.png" class="attachment-large size-large wp-image-14841" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/9-1.png 567w, https://logiupskills.com/wp-content/uploads/2026/02/9-1-300x132.png 300w" sizes="(max-width: 567px) 100vw, 567px" />															</div>
				<div class="elementor-element elementor-element-0474f0e elementor-widget elementor-widget-text-editor" data-id="0474f0e" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW154070918 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="none"><span class="NormalTextRun SCXW154070918 BCX0">10</span><span class="NormalTextRun SCXW154070918 BCX0">.</span><span class="NormalTextRun SCXW154070918 BCX0">After the incident is resolved, the SLA state is marked as completed once the stop condition is met.</span></span><span class="EOP SCXW154070918 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></p>								</div>
				<div class="elementor-element elementor-element-6b12f7a elementor-widget elementor-widget-image" data-id="6b12f7a" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="544" height="294" src="https://logiupskills.com/wp-content/uploads/2026/02/10-1.png" class="attachment-large size-large wp-image-14842" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/10-1.png 544w, https://logiupskills.com/wp-content/uploads/2026/02/10-1-300x162.png 300w" sizes="(max-width: 544px) 100vw, 544px" />															</div>
					</div>
				</div>
				</div>
		<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/service-level-agreements-sla/">Service level Agreements (SLA)  </a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/service-level-agreements-sla/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Access control List </title>
		<link>https://logiupskills.com/access-control-list/</link>
					<comments>https://logiupskills.com/access-control-list/#respond</comments>
		
		<dc:creator><![CDATA[Vivek Chavan]]></dc:creator>
		<pubDate>Tue, 03 Feb 2026 12:39:31 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://logiupskills.com/?p=14720</guid>

					<description><![CDATA[<p>Access control List Access Control List   Access control list or ACL is a part of Security in ServiceNow.   ACL can be applied on Tables, UI Pages, Script Include also.   It is Nothing But to give permission to Tables &#38; Fields.  Where we can restrict user’s access for below:i. Createii. Readiii. Writeiv. Delete To access ACL admin needs to elevate the role to “security admin”.  Admin override allows admin users to bypass ACLs. Even if an ACL would normally deny access, an admin can still perform the action.   Evolution order of ACL-   Role &#8211; ServiceNow checks whether the user has at least one role listed in the ACL. if condition is false then access denied  Condition &#8211; ServiceNow evaluates the Condition field on the ACL, if condition is false then access denied  Script &#8211; Script must return true to allow access, returning false (or nothing) denies access.  ServiceNow checks ACLs in this order:  table. Field    table.  *   table. None  *          *   *   .   field  *   .   none  The first matching ACL found is enforced.  Use case-  Configure the ACL so that the Payroll Manager group has full access to payroll data with create, read, update, and delete permissions, while the Payroll User group has read-only access and is restricted from creating, updating, or deleting payroll records.  Solution-  Create two roles ‘payroll_manager’ and ‘payroll_user’ and two groups Payroll Manager, payroll User.  Assign payroll_user role to Payroll User group and assign payroll_manager role to payroll manager group and assign some users to both groups.  Click on profile and Elevate role to “Security admin” to access the ACL.  Create ACL with read access to payroll user table. None and give roles “payroll_user” and “payroll_manager”.  Or Navigate to Payroll table and scroll down to access control related list.  Impersonate to user with “payroll_user” role.  Open payroll record can read record but cannot update create and delete record.  Because we have given only read access for user group so user can only see records.   Create the ACL record with create, write, delete access with payroll manager role.  Manager can access record create, read and write on record.   Now Create * access to payroll table for read access.  Impersonate with user having payroll_user role Payroll.   open payroll record and you will see payroll table fields but not data.  Summary &#8211;  Implemented role-based access control for the payroll system. The Payroll Manager role was granted full CRUD (create, read, update, delete) access to payroll records, while the Payroll User role was restricted to read-only access. This configuration secures the access for valid user. </p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/access-control-list/">Access control List </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="14720" class="elementor elementor-14720" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-8847ed7 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="8847ed7" 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-8cb77fd elementor-widget elementor-widget-heading" data-id="8cb77fd" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Access control List </h2>				</div>
				<div class="elementor-element elementor-element-20fa790 elementor-widget elementor-widget-text-editor" data-id="20fa790" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h5 aria-level="2"><span data-contrast="none">Access Control List </span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h5><ol><li><span data-contrast="none">Access control list or ACL is a part of Security in ServiceNow. </span><span data-ccp-props="{&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></li><li><span data-contrast="none">ACL can be applied on Tables, UI Pages, Script Include also. </span><span data-ccp-props="{&quot;335559738&quot;:260,&quot;335559739&quot;:260}"> </span></li><li><span data-contrast="none">It is Nothing But to give permission to Tables &amp; Fields.</span></li><li> Where we can restrict user’s access for below:<br /><span data-ccp-props="{&quot;335559738&quot;:280,&quot;335559739&quot;:280}">i. Create<br /></span><span data-ccp-props="{&quot;335559738&quot;:280,&quot;335559739&quot;:280}">ii. Read<br />iii. Write<br /></span><span data-ccp-props="{&quot;335559738&quot;:280,&quot;335559739&quot;:280}">iv. Delete</span></li><li><span data-ccp-props="{&quot;335559738&quot;:280,&quot;335559739&quot;:280}"><span class="TextRun SCXW68958123 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="none"><span class="NormalTextRun SCXW68958123 BCX0">To access ACL admin needs to elevate the role to </span><span class="NormalTextRun SCXW68958123 BCX0">“</span><span class="NormalTextRun SCXW68958123 BCX0">security admin</span><span class="NormalTextRun SCXW68958123 BCX0">”</span><span class="NormalTextRun SCXW68958123 BCX0">.</span></span><span class="EOP SCXW68958123 BCX0" data-ccp-props="{&quot;335559738&quot;:200,&quot;335559739&quot;:200}"> </span></span></li><li><span data-ccp-props="{&quot;335559738&quot;:280,&quot;335559739&quot;:280}"><span class="TextRun SCXW142537114 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="none"><span class="NormalTextRun SCXW142537114 BCX0">Admin override allows admin users to bypass ACLs</span><span class="NormalTextRun SCXW142537114 BCX0">. </span><span class="NormalTextRun SCXW142537114 BCX0">Even if an ACL would </span></span><span class="TextRun SCXW142537114 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="none"><span class="NormalTextRun SCXW142537114 BCX0">normally deny access, an admin can still perform the action.</span></span><span class="EOP SCXW142537114 BCX0" data-ccp-props="{}"> </span> </span></li></ol>								</div>
				<div class="elementor-element elementor-element-115fb39 elementor-widget elementor-widget-text-editor" data-id="115fb39" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h5 aria-level="2"><span data-contrast="none">Evolution order of ACL- </span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h5><ol><li><span data-contrast="none">Role &#8211; ServiceNow checks whether the user has at least one role listed in the ACL. if condition is false then access denied</span><span data-ccp-props="{}"> </span></li><li aria-setsize="-1" data-leveltext="%1." data-font="" data-listid="1" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;multilevel&quot;,&quot;469778510&quot;:&quot;default&quot;}" data-aria-posinset="2" data-aria-level="1"><span data-contrast="none">Condition &#8211; ServiceNow evaluates the Condition field on the ACL, if condition is false then access denied</span><span data-ccp-props="{}"> </span></li><li aria-setsize="-1" data-leveltext="%1." data-font="" data-listid="1" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;multilevel&quot;,&quot;469778510&quot;:&quot;default&quot;}" data-aria-posinset="2" data-aria-level="1"><span data-contrast="none">Script &#8211; Script must return true to allow access, </span><span data-contrast="auto">returning false (or nothing) denies access.</span><span data-ccp-props="{}"> </span></li></ol><h5 aria-level="2"><span data-contrast="none">ServiceNow checks ACLs in this order:</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h5><ol><li aria-setsize="-1" data-leveltext="%1." data-font="" data-listid="2" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="none">table. Field </span> <span data-ccp-props="{}"> </span></li><li><span data-contrast="none">table.  * </span><span data-ccp-props="{}"> </span></li><li aria-setsize="-1" data-leveltext="%1." data-font="" data-listid="2" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="3" data-aria-level="1"><span data-contrast="none">table. None</span><span data-ccp-props="{}"> </span></li><li><span data-contrast="none">*          * </span><span data-ccp-props="{}"> </span></li><li aria-setsize="-1" data-leveltext="%1." data-font="" data-listid="2" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="5" data-aria-level="1"><span data-contrast="none">*   .   field</span><span data-ccp-props="{}"> </span></li><li><span data-contrast="none">*   .   none</span><span data-ccp-props="{}"> </span></li></ol><p><span data-contrast="none">The first matching ACL found is enforced.</span><span data-ccp-props="{}"> </span></p>								</div>
				<div class="elementor-element elementor-element-879bc92 elementor-widget elementor-widget-text-editor" data-id="879bc92" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h5 aria-level="2"><span data-contrast="none">Use case-</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:0,&quot;335559739&quot;:160}"> </span></h5><p><span data-contrast="auto">Configure the ACL so that the </span><b><span data-contrast="auto">Payroll Manager</span></b><span data-contrast="auto"> group has full access to payroll data with create, read, update, and delete permissions, while the </span><b><span data-contrast="auto">Payroll User</span></b><span data-contrast="auto"> group has read-only access and is restricted from creating, updating, or deleting payroll records.</span><span data-ccp-props="{}"> </span></p><h5 aria-level="2"><span data-contrast="none">Solution-</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h5><p><span data-contrast="auto">Create two roles ‘payroll_manager’ and ‘payroll_user’ and two groups Payroll Manager, payroll User.</span><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">Assign payroll_user role to Payroll User group and assign payroll_manager role to payroll manager group and assign some users to both groups.</span><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">Click on profile and Elevate role to “Security admin” to access the ACL.</span><span data-ccp-props="{}"> </span></p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-5b5d600 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="5b5d600" 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-c197124 elementor-widget elementor-widget-image" data-id="c197124" 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/2026/02/Picture10.png" class="attachment-large size-large wp-image-14732" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture10.png 709w, https://logiupskills.com/wp-content/uploads/2026/02/Picture10-300x142.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-d765d3c elementor-widget elementor-widget-text-editor" data-id="d765d3c" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW144730780 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW144730780 BCX0">Create </span><span class="NormalTextRun SCXW144730780 BCX0">ACL</span><span class="NormalTextRun SCXW144730780 BCX0"> </span><span class="NormalTextRun SCXW144730780 BCX0">with read access to payroll user </span><span class="NormalTextRun SCXW144730780 BCX0">table. None</span><span class="NormalTextRun SCXW144730780 BCX0"> </span><span class="NormalTextRun SCXW144730780 BCX0">and give roles “</span><span class="NormalTextRun SpellingErrorV2Themed SCXW144730780 BCX0">payroll_user</span><span class="NormalTextRun SCXW144730780 BCX0">” and “</span><span class="NormalTextRun SpellingErrorV2Themed SCXW144730780 BCX0">payroll_manager</span><span class="NormalTextRun SCXW144730780 BCX0">”.</span></span><span class="EOP SCXW144730780 BCX0" data-ccp-props="{}"> </span></p>								</div>
				<div class="elementor-element elementor-element-2ab79b4 elementor-widget elementor-widget-image" data-id="2ab79b4" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="306" src="https://logiupskills.com/wp-content/uploads/2026/02/2-2.png" class="attachment-large size-large wp-image-14739" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/2-2.png 751w, https://logiupskills.com/wp-content/uploads/2026/02/2-2-300x143.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-8a737df elementor-widget elementor-widget-text-editor" data-id="8a737df" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW130267256 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW130267256 BCX0">Or Navigate to Payroll table and scroll down to access control related list</span><span class="NormalTextRun SCXW130267256 BCX0">.</span></span><span class="EOP SCXW130267256 BCX0" data-ccp-props="{}"> </span></p>								</div>
				<div class="elementor-element elementor-element-44dc67c elementor-widget elementor-widget-image" data-id="44dc67c" 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/2026/02/3-2.png" class="attachment-large size-large wp-image-14746" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/3-2.png 751w, https://logiupskills.com/wp-content/uploads/2026/02/3-2-300x139.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-525f9b2 elementor-widget elementor-widget-text-editor" data-id="525f9b2" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-contrast="auto">Impersonate to user with “payroll_user” role.</span><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">Open payroll record can read record but cannot update create and delete record.</span><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">Because we have given only read access for user group so user can only see records. </span><span data-ccp-props="{}"> </span></p>								</div>
				<div class="elementor-element elementor-element-ef3536c elementor-widget elementor-widget-image" data-id="ef3536c" 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/2026/02/4-2.png" class="attachment-large size-large wp-image-14753" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/4-2.png 751w, https://logiupskills.com/wp-content/uploads/2026/02/4-2-300x141.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-b84b851 elementor-widget elementor-widget-text-editor" data-id="b84b851" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW84090530 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW84090530 BCX0">Create the ACL record with create, write, </span><span class="NormalTextRun SCXW84090530 BCX0">delete</span><span class="NormalTextRun SCXW84090530 BCX0"> access </span><span class="NormalTextRun SCXW84090530 BCX0">with </span><span class="NormalTextRun SCXW84090530 BCX0">payroll manager role</span><span class="NormalTextRun SCXW84090530 BCX0">.</span></span><span class="EOP SCXW84090530 BCX0" data-ccp-props="{}"> </span></p>								</div>
				<div class="elementor-element elementor-element-f35a9f8 elementor-widget elementor-widget-image" data-id="f35a9f8" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="308" src="https://logiupskills.com/wp-content/uploads/2026/02/5-1.png" class="attachment-large size-large wp-image-14761" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/5-1.png 751w, https://logiupskills.com/wp-content/uploads/2026/02/5-1-300x145.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-2f92109 elementor-widget elementor-widget-text-editor" data-id="2f92109" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW49126150 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW49126150 BCX0">Manager can access record create, </span><span class="NormalTextRun SCXW49126150 BCX0">read</span><span class="NormalTextRun SCXW49126150 BCX0"> and write on record.</span></span><span class="EOP SCXW49126150 BCX0" data-ccp-props="{}"> </span></p>								</div>
				<div class="elementor-element elementor-element-704e484 elementor-widget elementor-widget-image" data-id="704e484" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="308" src="https://logiupskills.com/wp-content/uploads/2026/02/6.png" class="attachment-large size-large wp-image-14768" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/6.png 751w, https://logiupskills.com/wp-content/uploads/2026/02/6-300x145.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-4854acd elementor-widget elementor-widget-text-editor" data-id="4854acd" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-ccp-props="{}"> </span><span data-contrast="auto">Now Create * access to payroll table for read access.</span><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">Impersonate with user having payroll_user role Payroll.   open payroll record and you will see payroll table fields but not data.</span><span data-ccp-props="{}"> </span></p>								</div>
				<div class="elementor-element elementor-element-c6b722d elementor-widget elementor-widget-image" data-id="c6b722d" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="316" src="https://logiupskills.com/wp-content/uploads/2026/02/7.png" class="attachment-large size-large wp-image-14775" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/7.png 751w, https://logiupskills.com/wp-content/uploads/2026/02/7-300x148.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-370b477 elementor-widget elementor-widget-text-editor" data-id="370b477" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h5><span data-contrast="none">Summary &#8211;</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h5><p><span data-contrast="auto">Implemented role-based access control for the payroll system. The Payroll Manager role was granted full CRUD (create, read, update, delete) access to payroll records, while the Payroll User role was restricted to read-only access. This configuration secures the access for valid user.</span><span data-ccp-props="{}"> </span></p>								</div>
					</div>
				</div>
				</div>
		<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/access-control-list/">Access control List </a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/access-control-list/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Flow Designer Properties  </title>
		<link>https://logiupskills.com/flow-designer-properties/</link>
					<comments>https://logiupskills.com/flow-designer-properties/#respond</comments>
		
		<dc:creator><![CDATA[Vivek Chavan]]></dc:creator>
		<pubDate>Tue, 03 Feb 2026 12:07:20 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://logiupskills.com/?p=14683</guid>

					<description><![CDATA[<p>Flow Designer Properties Flow Designer in ServiceNow is a low-code automation tool used to design and automate business processes without heavy scripting. It allows users to create flows by defining triggers, conditions, and actions to automate tasks such as approvals, notifications, record updates, and integrations.   To create new flow, navigate to All – Process engine &#8212; Flow designer &#8212; New  After you click on New button on page, it will open to create new flow.  Flow Name Enter a clear and meaningful name that describes the purpose of the flow. This helps users easily identify the flow later.  Application Select the application scope in which the flow will run. It controls which data and actions the flow can access.  Description Briefly explains what the flow does and when it is triggered. This helps others understand the flow logic quickly.  Now click on Show additional properties   4.Protection It defines whether the flow is editable or read-only after creation. Setting it to read-only helps prevent unauthorized changes to the flow.  5.Run as It specifies the user context under which the flow executes.  User who initiates session The flow runs using the roles and permissions of the user who triggered it. the system limits flow actions by user ACL restrictions. Ensure that security restrictions don&#8217;t prevent users who trigger the flow from performing flow actions.  System user The flow runs with system-level privileges, regardless of who triggered it.   Updates appear as done by System, Does not evaluate Users roles/access when running the Flow.  6.Flow Priority Flow priority determines the execution order when multiple flows are triggered at the same time. By default, flows can be set to Low, Medium, or High, with High priority flows running first. </p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/flow-designer-properties/">Flow Designer Properties  </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="14683" class="elementor elementor-14683" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-8c3fef2 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="8c3fef2" 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-73056da elementor-widget elementor-widget-heading" data-id="73056da" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Flow Designer Properties  </h2>				</div>
				<div class="elementor-element elementor-element-c7aaa55 elementor-widget elementor-widget-text-editor" data-id="c7aaa55" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-contrast="auto">Flow Designer in ServiceNow is a low-code automation tool used to design and automate business processes without heavy scripting. It allows users to create flows by defining triggers, conditions, and actions to automate tasks such as approvals, notifications, record updates, and integrations.</span><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto"> To create new flow, navigate to All – Process engine &#8212; Flow designer &#8212; New</span><span data-ccp-props="{}"> </span></p>								</div>
				<div class="elementor-element elementor-element-3f3c9c7 elementor-widget elementor-widget-image" data-id="3f3c9c7" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="361" src="https://logiupskills.com/wp-content/uploads/2026/02/1.png" class="attachment-large size-large wp-image-14695" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/1.png 809w, https://logiupskills.com/wp-content/uploads/2026/02/1-300x169.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/1-768x433.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-ed94145 elementor-widget elementor-widget-text-editor" data-id="ed94145" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-contrast="auto">After you click on New button on page, it will open to create new flow.</span><span data-ccp-props="{}"> </span></p><ol><li data-leveltext="%1." data-font="" data-listid="1" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><b><span data-contrast="auto">Flow Name</span></b> <br /><span data-contrast="auto">Enter a clear and meaningful name that describes the purpose of the flow.</span> <br /><span data-contrast="auto">This helps users easily identify the flow later.</span><span data-ccp-props="{}"> </span></li></ol><ol><li data-leveltext="%1." data-font="" data-listid="1" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="2" data-aria-level="1"><b><span data-contrast="auto">Application</span></b> <br /><span data-contrast="auto">Select the application scope in which the flow will run.</span> <br /><span data-contrast="auto">It controls which data and actions the flow can access.</span><span data-ccp-props="{}"> </span></li></ol><ol><li data-leveltext="%1." data-font="" data-listid="1" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="3" data-aria-level="1"><b><span data-contrast="auto">Description</span></b> <br /><span data-contrast="auto">Briefly explains what the flow does and when it is triggered.</span> <br /><span data-contrast="auto">This helps others understand the flow logic quickly.</span><span data-ccp-props="{}"> </span></li></ol>								</div>
				<div class="elementor-element elementor-element-afbb55f elementor-widget elementor-widget-image" data-id="afbb55f" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="308" src="https://logiupskills.com/wp-content/uploads/2026/02/2-1.png" class="attachment-large size-large wp-image-14696" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/2-1.png 697w, https://logiupskills.com/wp-content/uploads/2026/02/2-1-300x144.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-90967de elementor-widget elementor-widget-text-editor" data-id="90967de" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-contrast="auto">Now click on Show additional properties </span><span data-ccp-props="{}"> </span></p><p><b><span data-contrast="auto">4.Protection</span></b> <br /><span data-contrast="auto">It defines whether the flow is editable or read-only after creation.</span> <br /><span data-contrast="auto">Setting it to read-only helps prevent unauthorized changes to the flow.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p><p><b><span data-contrast="auto">5.Run as</span></b> <br /><span data-contrast="auto">It specifies the user context under which the flow executes.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p><ol><li data-leveltext="%1." data-font="Aptos" data-listid="2" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><b><span data-contrast="auto">User who initiates session</span></b> <br /><span data-contrast="auto">The flow runs using the roles and permissions of the user who triggered it.</span> <br /><span data-contrast="auto">the system limits flow actions by user ACL restrictions. Ensure that security restrictions don&#8217;t prevent users who trigger the flow from performing flow actions.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></li></ol><ol><li data-leveltext="%1." data-font="Aptos" data-listid="2" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="2" data-aria-level="1"><b><span data-contrast="auto">System user</span></b> <br /><span data-contrast="auto">The flow runs with system-level privileges, regardless of who triggered it. </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></li></ol><p><span data-contrast="auto">Updates appear as done by System, Does not evaluate Users roles/access when running the Flow.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559685&quot;:720,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p>								</div>
				<div class="elementor-element elementor-element-86591b6 elementor-widget elementor-widget-image" data-id="86591b6" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="307" src="https://logiupskills.com/wp-content/uploads/2026/02/3-1.png" class="attachment-large size-large wp-image-14697" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/3-1.png 780w, https://logiupskills.com/wp-content/uploads/2026/02/3-1-300x144.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/3-1-768x368.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-be62f69 elementor-widget elementor-widget-text-editor" data-id="be62f69" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW99757216 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW99757216 BCX0">6.</span></span><span class="TextRun SCXW99757216 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW99757216 BCX0">Flow Priority</span></span><span class="LineBreakBlob BlobObject DragDrop SCXW99757216 BCX0"><span class="SCXW99757216 BCX0"> </span><br class="SCXW99757216 BCX0" /></span><span class="TextRun SCXW99757216 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW99757216 BCX0">Flow priority </span><span class="NormalTextRun SCXW99757216 BCX0">determines</span><span class="NormalTextRun SCXW99757216 BCX0"> the execution order when multiple flows are triggered at the same </span><span class="NormalTextRun SCXW99757216 BCX0">time. By</span><span class="NormalTextRun SCXW99757216 BCX0"> default, flows can be set to Low, Medium, or High, with High priority flows running first.</span></span><span class="EOP SCXW99757216 BCX0" data-ccp-props="{}"> </span></p>								</div>
				<div class="elementor-element elementor-element-990353e elementor-widget elementor-widget-image" data-id="990353e" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="305" src="https://logiupskills.com/wp-content/uploads/2026/02/4-1.png" class="attachment-large size-large wp-image-14698" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/4-1.png 744w, https://logiupskills.com/wp-content/uploads/2026/02/4-1-300x143.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
				</div>
		<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/flow-designer-properties/">Flow Designer Properties  </a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/flow-designer-properties/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Decision table  </title>
		<link>https://logiupskills.com/decision-table/</link>
					<comments>https://logiupskills.com/decision-table/#respond</comments>
		
		<dc:creator><![CDATA[Vivek Chavan]]></dc:creator>
		<pubDate>Tue, 03 Feb 2026 11:31:25 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://logiupskills.com/?p=14639</guid>

					<description><![CDATA[<p>Decision table A Decision table in ServiceNow is a configuration option that can be used to evaluate multiple conditions and return a result based on predefined logic. It simplifies complex decision-making by organizing rules in a tabular format, where each row represents a unique set of conditions and their corresponding output. Decision Tables are used when: Business logic depends on multiple conditions Rules change frequently Non-developers (admins / process owners) should manage logic You want consistency, reusability, and auditability Inputs (Conditions)  Fields used for evaluation  Example: Category  Rules (Rows)  Each row represents one decision rule  Use case: If Category = hardware then assignment group is Hardware, Category =Software then assignment group = Software, Category = Network then assignment group = Network and Select assignment group based on category.  Navigate to Decision TablesAll → Decision Builder → Decision Tables Create new decision table like below Now create a flow in flow designer and attach this decision table to flow like below  Now use update record action to update the assignment group based on category using data pill of corresponding decision table.  Output &#8211; Open incident form and update the category to &#8220;Hardware&#8221; on incident and check assignment group in incident will be updated to Hardware. </p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/decision-table/">Decision table  </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="14639" class="elementor elementor-14639" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-cac0f68 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="cac0f68" 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-3830f09 elementor-widget elementor-widget-heading" data-id="3830f09" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Decision table  </h2>				</div>
				<div class="elementor-element elementor-element-69ed13c elementor-widget elementor-widget-text-editor" data-id="69ed13c" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-teams="true">A <strong>Decision table</strong> in ServiceNow is a configuration option that can be used to evaluate multiple conditions and return a result based on predefined logic. It simplifies complex decision-making by organizing rules in a tabular format, where each row represents a unique set of conditions and their corresponding output.</span></p><p><strong>Decision Tables are used when:</strong></p><ul><li>Business logic depends on multiple conditions</li><li>Rules change frequently</li><li>Non-developers (admins / process owners) should manage logic</li><li>You want consistency, reusability, and auditability</li></ul><p><b><span data-contrast="auto">Inputs (Conditions)</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559685&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="1" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">Fields used for evaluation</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="1" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="2" data-aria-level="1"><span data-contrast="auto">Example: Category</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></li></ul><p><b><span data-contrast="auto">Rules (Rows)</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559685&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="1" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="3" data-aria-level="1"><span data-contrast="auto">Each row represents one decision rule</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></li><li data-leveltext="" data-font="Symbol" data-listid="1" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="3" data-aria-level="1"><strong>Use case: </strong><br /><span data-contrast="auto">If </span><i><span data-contrast="auto">Category = hardware then assignment group is Hardware, Category =Software then assignment group = Software, Category = Network then assignment group = Network and </span></i><i><span data-contrast="auto">Select assignment group based on category.</span></i><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="1" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="5" data-aria-level="1">Navigate to Decision Tables<br />All → Decision Builder → Decision Tables</li><li data-leveltext="" data-font="Symbol" data-listid="1" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="5" data-aria-level="1">Create new decision table like below</li></ul>								</div>
				<div class="elementor-element elementor-element-615e15f elementor-widget elementor-widget-image" data-id="615e15f" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="579" height="296" src="https://logiupskills.com/wp-content/uploads/2026/02/Decision-table.png" class="attachment-large size-large wp-image-14654" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Decision-table.png 579w, https://logiupskills.com/wp-content/uploads/2026/02/Decision-table-300x153.png 300w" sizes="(max-width: 579px) 100vw, 579px" />															</div>
				<div class="elementor-element elementor-element-07ebd87 elementor-widget elementor-widget-text-editor" data-id="07ebd87" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW41899184 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW41899184 BCX0">Now create a flow in flow designer and attach this decision table to flow like below</span></span><span class="EOP SCXW41899184 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p>								</div>
				<div class="elementor-element elementor-element-24367cf elementor-widget elementor-widget-image" data-id="24367cf" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="311" src="https://logiupskills.com/wp-content/uploads/2026/02/2.png" class="attachment-large size-large wp-image-14661" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/2.png 731w, https://logiupskills.com/wp-content/uploads/2026/02/2-300x146.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-4d7443d elementor-widget elementor-widget-image" data-id="4d7443d" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="366" src="https://logiupskills.com/wp-content/uploads/2026/02/3.png" class="attachment-large size-large wp-image-14662" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/3.png 734w, https://logiupskills.com/wp-content/uploads/2026/02/3-300x172.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-ae515d3 elementor-widget elementor-widget-text-editor" data-id="ae515d3" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW37160955 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW37160955 BCX0">Now use update record action to update the assignment group based on category using data pill of corresponding decision table.</span></span><span class="EOP SCXW37160955 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p>								</div>
				<div class="elementor-element elementor-element-f02cf07 elementor-widget elementor-widget-image" data-id="f02cf07" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="311" src="https://logiupskills.com/wp-content/uploads/2026/02/4.png" class="attachment-large size-large wp-image-14663" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/4.png 780w, https://logiupskills.com/wp-content/uploads/2026/02/4-300x146.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/4-768x373.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-824239d elementor-widget elementor-widget-text-editor" data-id="824239d" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW69599559 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW69599559 BCX0">Output &#8211; Open incident form and update </span><span class="NormalTextRun SCXW69599559 BCX0">the category to &#8220;Hardware&#8221;</span><span class="NormalTextRun SCXW69599559 BCX0"> on incident and check assignment group in </span><span class="NormalTextRun SCXW69599559 BCX0">incident</span><span class="NormalTextRun SCXW69599559 BCX0"> will be updated to Hardware.</span></span><span class="EOP SCXW69599559 BCX0" data-ccp-props="{}"> </span></p>								</div>
				<div class="elementor-element elementor-element-cdb26d3 elementor-widget elementor-widget-image" data-id="cdb26d3" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="267" src="https://logiupskills.com/wp-content/uploads/2026/02/5.png" class="attachment-large size-large wp-image-14664" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/5.png 780w, https://logiupskills.com/wp-content/uploads/2026/02/5-300x125.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/5-768x320.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
				</div>
		<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/decision-table/">Decision table  </a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/decision-table/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SLA</title>
		<link>https://logiupskills.com/sla/</link>
					<comments>https://logiupskills.com/sla/#respond</comments>
		
		<dc:creator><![CDATA[Vivek Chavan]]></dc:creator>
		<pubDate>Fri, 09 Jan 2026 06:20:57 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://logiupskills.com/?p=11827</guid>

					<description><![CDATA[<p>Service Level Aggrement (SLA) SLA Priority Increase and Decrease Service Level Agreement (SLA): Service Level Management (SLM) enables you to monitor and manage the services offered by your organization. It is a contract between the service provider and the customer that ensures response and resolution of tasks within a specified timeframe.  It will include details about resolution time, breach levels and their corresponding penalties. If the organization not able to fulfil the goal of the services in the time specified in the agreement. Then, it is considered as a breach of the Agreement. The breach can cost the penalty or impact the image of the organization. Thus, SLA helps organization to measure the quality and efficiency of the task assigned to the employees by determining the progress of the task. Response &#8211;  It is the time taken to acknowledge the ticket.  Eg &#8211; Time required to give response for an incident such as assignment of incident to the user.   Resolution &#8211;  Actual time taken to resolve a ticket.  Eg- Time required for resolve the incident.               1.Retroactive start: It starts the SLA from the time start time of the previous SLA.              2.Retroactive pause: This would consider the pause time of previous SLA. Requirement: Create an SLA’s for priorities P1, P2, P3, P4 such that when you increase the priority the retroactive start should be on updated field and when you decrease the priority the retroactive start should be created field.  Solution: Let’s create a temp field of type date/time for incident form layout. This temp field will store the created or updated date/time based on the requirement of increase and decrease of priority. Let’s create SLA definition for the priorities 1-4 of the incident table i.e. P1, P2, P3, P4 of duration 3 min, Keep Schedule as No schedule for all SLA’s for now. And other fields as default. Here start condition should be based on priority. And cancel condition should be when start condition not met. Retroactive start and Retroactive pause should be true for all. And select your ‘temp’ field for ‘set start to’ field. Pause condition should be when state is put on hold. At the end, stop condition should be when State is resolved. Similarly create other SLA’s for other priorities P2,P3,P4. Now it’s time to write the Business rule which would set the temp field according to the priority change.</p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/sla/">SLA</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="11827" class="elementor elementor-11827" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-2778c17 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="2778c17" 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-41ab74a elementor-widget elementor-widget-heading" data-id="41ab74a" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Service Level Aggrement (SLA)</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-5a195da e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="5a195da" 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-894ab5e elementor-widget elementor-widget-text-editor" data-id="894ab5e" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<div class="container text-dark"><div class="row"><div class="col"><p>SLA Priority Increase and Decrease</p><div class="col-md-offset-1"><p><strong><u>Service Level Agreement (SLA):</u></strong></p><p>Service Level Management (SLM) enables you to monitor and manage the services offered by your organization.</p><p><span class="TextRun SCXW173417537 BCX8" lang="EN-GB" xml:lang="EN-GB" data-contrast="none"><span class="NormalTextRun SCXW173417537 BCX8">It</span><span class="NormalTextRun SCXW173417537 BCX8"> is a contract between the service provider and the customer that ensures response and resolution of tasks within a specified </span><span class="NormalTextRun SCXW173417537 BCX8">timeframe</span><span class="NormalTextRun SCXW173417537 BCX8">.</span></span><span class="EOP SCXW173417537 BCX8" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span> It will include details about resolution time, breach levels and their corresponding penalties.</p><p>If the organization not able to fulfil the goal of the services in the time specified in the agreement. Then, it is considered as a breach of the Agreement.</p><p>The breach can cost the penalty or impact the image of the organization. Thus, SLA helps organization to measure the quality and efficiency of the task assigned to the employees by determining the progress of the task.</p><ul><li><span data-contrast="none">Response</span><b><span data-contrast="none"> &#8211;</span></b><span data-contrast="none"> </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span><span data-contrast="none">It is the time taken to acknowledge the ticket.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></li><li><span data-contrast="none">Eg &#8211; Time required to give response for an incident such as assignment of incident to the user. </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></li><li><span data-contrast="none">Resolution </span><span data-contrast="none">&#8211;</span><span data-contrast="none"> </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span><span data-contrast="none">Actual time taken to resolve a ticket.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></li><li><span data-contrast="none">Eg- Time required for resolve the incident.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></li></ul><p>             <b>1.</b>Retroactive start: It starts the SLA from the time start time of the previous SLA.</p><p>             <b>2.</b>Retroactive pause: This would consider the pause time of previous SLA.</p><p><strong><u>Requirement:</u></strong> Create an SLA’s for priorities P1, P2, P3, P4 such that when you increase the priority the retroactive start should be on updated field and when you decrease the priority the retroactive start should be created field.</p><p><strong> <u>Solution:</u></strong></p><p>Let’s create a temp field of type date/time for incident form layout.</p><p>This temp field will store the created or updated date/time based on the requirement of increase and decrease of priority.</p></div><p><img loading="lazy" decoding="async" class="responsive alignnone" src="https://shalamaster.com/SLA/IMG1.PNG" alt="servicenow sla" width="909" height="513" /></p><div class="col-md-offset-1"><p>Let’s create SLA definition for the priorities 1-4 of the incident table i.e. P1, P2, P3, P4 of duration 3 min,</p><p>Keep Schedule as No schedule for all SLA’s for now. And other fields as default.</p></div><p><img decoding="async" class="responsive" src="https://shalamaster.com/SLA/IMG2.PNG" /></p><div class="col-md-offset-1"><p>Here start condition should be based on priority.</p><p>And cancel condition should be when start condition not met.</p><p>Retroactive start and Retroactive pause should be true for all. And select your ‘temp’ field for ‘set start to’ field.</p></div><p><img decoding="async" class="responsive" src="https://shalamaster.com/SLA/IMG3.PNG" /></p><div class="col-md-offset-1"><p>Pause condition should be when state is put on hold.</p></div><p><img decoding="async" class="responsive" src="https://shalamaster.com/SLA/IMG4.PNG" /></p><div class="col-md-offset-1"><p>At the end, stop condition should be when State is resolved.</p></div><p><img decoding="async" class="responsive" src="https://shalamaster.com/SLA/IMG5.PNG" /></p><div class="col-md-offset-1"><p>Similarly create other SLA’s for other priorities P2,P3,P4.</p><p>Now it’s time to write the Business rule which would set the temp field according to the priority change.</p></div><p><img decoding="async" class="responsive" src="https://shalamaster.com/SLA/IMG6.PNG" /></p></div></div></div>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-12642fd e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="12642fd" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
					</div>
				</div>
				</div>
		<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/sla/">SLA</a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/sla/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Email Notification in Service-now</title>
		<link>https://logiupskills.com/email-notification-in-service-now/</link>
					<comments>https://logiupskills.com/email-notification-in-service-now/#respond</comments>
		
		<dc:creator><![CDATA[Vivek Chavan]]></dc:creator>
		<pubDate>Fri, 09 Jan 2026 05:50:20 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://logiupskills.com/?p=11680</guid>

					<description><![CDATA[<p>Email Notification in Service-now Email Notification : Email notifications are a type of triggered email—email that’s sent in response to specific user action or an event. Creating an email notification involves specifying when to send it, who receives it, whatit contains, and if it can be delivered in an email digest. Types of Email Notifications: Outbound Email Notifications: Sending mail to users from ServiceNow instance. ServiceNow used SMTP to send the mail from the server. Inbound Email Notifications: Receiving mails from user in ServiceNow instance POP is used. For email notifications, we have to set some settings. Navigate to System Properties =&#62; Email Properties, the following list of properties will be displayed, In Outbound Email Configuration, Select Email sending enabled and enter any random email address as shown in above snapshot. In Inbound Email Configuration, Select Email receiving enabled and at the bottom write the trusted domain from which ServiceNow should receive mails. If we enter star (*) then from all domains the email will be received. Check “Automatically create users……..”  to create users automatically when any email is received from the user. See below snapshot. Outbound Notifications : Create Outbound notifications for the incident table when the record is inserted.. Navigate to Configure =&#62; All =&#62; Notifications and click on New button as below, The following form will be displayed. Enter condition in “When to send” section, 1.Send when : Record inserted or updated Now select the user or group to whom the email to be sent as follows, User/Groups in field is form selected table.  Configure the email as follows,  Save the above form. Now, Create a new record in incident table Save the above record. Since, short description contains “ashwini”, so as per the outbound notification we set, the email will be automatically sent to the mentioned user. The email engine process this mail. First, this email will go in “Outbox” under System Mailboxes. In Outbox the mail is in Ready state. Email will be sent to the user, and it will be saved in Sent under System mailbox as follows Since this email details are in Sent mailbox and its state is “Processed” that means the mail has been sent to the user which is mentioned as a recipient while creating Notification. For recipient check notification as follows, The mail will be like below, To check the sender navigate to  Email Properties =&#62;Email Accounts as follows, If the user reply to this mail, it will be displayed in All=&#62;Inbound =&#62;Received To check the received mails, navigate to System Mailboxes =&#62;Inbound =&#62;Received as below,   The email engine of ServiceNow will identify the “Reply” by the Ref no of the email which is send by the ServiceNow to the user as below, 2.Send when: user defined event is fired: For that there should be a user defined event. To create Event, navigate to Event Registry as follows, (Fired by :to trigger this event we should write some code ,we can write it in business rule.write here the name of the business rule Queue : whenever u r triggering any event it shd be the part of the system queue) Click on Submit. To trigger this event we need to write a script.(business rule or script include) So create business rule to run after updating the incident record if short description contains “ashwini” To trigger the event we have eventQueue(). Use the function eventQueue(“Your event name”,”the current object”, “parameter1”, “parameter2”) Refer follow screenshots for business rule , Now change “Send when” option to “Event is fired” and keep all as it is in outbound notification as below, Now update any incident and check the mail ,  Now the mail should be sent to user as below, To send the notification containing param values(passed in business rule while triggering the event) ,access param values in outbound notification as below, Now again update any incident record and check the mail. Mail Script : Email scripts allow for business rule-like scripting within an outbound email message. With mail scripts, you can dynamically change the email output of your system based ondifferent criteria. Mail scripts allow you to perform simple tasks, such as displaying incidentdata, and complex ones, such as making advanced database queries. You can add a ${mail_script:script_name}embedded script tag to the body of the email notificationor template, replacing script name with the name of the script you created. This makes it easyto use the same scripts in multiple email notifications or templates. Now to add email scripts in the body of our mail, first we will have to createmail scripts. To create a mail script open the Notification Email Script module and click on new. We can write our code using template.print(); (Check below code in “message HTML” of Notification ) To see the code for mail script, navigate to System Notification =&#62; Notification Email Scripts You will get the list of all mail scripts, search for the required one as below, Now update incident record and check the mail, Inbound Actions: When the system receives the mail, it can be seen in inbox / received mail. Inbound actions in ServiceNow are used to process incoming emails by creating or updating records within the platform. These actions are similar to business rules and use conditions and scripts to take action on a target table. When an email is received, the system checks for a watermark that associates it with a task and other conditions. If the conditions are met, the system takes the inbound email action configured. The system can take two types of actions: Record action, which sets a value for a field in the target table, and Email reply, which sends an email back to the source that triggered the action. Navigate to System Policy =&#62; Inbound Actions and click on New button The following form will be displayed. Set the type as “New” and Action type is &#8220;Record Action&#8221;. Available Types are: New: An email that is not recognized as a reply or forward. Reply: An email with a watermark, with an In-Reply-To email header, or whose</p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/email-notification-in-service-now/">Email Notification in Service-now</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="11680" class="elementor elementor-11680" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-4986292 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="4986292" 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-004fd83 elementor-widget elementor-widget-heading" data-id="004fd83" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Email Notification in Service-now</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-966ca68 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="966ca68" 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-bd5d34c elementor-widget elementor-widget-text-editor" data-id="bd5d34c" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h1 id="h.t9hb7fruswf6" class="c23"><span class="c25">Email Notification :</span></h1><p class="c2"><span class="c4">Email notifications are a type of triggered email—email that’s sent in response to specific user action or an event.</span></p><p>Creating an email notification involves specifying when to send it, who receives it, what<br />it contains, and if it can be delivered in an email digest.</p><h2 id="h.use8sws4ucsa" class="c5"><span class="c6">Types of Email Notifications:</span></h2><ol class="c7 lst-kix_yrsq5m2if4fj-0 start" start="1"><li class="c2 c13 li-bullet-0"><span class="c11">Outbound Email Notifications:</span></li></ol><ul class="c7 lst-kix_pewzjaf6qf9o-0 start"><li class="c2 c14 li-bullet-0"><span class="c4">Sending mail to users from ServiceNow instance.</span></li><li class="c2 c14 li-bullet-0"><span class="c4">ServiceNow used SMTP to send the mail from the server.</span></li></ul><ol class="c7 lst-kix_yrsq5m2if4fj-0" start="2"><li class="c2 c13 li-bullet-0"><span class="c11">Inbound Email Notifications:</span></li></ol><ul class="c7 lst-kix_s5q8vsz90c07-0 start"><li class="c2 c14 li-bullet-0"><span class="c4">Receiving mails from user in ServiceNow instance</span></li><li class="c2 c14 li-bullet-0"><span class="c4">POP is used.</span></li></ul><p class="c2"><span class="c4">For email notifications, we have to set some settings.</span></p><p class="c2"><span class="c17">Navigate to </span><span class="c17 c15">System Properties =&gt; Email Properties, the</span><span class="c4"> following list of properties will be displayed,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img loading="lazy" decoding="async" class="alignnone" src="https://shalamaster.com/email/images/image15.png" alt="email notification in servicenow" width="1335" height="620" /></span></p><p class="c2"><span class="c11">In Outbound Email Configuration,</span></p><p class="c2"><span class="c4">Select Email sending enabled and enter any random email address as shown in above snapshot.</span></p><p class="c2"><span class="c11">In Inbound Email Configuration,</span></p><p class="c2"><span class="c17">Select Email receiving enabled and at the bottom write the trusted domain from which ServiceNow should receive mails. If we enter star (</span><span class="c17 c22">*) </span><span class="c4">then from all domains the email will be received.</span></p><p class="c2"><span class="c4">Check “Automatically create users……..”  to create users automatically when any email is received from the user.</span></p><p class="c2"><span class="c4">See below snapshot.</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image20.png" alt="" /></span></p><h2 id="h.yr8mpv3wdidk" class="c5">Outbound <span class="c6">Notifications :</span></h2><p class="c2"><span class="c1">Create Outbound notifications for the incident table when the record is inserted..</span></p><p class="c2"><span class="c1">Navigate to Configure =&gt; All =&gt; Notifications and click on New button as below,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image23.png" alt="" /></span></p><p class="c2"><span class="c1">The following form will be displayed. Enter condition in “When to send” section,</span></p><h3 id="h.krgvb9yksrzh" class="c21 c24"><span class="c19">1.Send when : Record inserted or updated</span></h3><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image5.png" alt="" /></span></p><p class="c2"><span class="c1">Now select the user or group to whom the email to be sent as follows, User/Groups in field is form selected table. </span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image44.png" alt="" /></span></p><p class="c2"><span class="c1">Configure the email as follows, </span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image26.png" alt="" /></span></p><p class="c2"><span class="c1">Save the above form.</span></p><p class="c2"><span class="c1">Now, </span><span class="c1">Create a new record in incident table</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image22.png" alt="" /></span></p><p class="c2"><span class="c1">Save the above record.</span></p><p class="c2"><span class="c1">Since, short description contains “ashwini”, so as per the outbound notification we set, the email will be automatically sent to the mentioned user. The email engine process this mail.</span></p><ul class="c7 lst-kix_4379y851zn0v-0 start"><li class="c2 c13 li-bullet-0">First, this email will go in “<span class="c15">Outbox</span>” under System Mailboxes. In Outbox the mail is in Ready state. Email will be sent to the user, and it will be saved in <span class="c15">Sent </span><span class="c1">under System mailbox as follows</span></li></ul><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image1.png" alt="" /></span></p><ul class="c7 lst-kix_mfrhd3n8xizu-0 start"><li class="c2 c13 li-bullet-0"><span class="c1">Since this email details are in Sent mailbox and its state is “Processed” that means the mail has been sent to the user which is mentioned as a recipient while creating Notification.</span></li><li class="c2 c13 li-bullet-0"><span class="c1">For recipient check notification as follows,</span></li></ul><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image44.png" alt="" /></span></p><p class="c2"><span class="c1">The mail will be like below,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image45.png" alt="" /></span></p><p class="c2"><span class="c1">To check the sender navigate to  Email Properties =&gt;Email Accounts as follows,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image12.png" alt="" /></span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image16.png" alt="" /></span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image19.png" alt="" /></span></p><p class="c2"><span class="c1">If the user reply to this mail, it will be displayed in All=&gt;Inbound =&gt;Received</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image11.png" alt="" /></span></p><p class="c2"><span class="c1">To check the received mails, navigate to System Mailboxes =&gt;Inbound =&gt;Received as below,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image33.png" alt="" /></span><span class="c1"> </span></p><p class="c2">The email engine of ServiceNow will identify the “<span class="c15">Reply</span>” by the <span class="c15">Ref </span><span class="c1">no of the email which is send by the ServiceNow to the user as below,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image4.png" alt="" /></span></p><h3 id="h.8zmxfxqepc68" class="c21"><span class="c19">2.Send when: user defined event is fired:</span></h3><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image39.png" alt="" /></span></p><p class="c2"><span class="c1">For that there should be a user defined event.</span></p><p class="c2"><span class="c1">To create Event, navigate to Event Registry as follows,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image35.png" alt="" /></span></p><p class="c2"><span class="c9">(Fired by :to trigger this event we should write some code ,we can write it in business rule.write here the name of the business rule</span></p><p class="c2"><span class="c9">Queue : whenever u r triggering any event it shd be the part of the system queue)</span></p><p class="c2"><span class="c1">Click on Submit.</span></p><p class="c2"><span class="c1">To trigger this event we need to write a script.(business rule or script include)</span></p><p class="c2"><span class="c1">So create business rule to run after updating the incident record if short description contains “ashwini”</span></p><p class="c2"><span class="c1">To trigger the event we have eventQueue().</span></p><ul><li>Use the function eventQueue(“Your event name”,”the current object”, “parameter1”, “parameter2”)</li></ul><p class="c2"><span class="c1">Refer follow screenshots for business rule ,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image32.png" alt="" /></span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image29.png" alt="" /></span></p><p class="c2"><span class="c1">Now change “Send when” option to “Event is fired” and keep all as it is in outbound notification as below,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image27.png" alt="" /></span></p><p class="c2"><span class="c1">Now update any incident and check the mail ,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image37.png" alt="" /></span></p><p class="c2"><span class="c1"> Now the mail should be sent to user as below,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image18.png" alt="" /></span></p><p class="c2"><span class="c1">To send the notification containing param values(passed in business rule while triggering the event) ,access param values in outbound notification as below,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image13.png" alt="" /></span></p><p class="c2"><span class="c1">Now again update any incident record and check the mail.</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image28.png" alt="" /></span></p><h2 id="h.v7rk25oewz" class="c5"><span class="c6">Mail Script :</span></h2><ul><li>Email scripts allow for business rule-like scripting within an outbound email message.</li><li>With mail scripts, you can dynamically change the email output of your system based on<br />different criteria. Mail scripts allow you to perform simple tasks, such as displaying incident<br />data, and complex ones, such as making advanced database queries.</li><li>You can add a ${mail_script:script_name}embedded script tag to the body of the email notification<br />or template, replacing script name with the name of the script you created. This makes it easy<br />to use the same scripts in multiple email notifications or templates.</li><li>Now to add email scripts in the body of our mail, first we will have to create<br />mail scripts. To create a mail script open the Notification Email Script module and click on new.</li><li>We can write our code using template.print();</li></ul><p class="c2"><span class="c1">(Check below code in “message HTML” of Notification )</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img loading="lazy" decoding="async" class="" title="" src="https://shalamaster.com/email/images/image6.png" alt="" width="614" height="344" /></span></p><p class="c2"><span class="c1">To see the code for mail script, navigate to System Notification =&gt; Notification Email Scripts</span></p><p class="c2"><span class="c1">You will get the list of all mail scripts, search for the required one as below,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image9.png" alt="" /></span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image34.png" alt="" /></span></p><p class="c2"><span class="c1">Now update incident record and check the mail,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image10.png" alt="" /></span></p><h2 id="h.joktrbc4y9jw" class="c5"><span class="c6">Inbound Actions:</span></h2><p class="c2"><span class="c1">When the system receives the mail, it can be seen in inbox / received mail.</span></p><p>Inbound actions in ServiceNow are used to process incoming emails by creating or updating records within the platform. These actions are similar to business rules and use conditions and scripts to take action on a target table.</p><p>When an email is received, the system checks for a watermark that associates it with a task and other conditions. If the conditions are met, the system takes the inbound email action configured.</p><p>The system can take two types of actions: Record action, which sets a value for a field in the target table, and Email reply, which sends an email back to the source that triggered the action.</p><p class="c2"><span class="c1">Navigate to System Policy =&gt; Inbound Actions and click on New button</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image36.png" alt="" /></span></p><p class="c2"><span class="c1">The following form will be displayed.</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image17.png" alt="" /></span></p><p class="c2"><span class="c1">Set the type as “New” and Action type is &#8220;Record Action&#8221;.</span></p><p class="c20"><span class="c8">Available </span><span class="c8 c15">Types </span><span class="c3">are:</span></p><ul class="c7 lst-kix_f6tg8dk1ti69-0 start"><li class="c20 c13 li-bullet-0"><span class="c10 c8">New</span><span class="c3">: An email that is not recognized as a reply or forward.</span></li><li class="c20 c13 li-bullet-0"><span class="c10 c8">Reply</span><span class="c3">: An email with a watermark, with an In-Reply-To email header, or whose subject line begins with a recognized reply prefix.</span></li><li class="c13 c20 li-bullet-0"><span class="c8 c10">Forward</span><span class="c3">: An email whose subject line begins with a recognized forward prefix, even if the email also contains a watermark or In-Reply-To header.</span></li></ul><p class="c2"><span class="c1">Set the condition as if Subject contains “ashwini” (if this condition met, inbound action will trigger)</span></p><p class="c2"><span class="c1">Now set the Actions as below,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image3.png" alt="" /></span></p><p class="c2"><span class="c1">Now if any user sends an email whose subject contains “ashwini”, then as per the Inbound action condition, inbound action will trigger,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image31.png" alt="" /></span></p><p class="c2"><span class="c1">Check in Inbox,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image43.png" alt="" /></span></p><p class="c2"><span class="c1">After some time, it will go in Received mails,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image40.png" alt="" /></span></p><p class="c2"><span class="c1">Click on that record, Email details will be displayed as below,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image42.png" alt="" /></span></p><p class="c2">You can see the value of Target, in the above screenshot <span class="c15">Incident </span>having <span class="c15">Number INC0010227</span><span class="c1"> is created,</span></p><p class="c2"><span class="c1">Open that record.</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image25.png" alt="" /></span></p><p class="c2"><span class="c1">As per the condition in Inbound Action, Sender of Email becomes Caller and Subject of email becomes short description.</span></p><p class="c2"><span class="c1">You can preview this email by clicking on link under Related links at the bottom,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image38.png" alt="" /></span></p><p class="c2">In Email log, you can see 2 incidents are created having number <span class="c12">INC0010226 and INC0010227</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image30.png" alt="" /></span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image41.png" alt="" /></span></p><p class="c2"><span class="c1">To stop this, just check “Stop Processing” checkbox.</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image21.png" alt="" /></span></p><p class="c2"><span class="c1">Now check the inbox/received mails again and check how many incidents are created for one mail.</span></p><p class="c2"><span class="c1">Gmail:</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image2.png" alt="" /></span></p><p class="c2"><span class="c1">Inbound: Inbox / Received</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image8.png" alt="" /></span></p><p class="c2"><span class="c1">Click on this mail and check the Email Log, you will see only one incident has been created,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image24.png" alt="" /></span></p><p class="c2"><span class="c1">Scroll down, at the bottom check Email Log,</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image14.png" alt="" /></span></p><p class="c2"><span class="c1">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Overview &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</span></p><p class="c2"><span data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left=""><img decoding="async" title="" src="https://shalamaster.com/email/images/image7.png" alt="" /></span></p>								</div>
					</div>
				</div>
				</div>
		<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/email-notification-in-service-now/">Email Notification in Service-now</a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/email-notification-in-service-now/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Service-now Inegration GuideLines</title>
		<link>https://logiupskills.com/service-now-inegration-guidelines/</link>
					<comments>https://logiupskills.com/service-now-inegration-guidelines/#respond</comments>
		
		<dc:creator><![CDATA[Vivek Chavan]]></dc:creator>
		<pubDate>Thu, 08 Jan 2026 05:51:00 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://logiupskills.com/?p=11573</guid>

					<description><![CDATA[<p>Service-now Integration Guidelines Service-now Webservice By default, in Service-now for every table there will be SOPA WSDL and Rest endpoints for following operations For Soap if your table name is “u_customer_table”, the WSDL will be https://instancename.service-now.com/u_customer_table.do?wsdl For Rest if your table name is “u_customer_table”, the WSDL will be https://instancename.service-now.com/api/now/table/u_customer_table Soap WSDL functions Insert update deleteMultuple getKeys deleteRecords get getRecords Rest Endpoints Methods Post Get Put Delete Soap Web Service Integration with Third Party Tool (Here we are considering as another service instance is a third party tool) Whenever we need to integrate with third party tool, we need to request the SOAP WSDL from them. Once we will get the WSDL from third party tool, we will create SOAP Message in ServiceNow. How to Create Soap Message System Navigator&#8211;&#62;Search Soap Message as below Click on “SOAP Message” Module, you will get all the list of Soap Messages. Click on “New” UI Action. Here I am using WSDL of incident table as fallows And Save it. After Save you will get the related link at bottom of the form Click on that After Clicking on the UI Action : Generate Sample SOAP messages, it will create a WSDL xml and functions and will get one add info message at top as fallows. Click on the “insert” function in another tab. Select Authentication type as Basic one and select the same profile from reference field in Basic auth Profile and save the record. Click on the Auto Generated Variables After clicking on that, you will get all the variable in “Variable Substitution” related list Select insert.shortdescription variable and put some test value as fallows After that click on Test from related link After clicking on Test, you will get the request and response xml on the screen. If you get 200, it means, you have created an incident and in response you will get incident number as well as sys_id. Now go back to your insert function again. Click on Preview Script Usages as fallows You will get a code, which you can use in your server-side scripting.   Rest Web Service Integration with Third Party Tool (Here we are considering as another service instance is a third-party tool) Go through Navigation Search and search Rest Click on New Add the authentication type as a Basic And put values for HTPP Request And save it. Now create HTTP Method for this Message as below – to create it click on New which is on “HTTP Method” related list You will get new form, then please fill the values like below Fill the HTTP Request tab Then create HTTP query parameter and content with variable for description ${des} And save it. Then click on “Auto generate Variables” Then it will create a entry in related list of variable substitution. Put some test value for des variable and then click on TEST After clicking on Test, you will get request and response details.   Http Status Codes 2xx – Success: IT represents Request was accept successfully. 200 – Success 201- Success and record created 202 – Accepted 4xx – Error -IT represents the Request was incorrect at client only means requester. 400 – Bad Request 401– Authentication Failed 403 – Forbidden 404 -Not Found 405 -Method not Allowed 5xx -Error -It represents the request was correct but error at Server side. 500 – Internal Server Error 502 – Not Implemented 502 – Bad Gateway 503 – Service Unavailable 504- Gateway timeout</p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/service-now-inegration-guidelines/">Service-now Inegration GuideLines</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="11573" class="elementor elementor-11573" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-396cf54 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="396cf54" 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-b3d9bd6 elementor-widget elementor-widget-heading" data-id="b3d9bd6" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Service-now Integration Guidelines</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-000504c e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="000504c" 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-72bf808 elementor-widget elementor-widget-text-editor" data-id="72bf808" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ol start="1"><li>Service-now Webservice<ol><li>By default, in Service-now for every table there will be SOPA WSDL and Rest endpoints for following operations</li><li>For Soap if your table name is “u_customer_table”, the WSDL will be<ol><li><a href="https://instancename.service-now.com/u_customer_table.do?wsdl" target="_blank" rel="noopener">https://instancename.service-now.com/u_customer_table.do?wsdl</a></li></ol></li><li>For Rest if your table name is “u_customer_table”, the WSDL will be<ol><li>https://instancename.service-now.com/api/now/table/u_customer_table</li></ol></li><li>Soap WSDL functions<ol><li>Insert</li><li>update</li><li>deleteMultuple</li><li>getKeys</li><li>deleteRecords</li><li>get</li><li>getRecords</li></ol></li><li>Rest Endpoints Methods<ol><li>Post</li><li>Get</li><li>Put</li><li>Delete</li></ol></li></ol></li><li>Soap Web Service Integration with Third Party Tool (Here we are considering as another service instance is a third party tool)<ol><li>Whenever we need to integrate with third party tool, we need to request the SOAP WSDL from them.</li><li>Once we will get the WSDL from third party tool, we will create SOAP Message in ServiceNow.</li><li>How to Create Soap Message<ol><li>System Navigator&#8211;&gt;Search Soap Message as below</li><li><img loading="lazy" decoding="async" class="alignnone" src="http://shalamaster.com/img/webservice/s_1.png" alt="servicenow integration guidelines" width="554" height="286" /></li><li>Click on “SOAP Message” Module, you will get all the list of Soap Messages.</li><li>Click on “New” UI Action.</li><li><img loading="lazy" decoding="async" class="alignnone" src="http://shalamaster.com/img/webservice/s_2.png" alt="servicenow integration guidelines" width="554" height="286" /></li><li>Here I am using WSDL of incident table as fallows</li><li><img loading="lazy" decoding="async" class="alignnone" src="http://shalamaster.com/img/webservice/s_3.png" alt="servicenow integration guidelines" width="554" height="286" /></li><li>And Save it.</li><li>After Save you will get the related link at bottom of the form</li><li>Click on that</li><li><img loading="lazy" decoding="async" class="alignnone" src="http://shalamaster.com/img/webservice/s_4.png" alt="servicenow integration guidelines" width="554" height="286" /></li><li>After Clicking on the UI Action : Generate Sample SOAP messages, it will create a WSDL xml and functions and will get one add info message at top as fallows.</li><li><img loading="lazy" decoding="async" class="alignnone" src="http://shalamaster.com/img/webservice/s_5.png" alt="servicenow integration guidelines" width="554" height="286" /></li><li><img loading="lazy" decoding="async" class="alignnone" src="http://shalamaster.com/img/webservice/s_6.png" alt="servicenow integration guidelines" width="554" height="286" /></li><li>Click on the “insert” function in another tab.</li><li><img loading="lazy" decoding="async" class="alignnone" src="http://shalamaster.com/img/webservice/s_7.png" alt="servicenow integration guidelines" width="554" height="286" /></li><li>Select Authentication type as Basic one and select the same profile from reference field in Basic auth Profile and save the record.</li><li>Click on the Auto Generated Variables</li><li><img loading="lazy" decoding="async" class="alignnone" src="http://shalamaster.com/img/webservice/s_11.png" alt="servicenow integration guidelines" width="554" height="286" /></li><li>After clicking on that, you will get all the variable in “Variable Substitution” related list</li><li><img loading="lazy" decoding="async" class="alignnone" src="http://shalamaster.com/img/webservice/s_12.png" alt="servicenow integration guidelines" width="554" height="286" /></li><li>Select insert.shortdescription variable and put some test value as fallows</li><li><img loading="lazy" decoding="async" class="alignleft wp-image-11659" src="https://logiupskills.com/wp-content/uploads/2026/01/13-variable-sd-1024x507.png" alt="" width="550" height="293" /><p> </p></li><li>After that click on Test from related link</li><li><img loading="lazy" decoding="async" class="alignnone" src="http://shalamaster.com/img/webservice/s_14.png" alt="servicenow integration guidelines" width="554" height="286" /></li><li>After clicking on Test, you will get the request and response xml on the screen.</li><li><img loading="lazy" decoding="async" src="http://shalamaster.com/img/webservice/s_15.png" alt="Image 15" width="554" height="286" /></li><li>If you get 200, it means, you have created an incident and in response you will get incident number as well as sys_id.</li><li>Now go back to your insert function again.</li><li>Click on Preview Script Usages as fallows</li><li><img loading="lazy" decoding="async" src="http://shalamaster.com/img/webservice/s_16.png" alt="Image 16" width="554" height="286" /></li><li>You will get a code, which you can use in your server-side scripting.</li><li><img loading="lazy" decoding="async" src="http://shalamaster.com/img/webservice/s_17.png" alt="Image 17" width="554" height="286" /></li><li> </li></ol></li></ol></li><li>Rest Web Service Integration with Third Party Tool (Here we are considering as another service instance is a third-party tool)<ol><li>Go through Navigation Search and search Rest</li><li><img loading="lazy" decoding="async" src="http://shalamaster.com/img/webservice/s_18.png" alt="Image 18" width="554" height="286" /></li><li>Click on New</li><li><img loading="lazy" decoding="async" src="http://shalamaster.com/img/webservice/s_19.png" alt="Image 19" width="554" height="286" /></li><li>Add the authentication type as a Basic</li><li><img loading="lazy" decoding="async" src="http://shalamaster.com/img/webservice/s_20.png" alt="Image 20" width="554" height="286" /></li><li>And put values for HTPP Request</li><li><img loading="lazy" decoding="async" src="http://shalamaster.com/img/webservice/s_21.png" alt="Image 21" width="554" height="286" /></li><li>And save it.</li><li>Now create HTTP Method for this Message as below – to create it click on New which is on “HTTP Method” related list</li><li><img loading="lazy" decoding="async" src="http://shalamaster.com/img/webservice/s_22.png" alt="Image 22" width="554" height="286" /></li><li>You will get new form, then please fill the values like below</li><li><img loading="lazy" decoding="async" src="http://shalamaster.com/img/webservice/s_23.png" alt="Image 23" width="554" height="286" /></li><li>Fill the HTTP Request tab</li><li><img loading="lazy" decoding="async" src="http://shalamaster.com/img/webservice/s_24.png" alt="Image 24" width="554" height="286" /></li><li>Then create HTTP query parameter and content with variable for description ${des}</li><li><img loading="lazy" decoding="async" src="http://shalamaster.com/img/webservice/s_25.png" alt="Image 25" width="554" height="286" /></li><li>And save it.</li><li>Then click on “Auto generate Variables”</li><li><img loading="lazy" decoding="async" src="http://shalamaster.com/img/webservice/s_26.png" alt="Image 26" width="554" height="286" /></li><li>Then it will create a entry in related list of variable substitution.</li><li><img loading="lazy" decoding="async" src="http://shalamaster.com/img/webservice/s_27.png" alt="Image 27" width="554" height="286" /></li><li>Put some test value for des variable and then click on TEST</li><li><img loading="lazy" decoding="async" src="http://shalamaster.com/img/webservice/s_28.png" alt="Image 28" width="554" height="286" /></li><li>After clicking on Test, you will get request and response details.</li><li> </li></ol></li><li>Http Status Codes<ol><li>2xx – Success: IT represents Request was accept successfully.<ol><li>200 – Success</li><li>201- Success and record created</li><li>202 – Accepted</li></ol></li><li>4xx – Error -IT represents the Request was incorrect at client only means requester.<ol><li>400 – Bad Request</li><li>401– Authentication Failed</li><li>403 – Forbidden</li><li>404 -Not Found</li><li>405 -Method not Allowed</li></ol></li><li>5xx -Error -It represents the request was correct but error at Server side.<ol><li>500 – Internal Server Error</li><li>502 – Not Implemented</li><li>502 – Bad Gateway</li><li>503 – Service Unavailable</li><li>504- Gateway timeout</li></ol></li></ol></li></ol>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-ec46ec7 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="ec46ec7" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
					</div>
				</div>
		<div class="elementor-element elementor-element-ef5cdbf e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="ef5cdbf" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
					</div>
				</div>
				</div>
		<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/service-now-inegration-guidelines/">Service-now Inegration GuideLines</a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/service-now-inegration-guidelines/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Incident Management</title>
		<link>https://logiupskills.com/incident-management-2/</link>
					<comments>https://logiupskills.com/incident-management-2/#respond</comments>
		
		<dc:creator><![CDATA[Vivek Chavan]]></dc:creator>
		<pubDate>Wed, 07 Jan 2026 13:17:07 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://logiupskills.com/?p=11462</guid>

					<description><![CDATA[<p>Incident Process in Service-now What is Incident? Incident is an event of interruption or disruption or degradation in service operation. An open incident implies that the customer is impacted. Goal of incident management The first goal of the incident management process is to restore a normal service operation as quickly as possible and to minimize the impact onbusiness operations, thus ensuring that the best possible levels of service quality and availability are maintained. &#8216;Normal service operation&#8217;is defined here as service peration within Service Level Agreement (SLA). Different ways to raise Incident: User can open Incident Ticket via User Interface (Self Service) or Email. IT ServiceDesk will open an Incident for all incidents reported via phone, walk-in or Email. Incident Tickets can be opened automatically by monitoring tool. The monitoring team will also create incident for qualified alert. 1.Creating Incident via User Interface (Self Service): In Service Now personal development instance in left navigator search for Incident. Go to Self Service&#62; Incident&#62; New Click New it will open Incident Form here in short description end user should write issue faced and define Urgency and Submit form. 2.Creating Incident via Email: If user don’t have access to the service now or user unable to login to the system in that case incident can be raised by sending mail to ServiceNow,only if the user is specific or having specific mail id. As per the mail, record get inserted in incident table, for this customization is needed that willbe done in Service Now, System Policy&#62; Email&#62; Inbound Actions. 3.Creating Incident using Service Catalog: In ServiceNow personal development instance in left navigation search for catalog Self Service&#62; Service Catalog&#62; Can We Help You?&#62; Create Incident Enter the issue in Please describe your issue and define Urgency. Click on submit and see incident created as below 4.Creating Incident using Service Portal: In Service Portal Home click on Get Help&#62; Create Incident&#62; Submit Fill urgency and issue click Submit Incident created as below All incidents are shown in service portals homepage in My Open Incidents 5.User can create incident by contacting to IT Service Desk via Phone or walk-in and as per information given by user/customer/caller/requesterIT Service Desk will create incident in ServiceNow, Incident&#62; Create New. Once the incident is logged in into the system now IT service desk agent will work on it. For that in left navigation search for incidents go to Incidents&#62;open-unassigned It will check the incidents are not assigned, now open the incident from list as per the short description categorization of incident is takes place thenas per urgency defined by caller incidents priority is set. Then as per the category and priority of incident, incidents are assigned to Assignment groupor to a particular member in that group I.e. Assigned to Now the assignee will work on that incident to fix the issue/interruption. Example: Incident is raised by end user via self- service contact type now see incident life cycle to fix issue as follows Saanvi is end user she faced an issue that she unable to open email so she has created incident via self-service as follows (for this I impersonateuser as Saanvi ) What is impersonation? Administrators can impersonate other authenticated users for testing purposes and view impersonation logs. The impersonation option is not visiblein the mobile view of the platform. When impersonating another user, the administrator has access to exactly what that user can access in the system, including the same menusand modules. The instance records anything the administrator does while impersonating another user as having been done by that user. Procedure to Impersonate user: In the banner frame, click your user name to open the user menu. Select Impersonate User. The Impersonate User dialog box appears. Select a user from the Recent Impersonationslist or enter a different user&#8217;s name in the user selection field. To return to your original login, follow these same steps then select End Impersonation. Here I impersonate user as Saanvi Saanvi has created incident via self-service as follows Now I Priyanka system administrator checked un assigned incidents for that go to Incidents&#62; open-unassigned To check the incident raised by Saanvi, I will add filter condition in list view as follows Click on filter icon add condition caller is Saanvi then click Run Or in search field find caller Saanvi Then press Enter it will shows incidents where caller is Saanvi/ incidents raised by Saanvi Open the incident now I will work on that incident to resolve it. As per short description I set category and subcategory of incident. According to urgency and impact incidents Priority is set. In contact type I entered self servicecause incident is raised via Self service. I entered Assignment group and Assigned to values as below. Once incident is assigned State of incident changes to In Progress. Now assignee will work on that incident and if needs more information from caller or any other reason he can keep this On Hold. For this click On Hold now on hold reason is mandatory save the form it shows Resume UI Action, once information is taken from caller assigneewill resume work by clicking on Resume. Click on Resume state of incident changes from On Hold to In Progress Now after solving issue assignee will click on Resolve and state changes to resolved. After this assignee click on Close Incident to close the incident and state changes to closed In this way incident get resolved and then closed. The process flow will be like In this example On Hold, Resume, Resolve and Close Incident UI Actions/buttons are custom UI Actions. UI Actions: Here following are the custom UI Actions that I have created and as per UI Action incident state changes as follows Incident Process in Service-Now We have incident where we have following process. We have following state for incident.1.New2.In Progress3.Pending Customer4.Pending Information5.Customer Update5.Resolved6.Closed Incident Process till Close1.New created incident in New State2.Fulfiller should ACK the ticket by clicking on ACK ui action and incident should go in &#8220;In Progress&#8221; state.3.Fullfiller can change the state to Pending</p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/incident-management-2/">Incident 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="11462" class="elementor elementor-11462" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-9ba767b e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="9ba767b" 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-9405206 elementor-widget elementor-widget-heading" data-id="9405206" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Incident Process in Service-now</h2>				</div>
				<div class="elementor-element elementor-element-c2496c7 elementor-widget elementor-widget-text-editor" data-id="c2496c7" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<div class="col"><p><strong>What is Incident?</strong></p><p>Incident is an event of interruption or disruption or degradation in service operation. An open incident implies that the customer is impacted.</p><p>Goal of incident management</p><p>The first goal of the incident management process is to restore a normal service operation as quickly as possible and to minimize the impact on<br />business operations, thus ensuring that the best possible levels of service quality and availability are maintained. &#8216;Normal service operation&#8217;<br />is defined here as service peration within Service Level Agreement (SLA).</p><p><strong>Different ways to raise Incident:</strong></p><ul><li>User can open Incident Ticket via User Interface (Self Service) or Email.</li><li>IT ServiceDesk will open an Incident for all incidents reported via phone, walk-in or Email.</li><li>Incident Tickets can be opened automatically by monitoring tool.</li><li>The monitoring team will also create incident for qualified alert.</li></ul><p><strong>1.Creating Incident via User Interface (Self Service):</strong></p><p>In Service Now personal development instance in left navigator search for Incident.</p><p>Go to Self Service&gt; Incident&gt; New</p><p>Click New it will open Incident Form here in short description end user should write issue faced and define Urgency and Submit form.</p></div><p><img loading="lazy" decoding="async" class="responsive alignnone" src="https://shalamaster.com/incident/createIncident1.PNG" alt="incident management in ServiceNow" width="886" height="505" /></p><div class="col-md-offset-1"><p><strong>2.Creating Incident via Email:</strong></p><p>If user don’t have access to the service now or user unable to login to the system in that case incident can be raised by sending mail to ServiceNow,<br />only if the user is specific or having specific mail id. As per the mail, record get inserted in incident table, for this customization is needed that will<br />be done in Service Now, System Policy&gt; Email&gt; Inbound Actions.</p><p><strong>3.Creating Incident using Service Catalog:</strong></p><p>In ServiceNow personal development instance in left navigation search for catalog</p><p>Self Service&gt; Service Catalog&gt; Can We Help You?&gt; Create Incident</p><p>Enter the issue in Please describe your issue and define Urgency.</p></div><p><img loading="lazy" decoding="async" class="responsive alignnone" src="https://shalamaster.com/incident/createIncident2.PNG" alt="incident management in ServiceNow" width="928" height="523" /></p><div class="col-md-offset-1"><p>Click on submit and see incident created as below</p></div><p><img loading="lazy" decoding="async" class="responsive alignnone" src="https://shalamaster.com/incident/createIncident3.PNG" alt="incident management in ServiceNow" width="926" height="520" /></p><div class="col-md-offset-1"><p><strong>4.Creating Incident using Service Portal:</strong></p><p>In Service Portal Home click on Get Help&gt; Create Incident&gt; Submit</p></div><p><img loading="lazy" decoding="async" class="responsive alignnone" src="https://shalamaster.com/incident/createIncident4.PNG" alt="incident management in ServiceNow" width="845" height="474" /></p><div class="col-md-offset-1"><p>Fill urgency and issue click Submit</p></div><p><img loading="lazy" decoding="async" class="responsive alignnone" src="https://shalamaster.com/incident/createIncident5.PNG" alt="incident management in ServiceNow" width="842" height="473" /></p><div class="col-md-offset-1"><p>Incident created as below</p></div><p><img decoding="async" class="responsive" src="https://shalamaster.com/incident/createIncident6.PNG" /></p><div class="col-md-offset-1"><p>All incidents are shown in service portals homepage in My Open Incidents</p></div><p><img loading="lazy" decoding="async" class="responsive alignnone" src="https://shalamaster.com/incident/createIncident7.PNG" alt="incident management in ServiceNow" width="949" height="537" /></p><div class="col-md-offset-1"><p><strong>5.User can create incident by contacting to IT Service Desk</strong> via Phone or walk-in and as per information given by user/customer/caller/requester<br />IT Service Desk will create incident in ServiceNow, Incident&gt; Create New.</p><p>Once the incident is logged in into the system now IT service desk agent will work on it. For that in left navigation search for incidents go to Incidents&gt;<br />open-unassigned</p><p>It will check the incidents are not assigned, now open the incident from list as per the short description categorization of incident is takes place then<br />as per urgency defined by caller incidents priority is set. Then as per the category and priority of incident, incidents are assigned to Assignment group<br />or to a particular member in that group I.e. Assigned to</p><p>Now the assignee will work on that incident to fix the issue/interruption.</p><p><strong>Example:</strong></p><p>Incident is raised by end user via self- service contact type now see incident life cycle to fix issue as follows</p><p>Saanvi is end user she faced an issue that she unable to open email so she has created incident via self-service as follows (for this I impersonate<br />user as Saanvi )</p><p><strong>What is impersonation?</strong></p><p>Administrators can impersonate other authenticated users for testing purposes and view impersonation logs. The impersonation option is not visible<br />in the mobile view of the platform.</p><p>When impersonating another user, the administrator has access to exactly what that user can access in the system, including the same menus<br />and modules. The instance records anything the administrator does while impersonating another user as having been done by that user.</p><p><strong>Procedure to Impersonate user:</strong></p><ol><li>In the banner frame, click your user name to open the user menu.</li><li>Select <strong>Impersonate User</strong>.</li></ol><p>The Impersonate User dialog box appears.</p><ol start="3"><li>Select a user from the <strong>Recent Impersonations</strong>list or enter a different user&#8217;s name in the user selection field.</li><li>To return to your original login, follow these same steps then select End Impersonation.</li></ol><p>Here I impersonate user as Saanvi</p></div><p><img loading="lazy" decoding="async" class="responsive alignnone" src="https://shalamaster.com/incident/createIncident8.PNG" alt="incident management in ServiceNow" width="1056" height="597" /></p><div class="col-md-offset-1"><p>Saanvi has created incident via self-service as follows</p></div><p><img loading="lazy" decoding="async" class="responsive alignnone" src="https://shalamaster.com/incident/createIncident9.PNG" alt="incident management in ServiceNow" width="1057" height="595" /></p><div class="col-md-offset-1"><p>Now I Priyanka system administrator checked un assigned incidents for that go to Incidents&gt; open-unassigned</p><p>To check the incident raised by Saanvi, I will add filter condition in list view as follows</p><p>Click on filter icon add condition caller is Saanvi then click Run</p></div><p><img decoding="async" class="responsive" src="https://shalamaster.com/incident/createIncident10.PNG" /></p><div class="col-md-offset-1"><p>Or in search field find caller Saanvi</p></div><p><img decoding="async" class="responsive" src="https://shalamaster.com/incident/createIncident11.PNG" /></p><div class="col-md-offset-1"><p>Then press Enter it will shows incidents where caller is Saanvi/ incidents raised by Saanvi</p></div><p><img decoding="async" class="responsive" src="https://shalamaster.com/incident/createIncident12.PNG" /></p><div class="col-md-offset-1"><p>Open the incident now I will work on that incident to resolve it.</p><p>As per short description I set category and subcategory of incident.</p><p>According to urgency and impact incidents Priority is set.</p><p>In contact type I entered self servicecause incident is raised via Self service.</p><p>I entered Assignment group and Assigned to values as below.</p><p>Once incident is assigned State of incident changes to In Progress.</p></div><p><img decoding="async" class="responsive" src="https://shalamaster.com/incident/createIncident13.PNG" /></p><div class="col-md-offset-1"><p>Now assignee will work on that incident and if needs more information from caller or any other reason he can keep this On Hold.</p><p>For this click On Hold now on hold reason is mandatory save the form it shows Resume UI Action, once information is taken from caller assignee<br />will resume work by clicking on Resume.</p></div><p><img decoding="async" class="responsive" src="https://shalamaster.com/incident/createIncident14.PNG" /></p><div class="col-md-offset-1"><p>Click on Resume state of incident changes from On Hold to In Progress</p></div><p><img decoding="async" class="responsive" src="https://shalamaster.com/incident/createIncident15.PNG" /></p><div class="col-md-offset-1"><p>Now after solving issue assignee will click on Resolve and state changes to resolved.</p></div><p><img decoding="async" class="responsive" src="https://shalamaster.com/incident/createIncident16.PNG" /></p><div class="col-md-offset-1"><p>After this assignee click on Close Incident to close the incident and state changes to closed</p></div><p><img decoding="async" class="responsive" src="https://shalamaster.com/incident/createIncident17.PNG" /></p><div class="col-md-offset-1"><p>In this way incident get resolved and then closed. The process flow will be like</p></div><p><img decoding="async" class="responsive" src="https://shalamaster.com/incident/createIncident18.PNG" /></p><div class="col-md-offset-1"><p>In this example On Hold, Resume, Resolve and Close Incident UI Actions/buttons are custom UI Actions.</p><p><strong>UI Actions:</strong></p><p>Here following are the custom UI Actions that I have created and as per UI Action incident state changes as follows</p><p><img decoding="async" class="responsive1" src="https://shalamaster.com/incident/createIncident19.PNG" /></p></div>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-404a57f e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="404a57f" 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-0f0a7d6 elementor-widget elementor-widget-heading" data-id="0f0a7d6" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Incident Process in Service-Now</h2>				</div>
				<div class="elementor-element elementor-element-546b2e7 elementor-widget elementor-widget-text-editor" data-id="546b2e7" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><strong>We have incident where we have following process.</strong></p><p><strong>We have following state for incident</strong>.<br />1.New<br />2.In Progress<br />3.Pending Customer<br />4.Pending Information<br />5.Customer Update<br />5.Resolved<br />6.Closed</p><p><strong>Incident Process till Close</strong>1.New created incident in New State<br />2.Fulfiller should ACK the ticket by clicking on ACK ui action and incident should go in &#8220;In Progress&#8221; state.<br />3.Fullfiller can change the state to Pending customer to get information from user i.e. caller.<br />4.When user i.e. caller send the information then incident state should changed to &#8220;Customer update&#8221;<br />5.Fullfiller then change the state to In Progress.<br />6.After resolving ticket fullfiller can change the state to Resolved.<br />7.Fullfiller can cancelled the ticket when it is in In Progess.<br />8.Fullfiller can Reject the incident before Acknowledgment.<br />9.Fullfiller will not close the incident, to close the incident we have schedule job which will run daily.<br />10.Incident Auto Close schedule job will close the incient which are in state=resolved the update date is less than 5 days of current date.</p><p>Note:</p><p>User can Cancelled the ticket by changing the state=Closed and closed code=Cancelled<br />User can Reject the ticket by changing the state=Closed and closed code=Reject</p><p><strong>Close Code and Close Notes:</strong><br />When Incident changed the state to Resolved or Closed , Close Code and Closed Notes are mandatory fields.</p><p>Close Code is choice field<br />Close notes is String field.</p><p>Close Code and Close Notes fields having more specific details about &#8220;Why we are closing the Incident.&#8221;</p><p><strong>SLA:</strong></p><p>Responce SLA start when incident is created and stops when Incident Acknowledged (If ACK_Time and ACK_By field has value then incident is acknowledged)<br />Resolution SLA start when the incident is in &#8220;In Progress&#8221; and stops when incident is Closed and pause when incident is in one of the state i.e.<br />Pending Customer, pending information, customer update and resolved. </p><p><strong>Incident Priority:</strong></p><p>Priority field is always readonly and it is depends on urgency and sevirity fields using datalooup</p><p>We have one client script i.e. if the caller is VIP, then the priority should be P1 using client script.</p><p><strong>Incident Assignment Rules</strong><br />We have assignment rules for setting assignment group as per Incident Category and Incident Subcategory</p>								</div>
					</div>
				</div>
				</div>
		<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/incident-management-2/">Incident 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/incident-management-2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
