<?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>Ashwini More &#8211; LogiUpSkill</title>
	<atom:link href="https://logiupskills.com/author/ashwinimore/feed/" rel="self" type="application/rss+xml" />
	<link>https://logiupskills.com</link>
	<description></description>
	<lastBuildDate>Wed, 18 Feb 2026 12:08:27 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://logiupskills.com/wp-content/uploads/2025/11/cropped-Untitled-design-37-32x32.png</url>
	<title>Ashwini More &#8211; LogiUpSkill</title>
	<link>https://logiupskills.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Logging and Debugging </title>
		<link>https://logiupskills.com/logging-and-debugging/</link>
					<comments>https://logiupskills.com/logging-and-debugging/#respond</comments>
		
		<dc:creator><![CDATA[Ashwini More]]></dc:creator>
		<pubDate>Wed, 18 Feb 2026 11:42:26 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://logiupskills.com/?p=15740</guid>

					<description><![CDATA[<p>Logging and Debugging Server-Side Logging (gs)  These methods belong to the GlideSystem (gs) object and are used in server side scripting such as Business Rules, Script Includes.  1. gs.info(), gs.warn(), gs.error()  These are the modern standards. They write to the System Log [sys_log] table. They are &#8220;level-aware,&#8221; meaning you can filter your logs by severity.  Example: gs.info(&#8220;User {0} has logged in.&#8221;, gs.getUserName());  Best for: Production-ready code and general auditing.  Use gs.info() if you are building a Scoped Application or want to follow the latest ServiceNow best practices.  2. gs.log()  The &#8220;old reliable.&#8221; It also writes to the System Log but allows you to specify a Source column, which makes filtering much easier in the list view.  Example: gs.log(&#8220;Processing record&#8221;, &#8220;MyCustomApp&#8221;);  Use gs.log() only if you are working in the Global Scope and specifically want to use a custom string in the Source column for easy filtering.  Note: This is not available in Scoped Applications (you must use gs.info there).  3. gs.print()  It writes to the localhost log file on the server but does not always appear in the sys_log table UI.  Example: gs.print(&#8220;Hello from the background script&#8221;);  Best for: Running scripts in the &#8220;Background Scripts&#8221; module where you want an immediate output on the screen.  4. gs.debug()  This only logs if the system property glide.debug.log (or a specific session debug) is enabled.  Example: gs.debug(&#8220;Variable X is: &#8221; + x);  Best for: Troubleshooting complex logic without cluttering the logs for every user.  Client-Side Logging (console)  These run in the user&#8217;s browser (Chrome, Firefox, etc.) and are used in Client Scripts and UI Scripts.  console.log() / console.debug()  These don&#8217;t write to the ServiceNow database at all. They write to the Browser Console .  console.log()   This is the standard way to output general information to the browser console. It is the most commonly used tool for &#8220;sanity checking&#8221; values while building a UI feature.  For example, print the new value while running OnChange Client script,  console.log(&#8220;The new value of the field is: &#8221; + newValue);   console.debug()   Functionally, this is almost identical to console.log(). However, it is intended for &#8220;verbose&#8221; or &#8220;debug&#8221; level messages that you might not want to see all the time.  Example: console.debug(&#8220;Current Field Value: &#8221; + g_form.getValue(&#8216;short_description&#8217;));  Best for: Real-time debugging of UI behavior.  Note: Always remove these before moving code to Production, as they are visible to any tech-savvy user.  log.print()  In standard ServiceNow JavaScript, log.print is not a native global function. You might see this in specific integrations (like IntegrationHub ETL) or if a developer has created a custom log object. Usually, if you try to run this in a standard Business Rule, it will throw an error.      Method  Environment  Log Destination  Scoped App Compatible?  gs.info()  Server  System Log (sys_log)  Yes  gs.log()  Server  System Log (sys_log)  No (Global only)  gs.print()  Server  Localhost File / Script Output  Yes  gs.debug()  Server  System Log (if debug enabled)  Yes  console.debug()  Client  Browser Console  Yes    Server-Side Debugging&#160; This applies to Business Rules, Script Includes, Scheduled Jobs, and UI Actions (server-side).&#160; The Script Debugger&#160;&#160; The&#160;Script Debugger&#160;is a built-in interface that allows you to set&#160;breakpoints. When the code hits that line, the system pauses execution, allowing you to inspect variable values in real-time.&#160; How to use:&#160;Open &#8220;Script Debugger&#8221; in the Filter Navigator, set a breakpoint (click the line number in your script), and trigger the action.&#160; Best for:&#160;Complex logic where you need to see how variables change step-by-step.&#160; Script Tracer&#160;&#160; The Script Tracer records every server-side script that executes during a transaction. It captures:&#160; Business Rules&#160; Script Includes&#160; Script Actions&#160; UI Actions&#160;(Server-side) It shows you the order of execution and the state of the record before and after each script ran.  Open the Tracer: Navigate to System Diagnostics &#62; Script Tracer.  Start Tracing: Click the Start Tracer button in the top right.  Perform the Action: Go to your form (e.g., an Incident) and perform the action you want to debug (e.g., click &#8220;Update&#8221; or change the &#8220;State&#8221;).  Stop and Analyze: Go back to the Script Tracer tab and click Stop Tracer.  Review the Trace: You will see a list of every script that ran.  Session Debugging   ServiceNow allows you to toggle specific debug logs that appear at the bottom of your UI page.  How to use: Navigate to System Diagnostics &#62; Session Debug. You can choose &#8220;Debug Business Rule,&#8221; &#8220;Debug Security (ACL),&#8221; or &#8220;Debug SQL.&#8221;  Best for: Seeing which Business Rules are firing and in what order.  Background Scripts   The Scripts &#8211; Background module is the &#8220;scratchpad&#8221; of ServiceNow. You can paste a snippet of code and run it immediately to see the output.  Best for: Testing a specific function or a GlideRecord query without having to trigger a record update.  Client-Side Debugging  This applies to Client Scripts, UI Policies, and Catalog Client Scripts.  Since client scripts run in the browser,   Console: Use console.log() to print values or debugger; in your code to force the browser to pause execution.  Sources Tab: You can find your client script in the &#8220;Sources&#8221; tab and add breakpoints directly in the browser.  The JavaScript Log &#38; Field Watcher  ServiceNow provides a built-in &#8220;JavaScript Log&#8221; window that sits inside the platform UI.  Field Watcher: Right-click any field label and select Watch field. A pane opens at the bottom showing every script, policy, or ACL that touches that specific field.  Best for: Figuring out &#8220;What script just hid this field?&#8221; or &#8220;Why did this value change to 10?&#8221;    Tool  Environment  Use Case  Script Debugger  Server  Pausing execution and inspecting variables.  Background Scripts  Server  Testing standalone code snippets quickly.  Session Debug  Server  Watching Business Rules and ACLs in real-time.  Field Watcher  Client  Tracking why a specific field&#8217;s value/visibility changed.  Browser Console  Client  Inspecting UI errors and logging manual triggers.   </p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/logging-and-debugging/">Logging and Debugging </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="15740" class="elementor elementor-15740" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-9fa951f e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="9fa951f" 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-b25c372 elementor-widget elementor-widget-heading" data-id="b25c372" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Logging and Debugging </h2>				</div>
				<div class="elementor-element elementor-element-e71bb3d elementor-widget elementor-widget-text-editor" data-id="e71bb3d" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h3><span data-contrast="none">Server-Side Logging (gs)</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h3><p><span data-contrast="auto">These methods belong to the GlideSystem (gs) object and are used in server side scripting such as Business Rules, Script Includes.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p>								</div>
				<div class="elementor-element elementor-element-489de97 elementor-widget elementor-widget-text-editor" data-id="489de97" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-contrast="auto">1. gs.info(), gs.warn(), gs.error()</span><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">These are the modern standards. They write to the </span><b><span data-contrast="auto">System Log [sys_log]</span></b><span data-contrast="auto"> table. They are &#8220;level-aware,&#8221; meaning you can filter your logs by severity.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559685&quot;:720,&quot;335559738&quot;:0,&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;:1080,&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"><b><span data-contrast="auto">Example:</span></b><span data-contrast="auto"> gs.info(&#8220;User {0} has logged in.&#8221;, gs.getUserName());</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;:1080,&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"><b><span data-contrast="auto">Best for:</span></b><span data-contrast="auto"> Production-ready code and general auditing.</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;:1080,&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">Use</span><b><span data-contrast="auto"> gs.info()</span></b><span data-contrast="auto"> if you are building a Scoped Application or want to follow the latest ServiceNow best practices.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-d7c7223 elementor-widget elementor-widget-text-editor" data-id="d7c7223" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-contrast="auto">2. </span><span data-contrast="auto">gs.log()</span><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">The &#8220;old reliable.&#8221; It also writes to the System Log but allows you to specify a </span><b><span data-contrast="auto">Source</span></b><span data-contrast="auto"> column, which makes filtering much easier in the list view.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559685&quot;:720,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="2" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:1080,&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"><b><span data-contrast="auto">Example:</span></b><span data-contrast="auto"> gs.log(&#8220;Processing record&#8221;, &#8220;MyCustomApp&#8221;);</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="2" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:1080,&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">Use</span><b><span data-contrast="auto"> </span></b><b><span data-contrast="auto">gs.log()</span></b><span data-contrast="auto"> only if you are working in the </span><b><span data-contrast="auto">Global Scope</span></b><span data-contrast="auto"> and specifically want to use a custom string in the </span><b><span data-contrast="auto">Source</span></b><span data-contrast="auto"> column for easy filtering.</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="2" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:1080,&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"><b><span data-contrast="none">Note:</span></b><span data-contrast="none"> </span><span data-contrast="auto">This is </span><b><span data-contrast="auto">not available in Scoped Applications</span></b><span data-contrast="auto"> (you must use gs.info there).</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-ff83e8a elementor-widget elementor-widget-text-editor" data-id="ff83e8a" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-contrast="auto">3. </span><span data-contrast="auto">gs.print()</span><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">It writes to the </span><b><span data-contrast="auto">localhost log file</span></b><span data-contrast="auto"> on the server but does </span><i><span data-contrast="auto">not</span></i><span data-contrast="auto"> always appear in the sys_log table UI.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559685&quot;:720,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="3" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:1080,&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"><b><span data-contrast="auto">Example:</span></b><span data-contrast="auto"> gs.print(&#8220;Hello from the background script&#8221;);</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="3" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:1080,&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"><b><span data-contrast="auto">Best for:</span></b><span data-contrast="auto"> Running scripts in the &#8220;Background Scripts&#8221; module where you want an immediate output on the screen.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-9688b39 elementor-widget elementor-widget-text-editor" data-id="9688b39" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-contrast="auto">4. </span><span data-contrast="auto">gs.debug()</span><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">This only logs if the system property glide.debug.log (or a specific session debug) is enabled.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559685&quot;:720,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="4" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:1080,&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"><b><span data-contrast="auto">Example:</span></b><span data-contrast="auto"> gs.debug(&#8220;Variable X is: &#8221; + x);</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="4" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:1080,&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"><b><span data-contrast="auto">Best for:</span></b><span data-contrast="auto"> Troubleshooting complex logic without cluttering the logs for every user.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-f29a893 elementor-widget elementor-widget-text-editor" data-id="f29a893" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h3><span class="TextRun SCXW45686785 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="none"><span class="NormalTextRun SCXW45686785 BCX0" data-ccp-parastyle="heading 2">Client-Side Logging (console)</span></span><span class="EOP SCXW45686785 BCX0" data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h3><p><span data-contrast="auto">These run in the user&#8217;s browser (Chrome, Firefox, etc.) and are used in Client Scripts and UI Scripts.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="auto">console.log() / console.debug()</span><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">These don&#8217;t write to the ServiceNow database at all. They write to the </span><b><span data-contrast="auto">Browser Console</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;:240}"> </span></p><p><b><span data-contrast="auto">console.log()</span></b><b><span data-contrast="auto"> </span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="auto">This is the standard way to output general information to the browser console. It is the most commonly used tool for &#8220;sanity checking&#8221; values while building a UI feature.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="auto">For example, print the new value while running OnChange Client script,</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="auto">console.log(&#8220;The new value of the field is: &#8221; + newValue); </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><p><b><span data-contrast="auto">console.debug() </span></b><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">Functionally, this is almost identical to </span><span data-contrast="auto">console.log()</span><span data-contrast="auto">. However, it is intended for &#8220;verbose&#8221; or &#8220;debug&#8221; level messages that you might not want to see all the time.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </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"><b><span data-contrast="auto">Example:</span></b><span data-contrast="auto"> console.debug(&#8220;Current Field Value: &#8221; + g_form.getValue(&#8216;short_description&#8217;));</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="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"><b><span data-contrast="auto">Best for:</span></b><span data-contrast="auto"> Real-time debugging of UI behavior.</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="none">Note:</span></b><span data-contrast="auto"> Always remove these before moving code to Production, as they are visible to any tech-savvy user.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="none">log.print()</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="auto">In standard ServiceNow JavaScript, log.print is </span><b><span data-contrast="auto">not a native global function</span></b><span data-contrast="auto">. You might see this in specific integrations (like IntegrationHub ETL) or if a developer has created a custom log object. Usually, if you try to run this in a standard Business Rule, it will throw an error.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p>								</div>
				<div class="elementor-element elementor-element-c7ee1bf elementor-widget elementor-widget-text-editor" data-id="c7ee1bf" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><p><span data-ccp-props="{}"> </span></p><table data-tablestyle="MsoNormalTable" data-tablelook="1696"><tbody><tr><td data-celllook="4369"><p><b><span data-contrast="auto">Method</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><b><span data-contrast="auto">Environment</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><b><span data-contrast="auto">Log Destination</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><b><span data-contrast="auto">Scoped App Compatible?</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td></tr><tr><td data-celllook="4369"><p><b><span data-contrast="auto">gs.info()</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Server</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">System Log (sys_log)</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Yes</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td></tr><tr><td data-celllook="4369"><p><b><span data-contrast="auto">gs.log()</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Server</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">System Log (sys_log)</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><b><span data-contrast="auto">No</span></b><span data-contrast="auto"> (Global only)</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td></tr><tr><td data-celllook="4369"><p><b><span data-contrast="auto">gs.print()</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Server</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Localhost File / Script Output</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Yes</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td></tr><tr><td data-celllook="4369"><p><b><span data-contrast="auto">gs.debug()</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Server</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">System Log (if debug enabled)</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Yes</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td></tr><tr><td data-celllook="4369"><p><b><span data-contrast="auto">console.debug()</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Client</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Browser Console</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Yes</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td></tr></tbody></table><p><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:0,&quot;335559739&quot;:299}"> </span></p>								</div>
				<div class="elementor-element elementor-element-c464e50 elementor-widget elementor-widget-text-editor" data-id="c464e50" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-contrast="none">Server-Side Debugging</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}">&nbsp;</span></p>
<p><span data-contrast="auto">This applies to Business Rules, Script Includes, Scheduled Jobs, and UI Actions (server-side).</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:240}">&nbsp;</span></p>
<p><b><span data-contrast="auto">The Script Debugger&nbsp;</span></b><span data-ccp-props="{}">&nbsp;</span></p>
<p><span data-contrast="auto">The&nbsp;</span><b><span data-contrast="auto">Script Debugger</span></b><span data-contrast="auto">&nbsp;is a built-in interface that allows you to set&nbsp;</span><b><span data-contrast="auto">breakpoints</span></b><span data-contrast="auto">. When the code hits that line, the system pauses execution, allowing you to inspect variable values in real-time.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:240}">&nbsp;</span></p>
<ul>
<li data-leveltext="" data-font="Symbol" data-listid="6" 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"><b><span data-contrast="auto">How to use:</span></b><span data-contrast="auto">&nbsp;Open &#8220;Script Debugger&#8221; in the Filter Navigator, set a breakpoint (click the line number in your script), and trigger the action.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}">&nbsp;</span></li>
</ul>
<ul>
<li data-leveltext="" data-font="Symbol" data-listid="6" 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"><b><span data-contrast="auto">Best for:</span></b><span data-contrast="auto">&nbsp;Complex logic where you need to see how variables change step-by-step.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}">&nbsp;</span></li>
</ul>
<p><b><span data-contrast="auto">Script Tracer&nbsp;</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}">&nbsp;</span></p>
<p><span data-contrast="auto">The Script Tracer records every server-side script that executes during a transaction. It captures:</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}">&nbsp;</span></p>
<ul>
<li data-leveltext="" data-font="Symbol" data-listid="13" 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"><b><span data-contrast="auto">Business Rules</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}">&nbsp;</span></li>
</ul>
<ul>
<li data-leveltext="" data-font="Symbol" data-listid="13" 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"><b><span data-contrast="auto">Script Includes</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}">&nbsp;</span></li>
</ul>
<ul>
<li data-leveltext="" data-font="Symbol" data-listid="13" 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"><b><span data-contrast="auto">Script Actions</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}">&nbsp;</span></li>
</ul>
<ul>
<li data-leveltext="" data-font="Symbol" data-listid="13" 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="4" data-aria-level="1"><b><span data-contrast="auto">UI Actions</span></b><span data-contrast="auto">&nbsp;(Server-side)</span></li>
</ul>								</div>
				<div class="elementor-element elementor-element-c56824a elementor-widget elementor-widget-text-editor" data-id="c56824a" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-contrast="auto">It shows you the </span><b><span data-contrast="auto">order</span></b><span data-contrast="auto"> of execution and the </span><b><span data-contrast="auto">state</span></b><span data-contrast="auto"> of the record before and after each script ran.</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="Calibri" data-listid="14" 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">Open the Tracer:</span></b><span data-contrast="auto"> Navigate to </span><b><span data-contrast="auto">System Diagnostics &gt; Script Tracer</span></b><span data-contrast="auto">.</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="Calibri" data-listid="14" 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">Start Tracing:</span></b><span data-contrast="auto"> Click the </span><b><span data-contrast="auto">Start Tracer</span></b><span data-contrast="auto"> button in the top right.</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="Calibri" data-listid="14" 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">Perform the Action:</span></b><span data-contrast="auto"> Go to your form (e.g., an Incident) and perform the action you want to debug (e.g., click &#8220;Update&#8221; or change the &#8220;State&#8221;).</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="Calibri" data-listid="14" 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="4" data-aria-level="1"><b><span data-contrast="auto">Stop and Analyze:</span></b><span data-contrast="auto"> Go back to the Script Tracer tab and click </span><b><span data-contrast="auto">Stop Tracer</span></b><span data-contrast="auto">.</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="Calibri" data-listid="14" 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"><b><span data-contrast="auto">Review the Trace:</span></b><span data-contrast="auto"> You will see a list of every script that ran.</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><b><span data-contrast="auto">Session Debugging </span></b><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">ServiceNow allows you to toggle specific debug logs that appear at the bottom of your UI page.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="7" 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"><b><span data-contrast="auto">How to use:</span></b><span data-contrast="auto"> Navigate to </span><b><span data-contrast="auto">System Diagnostics &gt; Session Debug</span></b><span data-contrast="auto">. You can choose &#8220;Debug Business Rule,&#8221; &#8220;Debug Security (ACL),&#8221; or &#8220;Debug SQL.&#8221;</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="7" 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"><b><span data-contrast="auto">Best for:</span></b><span data-contrast="auto"> Seeing which Business Rules are firing and in what order.</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">Background Scripts </span></b><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">The </span><b><span data-contrast="auto">Scripts &#8211; Background</span></b><span data-contrast="auto"> module is the &#8220;scratchpad&#8221; of ServiceNow. You can paste a snippet of code and run it immediately to see the output.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="8" 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"><b><span data-contrast="auto">Best for:</span></b><span data-contrast="auto"> Testing a specific function or a GlideRecord query without having to trigger a record update.</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><span data-contrast="none">Client-Side Debugging</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="auto">This applies to Client Scripts, UI Policies, and Catalog Client Scripts.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="auto">Since client scripts run in the browser, </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="9" 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"><b><span data-contrast="auto">Console:</span></b><span data-contrast="auto"> Use console.log() to print values or debugger; in your code to force the browser to pause execution.</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="9" 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"><b><span data-contrast="auto">Sources Tab:</span></b><span data-contrast="auto"> You can find your client script in the &#8220;Sources&#8221; tab and add breakpoints directly in the browser.</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">The JavaScript Log &amp; Field Watcher</span></b><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">ServiceNow provides a built-in &#8220;JavaScript Log&#8221; window that sits inside the platform UI.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="10" 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"><b><span data-contrast="auto">Field Watcher:</span></b><span data-contrast="auto"> Right-click any field label and select </span><b><span data-contrast="auto">Watch field</span></b><span data-contrast="auto">. A pane opens at the bottom showing every script, policy, or ACL that touches that specific field.</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="10" 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"><b><span data-contrast="auto">Best for:</span></b><span data-contrast="auto"> Figuring out &#8220;What script just hid this field?&#8221; or &#8220;Why did this value change to 10?&#8221;</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-ecf261e elementor-widget elementor-widget-text-editor" data-id="ecf261e" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-ccp-props="{}"> </span></p><table data-tablestyle="MsoNormalTable" data-tablelook="1696"><tbody><tr><td data-celllook="4369"><p><b><span data-contrast="auto">Tool</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><b><span data-contrast="auto">Environment</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><b><span data-contrast="auto">Use Case</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td></tr><tr><td data-celllook="4369"><p><b><span data-contrast="auto">Script Debugger</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Server</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Pausing execution and inspecting variables.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td></tr><tr><td data-celllook="4369"><p><b><span data-contrast="auto">Background Scripts</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Server</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Testing standalone code snippets quickly.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td></tr><tr><td data-celllook="4369"><p><b><span data-contrast="auto">Session Debug</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Server</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Watching Business Rules and ACLs in real-time.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td></tr><tr><td data-celllook="4369"><p><b><span data-contrast="auto">Field Watcher</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Client</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Tracking why a specific field&#8217;s value/visibility changed.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td></tr><tr><td data-celllook="4369"><p><b><span data-contrast="auto">Browser Console</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Client</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td><td data-celllook="4369"><p><span data-contrast="auto">Inspecting UI errors and logging manual triggers.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p></td></tr></tbody></table><p><span data-ccp-props="{}"> </span></p>								</div>
					</div>
				</div>
				</div>
		<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/logging-and-debugging/">Logging and Debugging </a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/logging-and-debugging/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SetWorkflow and autoSysFields Methods </title>
		<link>https://logiupskills.com/setworkflow-and-autosysfields-methods/</link>
					<comments>https://logiupskills.com/setworkflow-and-autosysfields-methods/#respond</comments>
		
		<dc:creator><![CDATA[Ashwini More]]></dc:creator>
		<pubDate>Wed, 18 Feb 2026 11:30:28 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://logiupskills.com/?p=15703</guid>

					<description><![CDATA[<p>SetWorkflow and autoSysFields Methods SetWorkflow   In the ServiceNow, setWorkflow() is generally used to prevent the running of business rules (or other scripts) that would be triggered by any server side updates you&#8217;re making.   setWorfklow can be used in any server-side script, including Business Rules, Script Includes, Scheduled Jobs, and (server-side) UI Actions.   The setWorkflow() method utilizes a single boolean argument of either true or false. The arguments are written as follows:   setWorkflow(false): All business rules on the table for the current scripted action (insert, update, delete, query) will be ignored.   setWorkflow(true): All business rules on the table for the current scripted action (insert, update, delete, query) will be executed.  For example, Update the Urgency to High for all active Incidents where the Assignment Group is Network, without triggering any Business Rules that would normally execute during the update.  Autosysfields  autoSysFields is used to to control whether the system automatically updates &#8220;system&#8221; fields when a record is inserted or updated.  By default, ServiceNow manages five specific fields for every record, Created by [sys_created_by],Created [sys_created_on], Updated [sys_updated_on], Updated by [sys_updated_by], Updates [sys_mod_count],  The autoSysFields () method utilizes a single boolean argument of either true or false. The arguments are written as follows:  autoSysFields(false): When autoSysFields is set to false, system field values will not be updated.  autoSysFields(true): When autoSysFields is set to true, system field values will be updated.  For example, if we use the same script that includes the setWorkflow(false) method and additionally add autoSysFields(false), the urgency field will be updated to Medium. However, the system fields (such as Updated by, Updated on, etc.) will not be modified and will remain unchanged.  Here, we can observe that the system fields Updated and Updated by are not refreshed with the latest timestamp or user name. </p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/setworkflow-and-autosysfields-methods/">SetWorkflow and autoSysFields Methods </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="15703" class="elementor elementor-15703" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-f30f9c6 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="f30f9c6" 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-07d97ba elementor-widget elementor-widget-heading" data-id="07d97ba" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">SetWorkflow and autoSysFields Methods </h2>				</div>
				<div class="elementor-element elementor-element-1bfe2a7 elementor-widget elementor-widget-text-editor" data-id="1bfe2a7" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h3><span data-contrast="none">SetWorkflow </span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:360,&quot;335559739&quot;:80}"> </span></h3>								</div>
				<div class="elementor-element elementor-element-8299769 elementor-widget elementor-widget-text-editor" data-id="8299769" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-contrast="auto">In the ServiceNow, setWorkflow() is generally used to prevent the running of business rules (or other scripts) that would be triggered by any server side updates you&#8217;re making.  </span></p><p><span data-contrast="auto">setWorfklow can be used in any server-side script, including Business Rules, Script Includes, Scheduled Jobs, and (server-side) UI Actions. </span><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">The setWorkflow() method utilizes a single boolean argument of either true or false. The arguments are written as follows: </span><span data-ccp-props="{}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="2" 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">setWorkflow(</span><span data-contrast="none">false</span><span data-contrast="auto">): All business rules on the table for the current scripted action (insert, update, delete, query) will be ignored. </span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="2" 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">setWorkflow(</span><span data-contrast="none">true</span><span data-contrast="auto">): All business rules on the table for the current scripted action (insert, update, delete, query) will be executed.</span><span data-ccp-props="{}"> </span></li></ul><p><span data-contrast="auto">For example, Update the </span><b><span data-contrast="auto">Urgency to High</span></b><span data-contrast="auto"> for all active Incidents where the Assignment Group is </span><i><span data-contrast="auto">Network</span></i><span data-contrast="auto">, </span><b><span data-contrast="auto">without triggering any Business Rules</span></b><span data-contrast="auto"> that would normally execute during the update.</span><span data-ccp-props="{}"> </span></p>								</div>
				<div class="elementor-element elementor-element-dd35c87 elementor-widget elementor-widget-image" data-id="dd35c87" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img fetchpriority="high" decoding="async" width="511" height="311" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture1-1.png" class="attachment-large size-large wp-image-15718" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture1-1.png 511w, https://logiupskills.com/wp-content/uploads/2026/02/Picture1-1-300x183.png 300w" sizes="(max-width: 511px) 100vw, 511px" />															</div>
				<div class="elementor-element elementor-element-526fe91 elementor-widget elementor-widget-image" data-id="526fe91" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img decoding="async" width="640" height="153" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture2-2.png" class="attachment-large size-large wp-image-15719" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture2-2.png 755w, https://logiupskills.com/wp-content/uploads/2026/02/Picture2-2-300x72.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-7609c1c elementor-widget elementor-widget-text-editor" data-id="7609c1c" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h3><span class="TextRun SCXW171009411 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="none"><span class="NormalTextRun SpellingErrorV2Themed SCXW171009411 BCX0" data-ccp-parastyle="heading 1">Autosysfields</span></span><span class="EOP SCXW171009411 BCX0" data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:360,&quot;335559739&quot;:80}"> </span></h3>								</div>
				<div class="elementor-element elementor-element-5f1194f elementor-widget elementor-widget-text-editor" data-id="5f1194f" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><b><span data-contrast="auto">autoSysFields</span></b><span data-contrast="auto"> is used to to control whether the system automatically updates &#8220;system&#8221; fields when a record is inserted or updated.</span><span data-ccp-props="{&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="auto">By default, ServiceNow manages five specific fields for every record, Created by [sys_created_by],Created [sys_created_on], Updated [sys_updated_on], Updated by [sys_updated_by], Updates [sys_mod_count],</span><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">The </span><span data-contrast="none">autoSysFields</span><span data-contrast="auto"> () method utilizes a single boolean argument of either true or false. The arguments are written as follows:</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;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="none">autoSysFields(</span><span data-contrast="none">false</span><span data-contrast="none">): </span><span data-contrast="auto">When autoSysFields is set to </span><b><span data-contrast="auto">false, </span></b><span data-contrast="auto">system field values will not be updated.</span><span data-ccp-props="{&quot;201341983&quot;:0,&quot;335557856&quot;:16711679,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </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="none">autoSysFields(</span><span data-contrast="none">true</span><span data-contrast="none">): </span><span data-contrast="auto">When autoSysFields is set to </span><b><span data-contrast="auto">true, </span></b><span data-contrast="auto">system field values will be updated.</span><span data-ccp-props="{&quot;201341983&quot;:0,&quot;335557856&quot;:16711679,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </span></li></ul><p><span data-contrast="auto">For example, if we use the same script that includes the setWorkflow(false) method and additionally add autoSysFields(false), the urgency field will be updated to </span><b><span data-contrast="auto">Medium</span></b><span data-contrast="auto">. However, the system fields (such as Updated by, Updated on, etc.) will not be modified and will remain unchanged.</span><span data-ccp-props="{&quot;201341983&quot;:0,&quot;335557856&quot;:16711679,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </span></p>								</div>
				<div class="elementor-element elementor-element-f6f893e elementor-widget elementor-widget-image" data-id="f6f893e" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img decoding="async" width="514" height="290" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture3-2.png" class="attachment-large size-large wp-image-15720" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture3-2.png 514w, https://logiupskills.com/wp-content/uploads/2026/02/Picture3-2-300x169.png 300w" sizes="(max-width: 514px) 100vw, 514px" />															</div>
				<div class="elementor-element elementor-element-0ed7497 elementor-widget elementor-widget-text-editor" data-id="0ed7497" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW96768764 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW96768764 BCX0">Here, we can </span><span class="NormalTextRun SCXW96768764 BCX0">observe</span><span class="NormalTextRun SCXW96768764 BCX0"> that the system fields </span></span><span class="TextRun SCXW96768764 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW96768764 BCX0">Updated</span></span><span class="TextRun SCXW96768764 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW96768764 BCX0"> and </span></span><span class="TextRun SCXW96768764 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW96768764 BCX0">Updated by</span></span><span class="TextRun SCXW96768764 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW96768764 BCX0"> are not refreshed with the latest timestamp or </span><span class="NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW96768764 BCX0">user name</span><span class="NormalTextRun SCXW96768764 BCX0">.</span></span><span class="EOP SCXW96768764 BCX0" data-ccp-props="{}"> </span></p>								</div>
				<div class="elementor-element elementor-element-500aad9 elementor-widget elementor-widget-image" data-id="500aad9" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="153" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture4-2.png" class="attachment-large size-large wp-image-15721" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture4-2.png 751w, https://logiupskills.com/wp-content/uploads/2026/02/Picture4-2-300x72.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/setworkflow-and-autosysfields-methods/">SetWorkflow and autoSysFields Methods </a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/setworkflow-and-autosysfields-methods/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>HRSD (Human Resource Service Delivery) </title>
		<link>https://logiupskills.com/https-logiupskills-com-hrsd-human-resource-service-delivery/</link>
					<comments>https://logiupskills.com/https-logiupskills-com-hrsd-human-resource-service-delivery/#respond</comments>
		
		<dc:creator><![CDATA[Ashwini More]]></dc:creator>
		<pubDate>Thu, 18 Dec 2025 07:12:39 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://devlogiupskill.comingsolutions.com/?p=9747</guid>

					<description><![CDATA[<p>HRSD (Human Resource Service Delivery) 1.What is HRSD    It is a Service Now platform module that helps organizations digitalize, streamline and automate HR process. 1.1 What HRSD does Onboarding new employees Offboarding (resignations, exits) Leave and attendance requests Payroll and benefits queries Employee documents and policies Workplace issues or grievances 1.2 Key features of HRSD Employee Service Portal: &#8211; Employees can raise HR request using a self-service portal. Case Management: -HR Cases are tracked from start to closure. Knowledge Base: &#8211; Employees can search HR Articles (policies, FAQ’s) Workflows &#38; Automation: &#8211; Automates approvals and HR processes. Confidentiality: &#8211; Sensitive HR data is secured with role-based access. Lifecycle Events: &#8211; Manages hire, transfer, promotion, and exit processes. 2. Plugins required to install HRSD Human Resources Scoped App:Core- com.sn_hr_core- Case and Knowledge Management HR Service Portal – com.sn_hr_service_portal- Employee Service Center for employee to raise case. Human Resources Scoped App: Lifecycle Events- com.sn_hr_lifecycle_events- Multiple activity in multiple departments in sequence e.g. onboarding Integrations-com.sn_hr_integrations. 3.Roles Required Sn_hr_core.basic : &#8211; Given to employees which will allow them to access HR Service portal. Also, they can raise HR case and view their own HR request. Sn_hr_core.case_writer: &#8211; Allows creation of HR cases on behalf of employees. This role usually given to HR assistant and HR coordinators. Sn_hr_core.case_worker: &#8211; This role is given to the HR agents so that they can work on HR cases, update case status and communicate with employees. Sn_hr_core.case_reader: &#8211; This role gives the read only access to HR cases. It is used for audit or managers who only need visibility. Sn_hr_core.manager:- This role is given to managers so that they can view team performance, reassign cases and access HR reports and dashboards. Sn_hr_core.admin:- The person who is having this role has full control of HRSD. he/she can configure the HR service. Also, he/she can create hr case template and manage HR workflows and lifecycle events. 4.COE (Center of Excellence) Center of excellence (COE) in HRSD refers to a structured approach that allows HR teams to manage and deliver services effectively. It helps in organizing various HR functions such as payroll, benefits, talent acquisition, and employee relations into distinct categories, making it easier for users to navigate and request services. · It is used to group and organize HR services, cases and tasks into logical categories. It is an extension of HR case table (sn_hr_core_case) e.g. HR Employee Relations, HR Payroll, Talent Management, Lifecycle Events, HRIT Operations. Each COE is further organized by HR topic category and detail, which defines the first-and second-level of categorization for HR services under that COE. Each COE can have one or more topic categories. Each topic category can have one or more topic details. And each topic detail can have one more HR services. The structure enables you to categorize HR services by functional area, and you configure the categorization structure and the individual HR services to meet the needs of your organization. 4.1 Topic Category  Topic categories represent the first level of grouping for HR services, like &#8220;Benefits&#8221; or &#8220;Leave Management,&#8221;     4.2 Topic Details  Topic details are the second level of categorization under a topic category, providing further specificity to the service.   4.3 HR Service  HR services are various functions and support provided by HR department to the employees e.g. onboarding, payroll processing.  HR service is the most important part of the HRSD application where we bind all the features, we described above to create an HR service.  Basically, HR services are the starting point for HR case creation and define the process for that case type form request to fulfilment.  Fields Present on the HR Service Table  Field Name  Description  Name  The display name of the HR service (e.g., &#8220;Direct Deposit Setup&#8221;).  Active  Boolean to indicate if the service is available.  Description  Detailed description of the service  Topic Category  Reference to the first-level categorization (similar to category in incident)  Topic Detail  Reference to the second-level categorization (similar to subcategory)  COE  Reference to the COE table determining the case table (e.g. sn_hr_core_case_payroll)  HR Template  Reference to an HR case template for auto-populating fields on case creation.   Record Producer  Links to employee-facing portal options.  Case Option  Additional case options for the HR service. ​  1. Add Manager to Watchlist  2. Skip Automatic User Acceptance State  3. Automatically Create draft document  4. Automatically Initiates Document tasks  5. Do Not Default Subject Person:   6. Skip Auto Assign  7. Skip Automatic User Acceptance State  8. User Cannot Cancel  Opened For/Approver view  The person who opened/made the request (the requester).  Subject Person/Task assignee view  The employee whom the HR case is about (the beneficiary or affected person).  Case creation service config  Specify a case creation view for this service.  Checklist  Who is working on a service that is checklist. In this related list, you can provide steps to help HR agents to fulfill HR cases for the associated HR service.​  4.4.1 How It works in HRSD  HR Services tie into the hierarchical structure:  COE → Topic Category → Topic Detail → HR Service  When an employee requests an HR service (via portal or case), it creates an HR case on the appropriate COE-extended table (extending sn_hr_core_case), and the &#8220;Service table fields&#8221; help control visibility of custom/COE-specific fields on the case form via OOB UI policies (e.g., &#8220;Show HR service fields on load&#8221; and &#8220;Hide HR service fields and related lists&#8221;).  5. HR Case  An HR Case in ServiceNow Human Resources Service Delivery (HRSD) is a centralized record used to manage, track, resolve, and report on employee HR-related inquiries, requests, issues, or services. It acts as the core mechanism for HR case management, similar to how an Incident or Case works in ITSM, but tailored for HR processes.  Table Structure: &#8211; Parent Table: &#8211; sn_case (Case Table)  Core HR case table: &#8211; sn_hr_core_case(extends sn_case. Used for general or core HR cases.)  5.1 Life Cycle of HR Case  Daft - Initial state when a case is created (e.g., via portal submission or manual creation). Allows editing before routing. Limited state options visible here.  Ready &#8211; Case is ready for assignment and work. All full state options become visible in the dro pdown.  Awaiting approval &#8211; Require approval before it can move to next state​. </p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/https-logiupskills-com-hrsd-human-resource-service-delivery/">HRSD (Human Resource Service Delivery) </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="9747" class="elementor elementor-9747" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-2642eb6 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="2642eb6" 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-03279b5 elementor-widget elementor-widget-heading" data-id="03279b5" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">HRSD (Human Resource Service Delivery)</h2>				</div>
				<div class="elementor-element elementor-element-f9d2e40 elementor-widget elementor-widget-text-editor" data-id="f9d2e40" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4>1.What is HRSD</h4><p>   It is a Service Now platform module that helps organizations digitalize, streamline and automate HR process.</p><h4>1.1 What HRSD does</h4><ul><li>Onboarding new employees</li><li>Offboarding (resignations, exits)</li><li>Leave and attendance requests</li><li>Payroll and benefits queries</li><li>Employee documents and policies</li><li>Workplace issues or grievances</li></ul><h4>1.2 Key features of HRSD</h4><ul><li>Employee Service Portal: &#8211; Employees can raise HR request using a self-service portal.</li><li>Case Management: -HR Cases are tracked from start to closure.</li><li>Knowledge Base: &#8211; Employees can search HR Articles (policies, FAQ’s)</li><li>Workflows &amp; Automation: &#8211; Automates approvals and HR processes.</li><li>Confidentiality: &#8211; Sensitive HR data is secured with role-based access.</li><li>Lifecycle Events: &#8211; Manages hire, transfer, promotion, and exit processes.</li></ul><h4>2. Plugins required to install HRSD</h4><ul><li>Human Resources Scoped App:Core- com.sn_hr_core- Case and Knowledge Management</li><li>HR Service Portal – com.sn_hr_service_portal- Employee Service Center for employee to raise case.</li><li>Human Resources Scoped App: Lifecycle Events- com.sn_hr_lifecycle_events- Multiple activity in multiple departments in sequence e.g. onboarding</li><li>Integrations-com.sn_hr_integrations.</li></ul><h4>3.Roles Required</h4><ul><li>Sn_hr_core.basic : &#8211; Given to employees which will allow them to access HR Service portal. Also, they can raise HR case and view their own HR request.</li><li>Sn_hr_core.case_writer: &#8211; Allows creation of HR cases on behalf of employees. This role usually given to HR assistant and HR coordinators.</li><li>Sn_hr_core.case_worker: &#8211; This role is given to the HR agents so that they can work on HR cases, update case status and communicate with employees.</li><li>Sn_hr_core.case_reader: &#8211; This role gives the read only access to HR cases. It is used for audit or managers who only need visibility.</li><li>Sn_hr_core.manager:- This role is given to managers so that they can view team performance, reassign cases and access HR reports and dashboards.</li><li>Sn_hr_core.admin:- The person who is having this role has full control of HRSD. he/she can configure the HR service. Also, he/she can create hr case template and manage HR workflows and lifecycle events.</li></ul><h4>4.COE (Center of Excellence)</h4><ul><li>Center of excellence (COE) in HRSD refers to a structured approach that allows HR teams to manage and deliver services effectively. It helps in organizing various HR functions such as payroll, benefits, talent acquisition, and employee relations into distinct categories, making it easier for users to navigate and request services.</li><li>· It is used to group and organize HR services, cases and tasks into logical categories. It is an extension of HR case table (sn_hr_core_case) e.g. HR Employee Relations, HR Payroll, Talent Management, Lifecycle Events, HRIT Operations.</li><li>Each COE is further organized by HR topic category and detail, which defines the first-and second-level of categorization for HR services under that COE. Each COE can have one or more topic categories. Each topic category can have one or more topic details. And each topic detail can have one more HR services. The structure enables you to categorize HR services by functional area, and you configure the categorization structure and the individual HR services to meet the needs of your organization.</li></ul>								</div>
				<div class="elementor-element elementor-element-3502734 elementor-widget elementor-widget-image" data-id="3502734" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="613" height="270" src="https://logiupskills.com/wp-content/uploads/2025/12/1-11.png" class="attachment-large size-large wp-image-9753" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/1-11.png 613w, https://logiupskills.com/wp-content/uploads/2025/12/1-11-300x132.png 300w" sizes="(max-width: 613px) 100vw, 613px" />															</div>
				<div class="elementor-element elementor-element-1614fb9 elementor-widget elementor-widget-text-editor" data-id="1614fb9" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><b><span data-contrast="none">4.1 Topic Category</span></b><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h4><ul><li data-leveltext="" data-font="Symbol" data-listid="45" 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">Topic categories represent the first level of grouping for HR services, like &#8220;Benefits&#8221; or &#8220;Leave Management,&#8221;  </span><span data-contrast="auto"> </span><span data-ccp-props="{}"> </span></li></ul><h4><b><span data-contrast="none">4.2 Topic Details</span></b><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h4><ul><li data-leveltext="" data-font="Symbol" data-listid="45" 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">Topic details are the second level of categorization under a topic category, providing further specificity to the service.</span><span data-contrast="auto"> </span><span data-ccp-props="{}"> </span></li></ul><h4><b><span data-contrast="none">4.3 HR Service</span></b><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h4><ul><li data-leveltext="" data-font="Symbol" data-listid="45" 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">HR services are various functions and support provided by HR department to the employees e.g. onboarding, payroll processing.</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="45" 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="4" data-aria-level="1"><span data-contrast="auto">HR service is the most important part of the HRSD application where we bind all the features, we described above to create an HR service.</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="45" 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"><span data-contrast="auto">Basically, HR services are the starting point for HR case creation and define the process for that case type form request to fulfilment.</span><span data-ccp-props="{}"> </span></li></ul><ol><li data-leveltext="%1.%2" data-font="" data-listid="48" data-list-defn-props="{&quot;335551671&quot;:4,&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:720,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.%2&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" data-aria-posinset="4" data-aria-level="2"><b><span data-contrast="none">Fields Present on the HR Service Table</span></b><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></li></ol><p><span data-ccp-props="{}"> </span></p><table data-tablestyle="MsoTableGrid" data-tablelook="1184"><tbody><tr><td data-celllook="0"><p><b><span data-contrast="auto">Field Name</span></b><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2}"> </span></p></td><td data-celllook="0"><p><b><span data-contrast="auto">Description</span></b><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Name</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2}"> </span></p><p><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">The display name of the HR service (e.g., &#8220;Direct Deposit Setup&#8221;).</span><span data-ccp-props="{}"> </span></p><p><span data-ccp-props="{}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Active</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">Boolean to indicate if the service is available.</span><span data-ccp-props="{}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Description</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">Detailed description of the service</span><span data-ccp-props="{}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Topic Category</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">Reference to the first-level categorization (similar to category in incident)</span><span data-ccp-props="{}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Topic Detail</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">Reference to the second-level categorization (similar to subcategory)</span><span data-ccp-props="{}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">COE</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">Reference to the COE table determining the case table (e.g. sn_hr_core_case_payroll)</span><span data-ccp-props="{}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">HR Template</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">Reference to an HR case template for auto-populating fields on case creation. </span><span data-ccp-props="{}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Record Producer</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">Links to employee-facing portal options.</span><span data-ccp-props="{}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Case Option</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">Additional case options for the HR service. </span><span data-contrast="auto">​</span><span data-ccp-props="{}"> </span></p><p><b><span data-contrast="auto">1.</span></b><span data-contrast="auto"> Add Manager to Watchlist</span><span data-ccp-props="{}"> </span></p><p><b><span data-contrast="auto">2.</span></b><span data-contrast="auto"> Skip Automatic User Acceptance State</span><span data-ccp-props="{}"> </span></p><p><b><span data-contrast="auto">3.</span></b><span data-contrast="auto"> Automatically Create draft document</span><span data-ccp-props="{}"> </span></p><p><b><span data-contrast="auto">4. </span></b><span data-contrast="auto">Automatically Initiates Document tasks</span><span data-ccp-props="{}"> </span></p><p><b><span data-contrast="auto">5.</span></b><span data-contrast="auto"> Do Not Default Subject Person: </span><span data-ccp-props="{}"> </span></p><p><b><span data-contrast="auto">6</span></b><span data-contrast="auto">. Skip Auto Assign</span><span data-ccp-props="{}"> </span></p><p><b><span data-contrast="auto">7. </span></b><span data-contrast="auto">Skip Automatic User Acceptance State</span><span data-ccp-props="{}"> </span></p><p><b><span data-contrast="auto">8. </span></b><span data-contrast="auto">User Cannot Cancel</span><span data-ccp-props="{}"> </span></p><p><span data-ccp-props="{}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Opened For/Approver view</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">The person who opened/made the request (the requester).</span><span data-ccp-props="{}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Subject Person/Task assignee view</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">The employee whom the HR case is about (the beneficiary or affected person).</span><span data-ccp-props="{}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Case creation service config</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">Specify a case creation view for this service.</span><span data-ccp-props="{}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Checklist</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">Who is working on a service that is checklist. In this related list, you can provide steps to help HR agents to fulfill HR cases for the associated HR service.</span><span data-contrast="auto">​</span><span data-ccp-props="{}"> </span></p></td></tr></tbody></table><p><span data-ccp-props="{}"> </span></p><h4><b><span data-contrast="none">4.4.1 How It works in HRSD</span></b><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h4><ul><li data-leveltext="" data-font="Symbol" data-listid="49" 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">HR Services tie into the hierarchical structure:</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="49" 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"><b><span data-contrast="auto">COE → Topic Category → Topic Detail → HR Service</span></b><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="49" 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">When an employee requests an HR service (via portal or case), it creates an HR case on the appropriate COE-extended table (extending sn_hr_core_case), and the &#8220;Service table fields&#8221; help control visibility of custom/COE-specific fields on the case form via OOB UI policies (e.g., &#8220;Show HR service fields on load&#8221; and &#8220;Hide HR service fields and related lists&#8221;).</span><span data-ccp-props="{}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-1b1e525 elementor-widget elementor-widget-image" data-id="1b1e525" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="353" src="https://logiupskills.com/wp-content/uploads/2025/12/2-12-1024x565.png" class="attachment-large size-large wp-image-9760" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/2-12-1024x565.png 1024w, https://logiupskills.com/wp-content/uploads/2025/12/2-12-300x166.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/2-12-768x424.png 768w, https://logiupskills.com/wp-content/uploads/2025/12/2-12.png 1256w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-56257c1 elementor-widget elementor-widget-text-editor" data-id="56257c1" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><b><span data-contrast="none">5. HR Case</span></b><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559731&quot;:360,&quot;335559738&quot;:360,&quot;335559739&quot;:80}"> </span></h4><ul><li data-leveltext="" data-font="Symbol" data-listid="31" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:1440,&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">An HR Case in ServiceNow Human Resources Service Delivery (HRSD) is a centralized record used to manage, track, resolve, and report on employee HR-related inquiries, requests, issues, or services. It acts as the core mechanism for HR case management, similar to how an Incident or Case works in ITSM, but tailored for HR processes.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="31" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:1440,&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">Table Structure: &#8211; Parent Table: &#8211; sn_case (Case Table)</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="31" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:1440,&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">Core HR case table: &#8211; sn_hr_core_case(extends sn_case. Used for general or core HR cases.)</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><h4><b><span data-contrast="none">5.1 Life Cycle of HR Case</span></b><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559731&quot;:360,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h4><ul><li data-leveltext="" data-font="Symbol" data-listid="32" 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;multilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><b><span data-contrast="auto">Daft - </span></b><span data-contrast="auto">Initial state when a case is created (e.g., via portal submission or manual creation). Allows editing before routing. Limited state options visible here.</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="32" 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;multilevel&quot;}" data-aria-posinset="2" data-aria-level="1"><b><span data-contrast="auto">Ready &#8211;</span></b><span data-contrast="auto"> </span><span data-contrast="auto">Case is ready for assignment and work. All full state options become visible in the dro pdown.</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="32" 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;multilevel&quot;}" data-aria-posinset="3" data-aria-level="1"><b><span data-contrast="auto">Awaiting approval &#8211;</span></b><span data-contrast="auto"> Require approval before it can move to next state</span><span data-contrast="auto">​.</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="32" 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;multilevel&quot;}" data-aria-posinset="4" data-aria-level="1"><b><span data-contrast="auto">Work in process - </span></b><span data-contrast="auto">HR agent is actively working on the case.</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="32" 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;multilevel&quot;}" data-aria-posinset="5" data-aria-level="1"><b><span data-contrast="auto">Awaiting acceptance &#8211;</span></b><span data-contrast="auto"> user can accept or reject these solution </span><span data-contrast="auto">​</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="32" 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;multilevel&quot;}" data-aria-posinset="6" data-aria-level="1"><b><span data-contrast="auto">Closed complete &#8211;</span></b><span data-contrast="auto"> </span><span data-contrast="auto">Case fully resolved and closed. Triggers surveys, notifications, and moves case to closed queues.</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="32" 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;multilevel&quot;}" data-aria-posinset="7" data-aria-level="1"><b><span data-contrast="auto">Close incomplete</span></b><span data-contrast="auto"> - </span><span data-contrast="auto">Case closed without full resolution (e.g., employee no longer pursues).</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="32" 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;multilevel&quot;}" data-aria-posinset="8" data-aria-level="1"><b><span data-contrast="auto">Suspended - </span></b><span data-contrast="auto">Similar to On Hold but specifically for SLA suspension (e.g., awaiting external input).</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="32" 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;multilevel&quot;}" data-aria-posinset="9" data-aria-level="1"><b><span data-contrast="auto">Cancelled &#8211;</span></b> <span data-contrast="auto">Case is no longer needed (e.g., duplicate or withdrawn). Requires a cancellation reason.</span><span data-ccp-props="{}"> </span></li></ul><h4><b><span data-contrast="none">5.2 HR case creation</span></b><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h4><h4><b><span data-contrast="none">5.2.1 Create new case (Manual)</span></b><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h4><ul><li data-leveltext="" data-font="Symbol" data-listid="33" 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">HR agent can create HR Case manually by to HR Case Module.</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="33" 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">Go to navigation bar -&gt;HR Case-&gt;Click on Create New Case</span><span data-ccp-props="{}"> </span></li></ul><p><span data-ccp-props="{&quot;335559685&quot;:720}"> </span></p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-0862422 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="0862422" 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-ef3bce2 elementor-widget elementor-widget-image" data-id="ef3bce2" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="326" src="https://logiupskills.com/wp-content/uploads/2025/12/3-12-1024x521.png" class="attachment-large size-large wp-image-9764" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/3-12-1024x521.png 1024w, https://logiupskills.com/wp-content/uploads/2025/12/3-12-300x153.png 300w, https://logiupskills.com/wp-content/uploads/2025/12/3-12-768x390.png 768w, https://logiupskills.com/wp-content/uploads/2025/12/3-12.png 1379w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-1abc747 elementor-widget elementor-widget-text-editor" data-id="1abc747" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li><span class="TextRun SCXW142828235 BCX0" lang="EN-IN" xml:lang="EN-IN" data-contrast="auto"><span class="NormalTextRun SCXW142828235 BCX0" data-ccp-parastyle="Normal (Web)">Provide employee name, COE e.g. HR payroll case also, provide HR service name e.g. Payroll discrepancy. Click on the UI action create case.</span></span><span class="EOP SCXW142828235 BCX0" data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-b45fa5c elementor-widget elementor-widget-image" data-id="b45fa5c" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="293" src="https://logiupskills.com/wp-content/uploads/2025/12/4-12.png" class="attachment-large size-large wp-image-9765" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/4-12.png 752w, https://logiupskills.com/wp-content/uploads/2025/12/4-12-300x137.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-214cdc4 elementor-widget elementor-widget-text-editor" data-id="214cdc4" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="34" 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">When you open an HR case from the native UI the state of the HR case is Draft.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-e73d0d8 elementor-widget elementor-widget-image" data-id="e73d0d8" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="329" src="https://logiupskills.com/wp-content/uploads/2025/12/5-11.png" class="attachment-large size-large wp-image-9769" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/5-11.png 752w, https://logiupskills.com/wp-content/uploads/2025/12/5-11-300x154.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-2b47a62 elementor-widget elementor-widget-text-editor" data-id="2b47a62" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><b><span data-contrast="none">5.2.2 Bulk Case Creation</span></b><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h4><ul><li data-leveltext="" data-font="Symbol" data-listid="34" 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">You can create the same type of HR case for multiple employees without having to create the same case multiple times.</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="34" 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="4" data-aria-level="1"><span data-contrast="auto">Bulk case creation can save your time and effort.</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="34" 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"><span data-contrast="auto">For example, onboarding 20 new employees, a payroll run issue, an annual recertification process are the cases that can be created as a bulk case.</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="34" 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="7" data-aria-level="1"><span data-contrast="auto">To create bulk case, navigate to </span><b><span data-contrast="auto">HR Case Management&gt;Bulk Case Request</span></b></li></ul>								</div>
				<div class="elementor-element elementor-element-395eac5 elementor-widget elementor-widget-image" data-id="395eac5" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="334" src="https://logiupskills.com/wp-content/uploads/2025/12/6-13.png" class="attachment-large size-large wp-image-9776" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/6-13.png 752w, https://logiupskills.com/wp-content/uploads/2025/12/6-13-300x156.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-ea5c823 elementor-widget elementor-widget-text-editor" data-id="ea5c823" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559685&quot;:720,&quot;335559740&quot;:240}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="36" 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">Click on New Button to create a new Bulk Case</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-ffd9be7 elementor-widget elementor-widget-image" data-id="ffd9be7" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="82" src="https://logiupskills.com/wp-content/uploads/2025/12/7-10.png" class="attachment-large size-large wp-image-9780" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/7-10.png 752w, https://logiupskills.com/wp-content/uploads/2025/12/7-10-300x38.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-1d93f45 elementor-widget elementor-widget-text-editor" data-id="1d93f45" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li data-leveltext="" data-font="Symbol" data-listid="36" 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">Enter Name and select the required HR service.</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="36" 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">Click on Save.</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="36" 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="4" data-aria-level="1"><span data-contrast="auto">You can see here, Initially the Status is Draft.</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-4b2d1a7 elementor-widget elementor-widget-image" data-id="4b2d1a7" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="240" src="https://logiupskills.com/wp-content/uploads/2025/12/8-12.png" class="attachment-large size-large wp-image-9787" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/8-12.png 752w, https://logiupskills.com/wp-content/uploads/2025/12/8-12-300x113.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-422d052 elementor-widget elementor-widget-text-editor" data-id="422d052" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-contrast="auto">Once you saved the record, under </span><b><span data-contrast="auto">User segment groups, </span></b><span data-contrast="auto">you can add multiple users based on following options,</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="37" 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;multilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">Upload file</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="38" 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;multilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">HR criteria</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="39" 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;multilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">User criteria</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="40" 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;multilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">HR profiles</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="41" 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;multilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">Users</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><h4><b><span data-contrast="none">5.2.2.1 Upload File</span></b><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h4><ul><li data-leveltext="" data-font="Symbol" data-listid="44" 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">Here you can upload the excel file by clicking on </span><b><span data-contrast="auto">Choose File</span></b><span data-contrast="auto"> button which includes the required user data.</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="44" 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">Upload an excel file with user_name or email as the first column of the file. The header of the first column must be &#8220;user_name&#8221; if user_name is being uploaded, &#8220;email&#8221; if email is being uploaded.</span><span data-contrast="none"> </span><span data-contrast="none"> </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="44" 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="none">Click on Download Template to download the template.</span><span data-contrast="none"> </span><span data-contrast="none"> </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-32bd882 elementor-widget elementor-widget-image" data-id="32bd882" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="249" src="https://logiupskills.com/wp-content/uploads/2025/12/9-13.png" class="attachment-large size-large wp-image-9794" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/9-13.png 752w, https://logiupskills.com/wp-content/uploads/2025/12/9-13-300x117.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-66dbb85 elementor-widget elementor-widget-text-editor" data-id="66dbb85" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li><span class="TextRun SCXW236641330 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW236641330 BCX0" data-ccp-charstyle="normaltextrun" data-ccp-charstyle-defn="{&quot;ObjectId&quot;:&quot;ac0262f4-8a9e-5820-b908-2d943c5f7113|1&quot;,&quot;ClassId&quot;:1073872969,&quot;Properties&quot;:[201342446,&quot;1&quot;,201342447,&quot;5&quot;,201342448,&quot;1&quot;,201342449,&quot;1&quot;,469777841,&quot;Aptos&quot;,469777842,&quot;&quot;,469777843,&quot;Aptos&quot;,469777844,&quot;Aptos&quot;,201341986,&quot;1&quot;,469769226,&quot;Aptos&quot;,268442635,&quot;24&quot;,469775450,&quot;normaltextrun&quot;,201340122,&quot;1&quot;,134233614,&quot;true&quot;,469778129,&quot;normaltextrun&quot;,335572020,&quot;1&quot;,469778324,&quot;Default Paragraph Font&quot;]}">Enter email addresses of required users in the first column if </span></span><span class="TextRun SCXW236641330 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW236641330 BCX0" data-ccp-charstyle="normaltextrun">email template</span></span><span class="TextRun SCXW236641330 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW236641330 BCX0" data-ccp-charstyle="normaltextrun">, option is selected or enter user_name </span></span><span class="TextRun SCXW236641330 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW236641330 BCX0" data-ccp-charstyle="normaltextrun">if user_name template</span></span><span class="TextRun SCXW236641330 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW236641330 BCX0" data-ccp-charstyle="normaltextrun"> is selected. (Download template will be as below, where email must be the first column name)</span></span><span class="EOP SCXW236641330 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-f6dcb15 elementor-widget elementor-widget-image" data-id="f6dcb15" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="263" src="https://logiupskills.com/wp-content/uploads/2025/12/10-13.png" class="attachment-large size-large wp-image-9801" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/10-13.png 752w, https://logiupskills.com/wp-content/uploads/2025/12/10-13-300x123.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-146238f elementor-widget elementor-widget-text-editor" data-id="146238f" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li><span class="TextRun SCXW85382990 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW85382990 BCX0" data-ccp-parastyle="paragraph" data-ccp-parastyle-defn="{&quot;ObjectId&quot;:&quot;aaed607e-c2a3-5841-9fb4-41037bfa0faf|1&quot;,&quot;ClassId&quot;:1073872969,&quot;Properties&quot;:[201342446,&quot;1&quot;,201342447,&quot;5&quot;,201342448,&quot;1&quot;,201342449,&quot;1&quot;,469777841,&quot;Times New Roman&quot;,469777842,&quot;Times New Roman&quot;,469777843,&quot;Times New Roman&quot;,469777844,&quot;Times New Roman&quot;,201341986,&quot;1&quot;,469769226,&quot;Times New Roman&quot;,268442635,&quot;24&quot;,469775450,&quot;paragraph&quot;,201340122,&quot;2&quot;,134233614,&quot;true&quot;,469778129,&quot;paragraph&quot;,335572020,&quot;1&quot;,335559705,&quot;16393&quot;,335559740,&quot;240&quot;,201341983,&quot;0&quot;,134233118,&quot;true&quot;,134233117,&quot;true&quot;,469778324,&quot;Normal&quot;]}">If </span></span><span class="TextRun SCXW85382990 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW85382990 BCX0" data-ccp-parastyle="paragraph">user_name template </span></span><span class="TextRun SCXW85382990 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW85382990 BCX0" data-ccp-parastyle="paragraph">is selected,following template we will get by clicking in the </span></span><span class="TextRun SCXW85382990 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW85382990 BCX0" data-ccp-parastyle="paragraph">Download Template </span></span><span class="TextRun SCXW85382990 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW85382990 BCX0" data-ccp-parastyle="paragraph">link,where user_name must be the first column name.</span></span><span class="TextRun SCXW85382990 BCX0" lang="EN-IN" xml:lang="EN-IN" data-contrast="auto"><span class="NormalTextRun SCXW85382990 BCX0" data-ccp-parastyle="paragraph"> </span></span></li></ul><h4><b><span data-contrast="none">5.2.2.2 HR Criteria</span></b><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h4><ul><li data-leveltext="" data-font="Symbol" data-listid="50" 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">In this type of filter,you can select users using </span><b><span data-contrast="auto">HR criteria.</span></b><span data-contrast="auto">  </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="50" 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="4" data-aria-level="1"><span data-contrast="auto">Enter the values as below,</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="50" 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"><b><span data-contrast="auto">Filter by</span></b><span data-contrast="auto">: select </span><b><span data-contrast="auto">HR criteria </span></b><span data-contrast="auto">option.</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="50" 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="6" data-aria-level="1"><b><span data-contrast="auto">HR criteria: </span></b><span data-contrast="auto">select the required HR criteria.</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="50" 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="7" data-aria-level="1"><span data-contrast="auto">For</span><span data-contrast="auto"> </span><span data-contrast="auto">Example, Select HR profiles belongs to USA using HR criteria named as “</span><b><span data-contrast="auto">US Users</span></b><span data-contrast="auto">”</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-bfa4b48 elementor-widget elementor-widget-image" data-id="bfa4b48" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="209" src="https://logiupskills.com/wp-content/uploads/2025/12/11-12.png" class="attachment-large size-large wp-image-9811" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/11-12.png 752w, https://logiupskills.com/wp-content/uploads/2025/12/11-12-300x98.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-fe467a7 elementor-widget elementor-widget-text-editor" data-id="fe467a7" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li><span class="TextRun SCXW125920149 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="auto"><span class="NormalTextRun SCXW125920149 BCX0" data-ccp-parastyle="paragraph" data-ccp-parastyle-defn="{&quot;ObjectId&quot;:&quot;aaed607e-c2a3-5841-9fb4-41037bfa0faf|1&quot;,&quot;ClassId&quot;:1073872969,&quot;Properties&quot;:[201342446,&quot;1&quot;,201342447,&quot;5&quot;,201342448,&quot;1&quot;,201342449,&quot;1&quot;,469777841,&quot;Times New Roman&quot;,469777842,&quot;Times New Roman&quot;,469777843,&quot;Times New Roman&quot;,469777844,&quot;Times New Roman&quot;,201341986,&quot;1&quot;,469769226,&quot;Times New Roman&quot;,268442635,&quot;24&quot;,469775450,&quot;paragraph&quot;,201340122,&quot;2&quot;,134233614,&quot;true&quot;,469778129,&quot;paragraph&quot;,335572020,&quot;1&quot;,335559705,&quot;16393&quot;,335559740,&quot;240&quot;,201341983,&quot;0&quot;,134233118,&quot;true&quot;,134233117,&quot;true&quot;,469778324,&quot;Normal&quot;]}">Once we Save this segment, we can see all selected users’ list at the bottom.</span></span><span class="TextRun SCXW125920149 BCX0" lang="EN-IN" xml:lang="EN-IN" data-contrast="auto"><span class="NormalTextRun SCXW125920149 BCX0" data-ccp-parastyle="paragraph"> </span></span><span class="TextRun SCXW125920149 BCX0" lang="EN-IN" xml:lang="EN-IN" data-contrast="auto"><span class="NormalTextRun SCXW125920149 BCX0" data-ccp-parastyle="paragraph"> </span></span><span class="EOP SCXW125920149 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-36c6bd8 elementor-widget elementor-widget-image" data-id="36c6bd8" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="327" src="https://logiupskills.com/wp-content/uploads/2025/12/12-8.png" class="attachment-large size-large wp-image-9815" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/12-8.png 752w, https://logiupskills.com/wp-content/uploads/2025/12/12-8-300x153.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-f0061b4 elementor-widget elementor-widget-text-editor" data-id="f0061b4" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559685&quot;:720,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="50" 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="9" data-aria-level="1"><span data-contrast="auto">Once you saved all the segments as per requirement,On the main form Click on </span><b><span data-contrast="auto">Create cases </span></b><span data-contrast="auto">button as below.</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="50" 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="10" data-aria-level="1"><span data-contrast="auto">You can see the status of segment as </span><b><span data-contrast="auto">Processed </span></b><span data-contrast="auto">and Status of Bulk case is </span><b><span data-contrast="auto">Ready</span></b><span data-contrast="auto">.</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-1b824ba elementor-widget elementor-widget-image" data-id="1b824ba" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="231" src="https://logiupskills.com/wp-content/uploads/2025/12/13-8.png" class="attachment-large size-large wp-image-9816" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/13-8.png 752w, https://logiupskills.com/wp-content/uploads/2025/12/13-8-300x109.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-7267270 elementor-widget elementor-widget-text-editor" data-id="7267270" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><b><span data-contrast="none">5.2.2.3 User Criteria</span></b><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h4><ul><li data-leveltext="" data-font="Symbol" data-listid="51" 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">In this type of filter, you can select users using </span><b><span data-contrast="auto">User criteria.</span></b><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="51" 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">Enter the values as below,</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="51" 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"><b><span data-contrast="auto">Filter by</span></b><span data-contrast="auto">: select </span><b><span data-contrast="auto">User criteria </span></b><span data-contrast="auto">option.</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="51" 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="4" data-aria-level="1"><b><span data-contrast="auto">User criteria: </span></b><span data-contrast="auto">select the required User criteria.</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="51" 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"><span data-contrast="auto">For Example, select AES users using User Criteria.</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-3140089 elementor-widget elementor-widget-image" data-id="3140089" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="310" src="https://logiupskills.com/wp-content/uploads/2025/12/14-7.png" class="attachment-large size-large wp-image-9820" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/14-7.png 752w, https://logiupskills.com/wp-content/uploads/2025/12/14-7-300x145.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-460ddce e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="460ddce" 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-bc0ee36 elementor-widget elementor-widget-text-editor" data-id="bc0ee36" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="52" 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">Click on </span><b><span data-contrast="auto">Save </span></b><span data-contrast="auto">button. The list of user based on user criteria will be displayed at the bottom.</span><span data-contrast="auto"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-ab55c2d elementor-widget elementor-widget-image" data-id="ab55c2d" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="334" src="https://logiupskills.com/wp-content/uploads/2025/12/15-6.png" class="attachment-large size-large wp-image-9822" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/15-6.png 752w, https://logiupskills.com/wp-content/uploads/2025/12/15-6-300x157.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-9247395 elementor-widget elementor-widget-text-editor" data-id="9247395" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h4><b><span data-contrast="none">5.2.2.4 HR Profiles</span></b><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h4><ul><li data-leveltext="" data-font="Symbol" data-listid="52" 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">In this type of filter, you can select users using HR profiles table ( sn_hr_core_profile).</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="52" 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">Enter the values as below,</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="52" 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="4" data-aria-level="1"><span data-contrast="auto">Filter by :- select HR profiles option.</span><span data-ccp-props="{}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-d04cbd5 elementor-widget elementor-widget-image" data-id="d04cbd5" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="341" src="https://logiupskills.com/wp-content/uploads/2025/12/16-4.png" class="attachment-large size-large wp-image-9826" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/16-4.png 752w, https://logiupskills.com/wp-content/uploads/2025/12/16-4-300x160.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-acb6882 elementor-widget elementor-widget-text-editor" data-id="acb6882" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li data-leveltext="" data-font="Symbol" data-listid="52" 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"><span data-contrast="auto">Filter HR profiles :- create conditions to filter HR profile. For example, select users from HR profile whose Nationality is an “Indian”.</span><span data-ccp-props="{}"> </span></li></ul><h4><b><span data-contrast="none">5.2.2.5 Users</span></b><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h4><ul><li data-leveltext="" data-font="Symbol" data-listid="53" 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">In this type of filter, you can select users using </span><b><span data-contrast="auto">Users (sys_user) table.</span></b><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="53" 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">Enter the values as below,</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="53" 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"><b><span data-contrast="auto">Filter by</span></b><span data-contrast="auto">: select </span><b><span data-contrast="auto">Users</span></b><b><span data-contrast="auto"> </span></b><b><span data-contrast="auto">option</span></b><span data-contrast="auto">.</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="53" 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="4" data-aria-level="1"><b><span data-contrast="auto">Filter users: </span></b><span data-contrast="auto">create conditions to filter User’s records.</span><span data-contrast="auto"> </span><span data-contrast="auto">  </span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="53" 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"><span data-contrast="auto">For example, select users from User table whose department is “IT”.</span><span data-contrast="auto"> </span><span data-contrast="auto"> </span><span data-ccp-props="{}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-a3314e1 elementor-widget elementor-widget-image" data-id="a3314e1" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="334" src="https://logiupskills.com/wp-content/uploads/2025/12/17-5.png" class="attachment-large size-large wp-image-9830" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/17-5.png 752w, https://logiupskills.com/wp-content/uploads/2025/12/17-5-300x156.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/https-logiupskills-com-hrsd-human-resource-service-delivery/">HRSD (Human Resource Service Delivery) </a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/https-logiupskills-com-hrsd-human-resource-service-delivery/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
