<?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>Omkar Dixit &#8211; LogiUpSkill</title>
	<atom:link href="https://logiupskills.com/author/omkardixit/feed/" rel="self" type="application/rss+xml" />
	<link>https://logiupskills.com</link>
	<description></description>
	<lastBuildDate>Mon, 09 Feb 2026 07:13:11 +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>Omkar Dixit &#8211; LogiUpSkill</title>
	<link>https://logiupskills.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>OnChange Client Script </title>
		<link>https://logiupskills.com/onchange-client-script/</link>
					<comments>https://logiupskills.com/onchange-client-script/#respond</comments>
		
		<dc:creator><![CDATA[Omkar Dixit]]></dc:creator>
		<pubDate>Fri, 06 Feb 2026 10:05:49 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://logiupskills.com/?p=15088</guid>

					<description><![CDATA[<p>OnChange Client Script An onChange Client Script runs on the client side (browser) when the value of a field changes on a form.  It is mainly used to:  Show or hide fields  Make fields mandatory or read-only  Auto-populate fields  Call Script Includes using GlideAjax  Validate user input instantly  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. 1.1 Running onChange Client Script As onLoad Client Script When a form loads:  ServiceNow sets default values for fields  Values are populated from the database  The platform internally fires change events for those fields  Because of this, the onChange script gets executed once during form load.  1.1.1 Scenario When User is not selected, all the fields should be Read Only, and when user is selected, all the fields can be editable. Create New Client Script   Give name-&#62; Add User Restriction, Type -&#62; onChange, Field Name -&#62; STS User   Add Script, comment out first “if statement” or remove it, it will make the onChnage client script run as onLoad Client Script.   Script:   function onChange(control, oldValue, newValue, isLoading, isTemplate) {  //    if (isLoading &#124;&#124; newValue === &#8221;) {  //       return;  }     var getValue = g_form.getValue(&#8220;u_sts_user&#8221;);     if(!getValue){      g_form.setReadOnly(&#8220;u_sts_mode&#8221;, true)      g_form.setReadOnly(&#8220;u_requirements&#8221;, true)      g_form.setReadOnly(&#8220;u_sts_user_comment&#8221;, true)      g_form.showFieldMsg(&#8220;u_sts_user&#8221;, &#8220;Select User First&#8221;, &#8220;info&#8221;);     }     else{      g_form.setReadOnly(&#8220;u_sts_mode&#8221;, false)      g_form.setReadOnly(&#8220;u_requirements&#8221;, false)      g_form.setReadOnly(&#8220;u_sts_user_comment&#8221;, false)      g_form.hideFieldMsg(&#8220;u_sts_user&#8221;, true);     }  }  In this script, the “isLoading” check is commented out, allowing the onChange Client Script to run during form load. When the form initializes, ServiceNow sets the value of “u_sts_user”, which triggers the script and locks related fields until a user is selected. This ensures the form remains controlled both on load and during user interaction. 1.2 Summary: onChange Client Scripts make ServiceNow forms more interactive by responding immediately to field value changes. In some cases, these scripts also run during form load because field values are initialized in the background. Understanding the role of the isLoading parameter helps maintain predictable behavior and ensures a clean, well-controlled form experience. </p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/onchange-client-script/">OnChange Client Script </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="15088" class="elementor elementor-15088" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-6ea7a27 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="6ea7a27" 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-f754e89 elementor-widget elementor-widget-heading" data-id="f754e89" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h1 class="elementor-heading-title elementor-size-default">OnChange Client Script </h1>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-bb939b0 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="bb939b0" 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-1a98d6a elementor-widget elementor-widget-text-editor" data-id="1a98d6a" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-contrast="auto">An onChange Client Script runs on the client side (browser) when the value of a field changes on a form.</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">It is mainly used to:</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">Show or hide fields</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="3" data-aria-level="1"><span data-contrast="auto">Make fields mandatory or read-only</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="4" data-aria-level="1"><span data-contrast="auto">Auto-populate fields</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="5" data-aria-level="1"><span data-contrast="auto">Call Script Includes using GlideAjax</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="6" data-aria-level="1"><span data-contrast="auto">Validate user input instantly</span><span data-ccp-props="{}"> </span></li></ul><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-6563a2d e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="6563a2d" 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-05ee5df elementor-widget elementor-widget-heading" data-id="05ee5df" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">1.1 Running onChange Client Script As onLoad Client Script </h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-31e6b5a e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="31e6b5a" 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-0f0ad71 elementor-widget elementor-widget-text-editor" data-id="0f0ad71" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-contrast="auto">When a form loads:</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></p><ol><li data-leveltext="%1." data-font="Aptos Display" data-listid="3" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">ServiceNow sets default values for fields</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></li></ol><ol><li data-leveltext="%1." data-font="Aptos Display" data-listid="3" 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"><span data-contrast="auto">Values are populated from the database</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></li></ol><ol><li data-leveltext="%1." data-font="Aptos Display" data-listid="3" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="3" data-aria-level="1"><span data-contrast="auto">The platform internally </span><b><span data-contrast="auto">fires change events</span></b><span data-contrast="auto"> for those fields</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335559738&quot;:240,&quot;335559739&quot;:240}"> </span></li></ol><p><span data-contrast="auto">Because of this, the </span><b><span data-contrast="auto">onChange script gets executed once during form load</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></p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-17b2e8f e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="17b2e8f" 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-05d76b9 elementor-widget elementor-widget-heading" data-id="05d76b9" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h3 class="elementor-heading-title elementor-size-default">1.1.1 Scenario </h3>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-80b2362 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="80b2362" 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-20b77ba elementor-widget elementor-widget-text-editor" data-id="20b77ba" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="NormalTextRun SCXW24788810 BCX0">When User is not selected, all the fields </span><span class="NormalTextRun SCXW24788810 BCX0">should be </span><span class="NormalTextRun SCXW24788810 BCX0">Read Only, and when user is selected, all the fields can be editable.</span></p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-9d5303f e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="9d5303f" 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-7057b36 elementor-widget elementor-widget-image" data-id="7057b36" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img fetchpriority="high" decoding="async" width="478" height="217" src="https://logiupskills.com/wp-content/uploads/2026/02/1-3.png" class="attachment-large size-large wp-image-15098" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/1-3.png 478w, https://logiupskills.com/wp-content/uploads/2026/02/1-3-300x136.png 300w" sizes="(max-width: 478px) 100vw, 478px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-2863a91 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="2863a91" 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-c14f7c7 elementor-widget elementor-widget-text-editor" data-id="c14f7c7" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-contrast="auto">Create New Client Script </span><span data-ccp-props="{}"> </span></p><p><span data-contrast="auto">Give </span><b><span data-contrast="auto">name</span></b><span data-contrast="auto">-&gt; Add User Restriction, </span><b><span data-contrast="auto">Type </span></b><span data-contrast="auto">-&gt; onChange, </span><b><span data-contrast="auto">Field Name</span></b><span data-contrast="auto"> -&gt; STS User </span><span data-ccp-props="{}"> </span></p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-58f53bd e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="58f53bd" 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-882d1e6 elementor-widget elementor-widget-image" data-id="882d1e6" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img decoding="async" width="631" height="284" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture8-1.png" class="attachment-large size-large wp-image-15099" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture8-1.png 631w, https://logiupskills.com/wp-content/uploads/2026/02/Picture8-1-300x135.png 300w" sizes="(max-width: 631px) 100vw, 631px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-54fe47b e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="54fe47b" 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-3e149eb elementor-widget elementor-widget-text-editor" data-id="3e149eb" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW45264489 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW45264489 BCX0">Add Script, comment out first “if statement” or remove it</span><span class="NormalTextRun SCXW45264489 BCX0">, it will make the </span><span class="NormalTextRun SCXW45264489 BCX0">onChnage</span><span class="NormalTextRun SCXW45264489 BCX0"> client </span><span class="NormalTextRun SCXW45264489 BCX0">script</span><span class="NormalTextRun SCXW45264489 BCX0"> run as </span><span class="NormalTextRun SCXW45264489 BCX0">onLoad</span><span class="NormalTextRun SCXW45264489 BCX0"> Client Script.</span></span><span class="EOP SCXW45264489 BCX0" data-ccp-props="{}"> </span></p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-eab11ef e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="eab11ef" 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-105e069 elementor-widget elementor-widget-image" data-id="105e069" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img decoding="async" width="640" height="289" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture9-1.png" class="attachment-large size-large wp-image-15100" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture9-1.png 644w, https://logiupskills.com/wp-content/uploads/2026/02/Picture9-1-300x136.png 300w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-ac14576 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="ac14576" 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-e5eacb9 elementor-widget elementor-widget-text-editor" data-id="e5eacb9" 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;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}"> </span><b><span data-contrast="auto">Script: </span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}"> </span></p><p><span data-contrast="none">function</span><span data-contrast="none"> onChange(control, oldValue, newValue, isLoading, isTemplate) {</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16711679,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </span></p><p><span data-contrast="none">//    if (isLoading || newValue === &#8221;) {</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16711679,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </span></p><p><span data-contrast="none">//       return;  }</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16711679,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </span></p><p><span data-contrast="none">   </span><span data-contrast="none">var</span><span data-contrast="none"> getValue = g_form.getValue(</span><span data-contrast="none">&#8220;u_sts_user&#8221;</span><span data-contrast="none">);</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16711679,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </span></p><p><span data-contrast="none">   </span><span data-contrast="none">if</span><span data-contrast="none">(!getValue){</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16711679,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </span></p><p><span data-contrast="none">    g_form.setReadOnly(</span><span data-contrast="none">&#8220;u_sts_mode&#8221;</span><span data-contrast="none">, </span><span data-contrast="none">true</span><span data-contrast="none">)</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16711679,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </span></p><p><span data-contrast="none">    g_form.setReadOnly(</span><span data-contrast="none">&#8220;u_requirements&#8221;</span><span data-contrast="none">, </span><span data-contrast="none">true</span><span data-contrast="none">)</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16711679,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </span></p><p><span data-contrast="none">    g_form.setReadOnly(</span><span data-contrast="none">&#8220;u_sts_user_comment&#8221;</span><span data-contrast="none">, </span><span data-contrast="none">true</span><span data-contrast="none">)</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16711679,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </span></p><p><span data-contrast="none">    g_form.showFieldMsg(</span><span data-contrast="none">&#8220;u_sts_user&#8221;</span><span data-contrast="none">, </span><span data-contrast="none">&#8220;Select User First&#8221;</span><span data-contrast="none">, </span><span data-contrast="none">&#8220;info&#8221;</span><span data-contrast="none">);</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16711679,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </span></p><p><span data-contrast="none">   }</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16711679,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </span></p><p><span data-contrast="none">   </span><span data-contrast="none">else</span><span data-contrast="none">{</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16711679,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </span></p><p><span data-contrast="none">    g_form.setReadOnly(</span><span data-contrast="none">&#8220;u_sts_mode&#8221;</span><span data-contrast="none">, </span><span data-contrast="none">false</span><span data-contrast="none">)</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16711679,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </span></p><p><span data-contrast="none">    g_form.setReadOnly(</span><span data-contrast="none">&#8220;u_requirements&#8221;</span><span data-contrast="none">, </span><span data-contrast="none">false</span><span data-contrast="none">)</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16711679,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </span></p><p><span data-contrast="none">    g_form.setReadOnly(</span><span data-contrast="none">&#8220;u_sts_user_comment&#8221;</span><span data-contrast="none">, </span><span data-contrast="none">false</span><span data-contrast="none">)</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16711679,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </span></p><p><span data-contrast="none">    g_form.hideFieldMsg(</span><span data-contrast="none">&#8220;u_sts_user&#8221;</span><span data-contrast="none">, </span><span data-contrast="none">true</span><span data-contrast="none">);</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16711679,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </span></p><p><span data-contrast="none">   }</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16711679,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </span></p><p><span data-contrast="none">}</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16711679,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:285}"> </span></p><p><span data-contrast="auto">In this script, the “</span><b><span data-contrast="auto">isLoading</span></b><span data-contrast="auto">” </span><span data-contrast="auto">check is commented out, allowing the onChange Client Script to run during form load. When the form initializes, ServiceNow sets the value of “</span><span data-contrast="auto">u_sts_user”</span><span data-contrast="auto">, which triggers the script and locks related fields until a user is selected. This ensures the form remains controlled both on load and during user interaction.</span></p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-bc608e5 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="bc608e5" 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-7cb3b5c elementor-widget elementor-widget-heading" data-id="7cb3b5c" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">1.2 Summary:</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-9ad5f22 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="9ad5f22" 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-4a74b31 elementor-widget elementor-widget-text-editor" data-id="4a74b31" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW169090490 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW169090490 BCX0">onChange Client Scripts make ServiceNow forms more interactive by responding </span><span class="NormalTextRun SCXW169090490 BCX0">immediately</span><span class="NormalTextRun SCXW169090490 BCX0"> to field value changes. In some cases, these scripts also run during form load because field values are initialized in the background. Understanding the role of the </span><span class="NormalTextRun SCXW169090490 BCX0">isLoading</span><span class="NormalTextRun SCXW169090490 BCX0"> parameter helps </span><span class="NormalTextRun SCXW169090490 BCX0">maintain</span><span class="NormalTextRun SCXW169090490 BCX0"> predictable behavior and ensures a clean, well-controlled </span><span class="NormalTextRun SCXW169090490 BCX0">form</span><span class="NormalTextRun SCXW169090490 BCX0"> experience.</span></span><span class="EOP SCXW169090490 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}"> </span></p>								</div>
					</div>
				</div>
				</div>
		<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/onchange-client-script/">OnChange Client Script </a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/onchange-client-script/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Dependent Choice Field in ServiceNow</title>
		<link>https://logiupskills.com/dependent-choice-field-in-servicenow/</link>
					<comments>https://logiupskills.com/dependent-choice-field-in-servicenow/#respond</comments>
		
		<dc:creator><![CDATA[Omkar Dixit]]></dc:creator>
		<pubDate>Fri, 06 Feb 2026 09:26:47 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://logiupskills.com/?p=15015</guid>

					<description><![CDATA[<p>Dependent Choice Field in ServiceNow What is choice field? A Choice field is a predefined dropdown list that restricts user input to specific allowed values. These choices are stored in the sys_choice table.  What is a Dependent Choice Field? Dependent Choice fields change their values based on another field.  Scenario: &#8211; A college management system wants to store student details. While creating a student record, the user should first select the State, and based on the selected state, only the relevant districts should appear in the district dropdown.  Steps For Dependent Choice Field? Open instance  System Definition &#62; Tables  Create new table with fields: &#8211;  Name(String)  Rollno(String)  State(Choice)  District(Choice)  Right click on state &#62; configure dictionary &#62; choices related list &#62; New &#62; Add choices.                                                                                             Choice  Dependent Value  Maharashtra  MH  Rajasthan  RJ  Gujrat  GJ   Submit.  Right click on District &#62; configure dictionary &#62; choices related list &#62; New &#62; Add choices    Choice  Value  Sequence  Dependent value  Mumbai  Mumbai  1  MH  Latur  Latur  2  MH  Raipur  Raipur  1  RJ  Kota  Kota  2  RJ  Surat  Surat  1  GJ  Baroda  Baroda  2  GJ  Advance view &#62; Dependent field &#62; click on use Dependent field &#62; from dropdown select Dependent field (state) &#62; submit &#62; check results.  Dependent Choice filled created successfully.  Conclusion: &#8211; Choice fields are essential in ServiceNow development because they help maintain structured and consistent data. They are widely used in Incident, Change, Problem, and custom applications. Understanding choice fields is important for both ServiceNow developers and administrators. </p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/dependent-choice-field-in-servicenow/">Dependent Choice Field in ServiceNow</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="15015" class="elementor elementor-15015" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-7a0c7c3 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="7a0c7c3" 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-f0e7d40 elementor-widget elementor-widget-heading" data-id="f0e7d40" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h1 class="elementor-heading-title elementor-size-default">Dependent Choice Field in ServiceNow </h1>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-d88e8cf e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="d88e8cf" 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-f387c9a elementor-widget elementor-widget-heading" data-id="f387c9a" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">What is choice field? </h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-f60cbaa e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="f60cbaa" 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-d3e8825 elementor-widget elementor-widget-text-editor" data-id="d3e8825" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-contrast="auto">A Choice field is a predefined dropdown list that restricts user input to specific allowed values.</span><span data-ccp-props="{&quot;335559685&quot;:360}"> </span><span data-contrast="auto">These choices are stored in the sys_choice table.</span><span data-ccp-props="{&quot;335559685&quot;:360}"> </span></p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-0125ba5 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="0125ba5" 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-241ddd3 elementor-widget elementor-widget-heading" data-id="241ddd3" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">What is a Dependent Choice Field? </h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-5dde47c e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="5dde47c" 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-dae1e74 elementor-widget elementor-widget-text-editor" data-id="dae1e74" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW40571959 BCX0" lang="EN-IN" xml:lang="EN-IN" data-contrast="auto"><span class="NormalTextRun SCXW40571959 BCX0">Dependent Choice fields change their values based on another field</span><span class="NormalTextRun SCXW40571959 BCX0">.</span></span><span class="EOP SCXW40571959 BCX0" data-ccp-props="{&quot;335559685&quot;:360}"> </span></p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-fd83b10 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="fd83b10" 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-55a5bb3 elementor-widget elementor-widget-heading" data-id="55a5bb3" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Scenario: - </h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-26f36f8 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="26f36f8" 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-956eed3 elementor-widget elementor-widget-text-editor" data-id="956eed3" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW97369740 BCX0" lang="EN-IN" xml:lang="EN-IN" data-contrast="auto"><span class="NormalTextRun SCXW97369740 BCX0">A </span></span><span class="TextRun SCXW97369740 BCX0" lang="EN-IN" xml:lang="EN-IN" data-contrast="auto"><span class="NormalTextRun SCXW97369740 BCX0">college management system</span></span><span class="TextRun SCXW97369740 BCX0" lang="EN-IN" xml:lang="EN-IN" data-contrast="auto"><span class="NormalTextRun SCXW97369740 BCX0"> wants to store student details.</span></span> <span class="TextRun SCXW97369740 BCX0" lang="EN-IN" xml:lang="EN-IN" data-contrast="auto"><span class="NormalTextRun SCXW97369740 BCX0">While creating a student record, the user should first select the </span></span><span class="TextRun SCXW97369740 BCX0" lang="EN-IN" xml:lang="EN-IN" data-contrast="auto"><span class="NormalTextRun SCXW97369740 BCX0">State</span></span><span class="TextRun SCXW97369740 BCX0" lang="EN-IN" xml:lang="EN-IN" data-contrast="auto"><span class="NormalTextRun SCXW97369740 BCX0">, and based on the selected state, only the </span></span><span class="TextRun SCXW97369740 BCX0" lang="EN-IN" xml:lang="EN-IN" data-contrast="auto"><span class="NormalTextRun SCXW97369740 BCX0">relevant districts</span></span><span class="TextRun SCXW97369740 BCX0" lang="EN-IN" xml:lang="EN-IN" data-contrast="auto"><span class="NormalTextRun SCXW97369740 BCX0"> should appear in the </span><span class="NormalTextRun SCXW97369740 BCX0">district</span><span class="NormalTextRun SCXW97369740 BCX0"> dropdown.</span></span><span class="EOP SCXW97369740 BCX0" data-ccp-props="{&quot;335559685&quot;:360}"> </span></p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-19fe997 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="19fe997" 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-94b6c66 elementor-widget elementor-widget-heading" data-id="94b6c66" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Steps For Dependent Choice Field? </h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-4ee935d e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="4ee935d" 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-1e74b73 elementor-widget elementor-widget-text-editor" data-id="1e74b73" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ol><li data-leveltext="%1." data-font="Aptos" data-listid="2" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><ol><li data-leveltext="%1." data-font="Aptos" data-listid="2" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">Open instance</span><span data-ccp-props="{}"> </span></li></ol><ol><li data-leveltext="%1." data-font="Aptos" data-listid="2" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="2" data-aria-level="1"><span data-contrast="auto">System Definition &gt; Tables</span><span data-ccp-props="{}"> </span></li></ol><ol><li data-leveltext="%1." data-font="Aptos" data-listid="2" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="3" data-aria-level="1"><span data-contrast="auto">Create new table with fields: &#8211;</span><span data-ccp-props="{}"> </span></li></ol><ul><li data-leveltext="" data-font="Symbol" data-listid="4" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:4320,&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="5"><span data-contrast="auto">Name(String)</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="4" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:4320,&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="5"><span data-contrast="auto">Rollno(String)</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="4" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:4320,&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="5"><span data-contrast="auto">State(Choice)</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="4" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:4320,&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="5"><span data-contrast="auto">District(Choice)</span><span data-ccp-props="{}"> </span></li></ul><ol><li data-leveltext="%1." data-font="Aptos" data-listid="2" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="4" data-aria-level="1"><span data-contrast="auto">Right click on state &gt; configure dictionary &gt; choices related list &gt; New &gt; Add choices.</span><span data-ccp-props="{}"> </span></li></ol><p><span data-contrast="auto">                                                                                         </span><span data-ccp-props="{&quot;335559685&quot;:720}"> </span></p><table data-tablestyle="MsoTableGrid" data-tablelook="1184"><tbody><tr><td data-celllook="0"><p><b><span data-contrast="auto">Choice</span></b><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><b><span data-contrast="auto">Dependent Value</span></b><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Maharashtra</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">MH</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Rajasthan</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">RJ</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Gujrat</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">GJ</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td></tr></tbody></table><ol><li data-leveltext="%1." data-font="Aptos" data-listid="2" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="5" data-aria-level="1"><span data-contrast="auto"> Submit.</span><span data-ccp-props="{}"> </span></li></ol><ol><li data-leveltext="%1." data-font="Aptos" data-listid="2" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="6" data-aria-level="1"><span data-contrast="auto">Right click on District &gt; configure dictionary &gt; choices related list &gt; New &gt; Add choices</span><span data-ccp-props="{}"> </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">Choice</span></b><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><b><span data-contrast="auto">Value</span></b><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><b><span data-contrast="auto">Sequence</span></b><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><b><span data-contrast="auto">Dependent value</span></b><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Mumbai</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">Mumbai</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">1</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">MH</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Latur</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">Latur</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">2</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">MH</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Raipur</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">Raipur</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">1</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">RJ</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Kota</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">Kota</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">2</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">RJ</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Surat</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">Surat</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">1</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">GJ</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td></tr><tr><td data-celllook="0"><p><span data-contrast="auto">Baroda</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">Baroda</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">2</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td><td data-celllook="0"><p><span data-contrast="auto">GJ</span><span data-ccp-props="{&quot;335551550&quot;:2,&quot;335551620&quot;:2,&quot;335559685&quot;:0}"> </span></p></td></tr></tbody></table><ol><li data-leveltext="%1." data-font="Aptos" data-listid="2" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="7" data-aria-level="1"><span data-contrast="auto">Advance view &gt; Dependent field &gt; click on use Dependent field &gt; from dropdown select Dependent field (state) &gt; submit &gt; check results.</span><span data-ccp-props="{}"> </span></li></ol></li></ol>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-3cb4daa e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="3cb4daa" 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-50d3853 elementor-widget elementor-widget-text-editor" data-id="50d3853" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ul><li><span class="TextRun SCXW35530950 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW35530950 BCX0">Dependent </span><span class="NormalTextRun SCXW35530950 BCX0">Choice </span><span class="NormalTextRun SCXW35530950 BCX0">filled</span><span class="NormalTextRun SCXW35530950 BCX0"> </span><span class="NormalTextRun SCXW35530950 BCX0">created</span><span class="NormalTextRun SCXW35530950 BCX0"> </span><span class="NormalTextRun SCXW35530950 BCX0">successfully.</span></span><span class="EOP SCXW35530950 BCX0" data-ccp-props="{}"> </span></li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-53837eb e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="53837eb" 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-28d3a5c elementor-widget elementor-widget-image" data-id="28d3a5c" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="323" src="https://logiupskills.com/wp-content/uploads/2026/02/undefined.png" class="attachment-large size-large wp-image-15029" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/undefined.png 903w, https://logiupskills.com/wp-content/uploads/2026/02/undefined-300x151.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/undefined-768x388.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-1ea30a3 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="1ea30a3" 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-a344d7e elementor-widget elementor-widget-heading" data-id="a344d7e" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Conclusion: - </h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-910de70 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="910de70" 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-a6bff8b elementor-widget elementor-widget-text-editor" data-id="a6bff8b" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW59541130 BCX0" lang="EN-IN" xml:lang="EN-IN" data-contrast="auto"><span class="NormalTextRun SCXW59541130 BCX0">Choice fields are essential in ServiceNow development because they help </span><span class="NormalTextRun SCXW59541130 BCX0">maintain</span><span class="NormalTextRun SCXW59541130 BCX0"> structured and consistent data. They are widely used in Incident, Change, Problem, and custom applications. Understanding choice fields is important for both ServiceNow developers and administrators.</span></span><span class="EOP SCXW59541130 BCX0" data-ccp-props="{}"> </span></p>								</div>
					</div>
				</div>
				</div>
		<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/dependent-choice-field-in-servicenow/">Dependent Choice Field in ServiceNow</a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/dependent-choice-field-in-servicenow/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
