<?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>Samiksha Ingale &#8211; LogiUpSkill</title>
	<atom:link href="https://logiupskills.com/author/samikshai/feed/" rel="self" type="application/rss+xml" />
	<link>https://logiupskills.com</link>
	<description></description>
	<lastBuildDate>Fri, 30 Jan 2026 09:53: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>Samiksha Ingale &#8211; LogiUpSkill</title>
	<link>https://logiupskills.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Import data from MySQL into Service-now</title>
		<link>https://logiupskills.com/import-data-from-mysql-into-service-now/</link>
					<comments>https://logiupskills.com/import-data-from-mysql-into-service-now/#respond</comments>
		
		<dc:creator><![CDATA[Samiksha Ingale]]></dc:creator>
		<pubDate>Fri, 09 Jan 2026 07:39:52 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://logiupskills.com/?p=11981</guid>

					<description><![CDATA[<p>Import data from MySQL into Service-now Mid Server To import data from My SQL server into service now we can use MID Server and Data source. MID Server is required when we need to access on premises data(i.e when machine/any server is in Virtual Private Network) Mid Server is a Java application, through which Service-now can communicate with external applications which are running in Clients VPN i.e. Virtual Private Network. Mid Server need to install in Clients Network to get or send data to Clients tool which are in their VPN. We used MID server here because client MySQL server is in VPN, so installed the mid server in client VPN and same mid server we are using in data source. ECC Queue &#8211; Mid Server talks with service now using ECC (External Communication Channel). Mid Server Script Include: Mid Server Script Include, are the script, which we will execute on Mid Server For example 1. If we need to connect with jira tool which is in VPN to create a ticket in JIRA and update the response which we are getting from jira into service-now ticket. 2. We need to create a Mid Server script include(Java code) , which will run on the Mid server, which will call the jira web service to create a ticket and take the response and the same response will send to service now table as an update by calling service now web service. 3. After creating mid server script include, we need to create a record into ecc queue against the specific mid server so that script will execute on that specific mid server. Mid Server Installation Steps &#8211; Download mid server from service now instance from left navigation menu. Create one folder(&#8220;MeghanaMidServer &#8220;) in C drive and extract the downloaded ZIP (MID Server setup) in this folder. Open “config.xml” file and configure ServiceNow instance details along with newly created user with “mid_server” role and mentioned MID server name as “MeghanaMidServer”(This name will appear in ServiceNow once we done with setting and mid server started). Once done with all configurations start midserver by running start.bat file Once the above configurations and observations are fine, and then check in whether our mid server is appearing and with status “UP” or not. Go to service now instance-&#62;MID Server-&#62;Server = MeghanaMidServer check its status and validate it(Validation means service now instance version and mid server instance is same).   Datasource Create New Data Source:     Name &#8211; Name of data source Import set table label &#8211; Provide any label for import set Import set table name &#8211; New import set will be created with this name   Type &#8211; Select type of data source (JDBC,FILE,LDAP etc) File JDBC LDAP OIDC Use MID Server  &#8211; Specify name of the mid server to which we need to connect from service-now MeghanaMidServer     Install XAMPP server on your machine. Start MySQL server &#8211; it will list port number.   Format &#8211; Specify data source format(MySQL,Oracle, SQL Server) &#8212; None &#8212; MySQL Oracle SQLServer Database name &#8211; Create database in any db server(Created in MySQL server) and specify that db name here Database port &#8211; Use db port number shown on XAMPP control panel against MySQL Discover moreSQL servermy sqlComputerClientSQLServerclientMicrosoft SQL ServerapplicationMySQLdatabase   Username  &#8211; Specify MySQL server user name and password Password   Open link &#8211;  http://localhost/phpmyadmin/ It will show you local host server address, use that address here.   Server   Query &#8211; It will query on table in such a way that it will return all rows from table, or we can write specific SQL (Select required fields or add filter conditions) All Rows from Table Specific SQL Table name &#8211; This table should be present in database. Import Set Click on Load All Records &#8211; It will load all the records from specified table(book) into import set(u_myimportset).   Verify data in import set from left navigation. Transform Map &#8211; To dump/ transform import set data into table, we need to create target table first. Create new table(book) from left navigation. add required fields (id,title,author) those are in MySQL db table. From left navigation go to transform map Name &#8211; Specify name for new transform map Source table &#8211; Select import set &#8212; None &#8212; Computer [imp_computer] Import Incident [u_import_incident] Location [imp_location] MyDataSource [u_myimportset] Notification [imp_notification] User [imp_user] Target table &#8211; Select table book in which we need to insert data Discover moredatabaseApplication softwarecomputerDatabaseSQLServerclientdbSQLmy sqlComputer Filed Mapping &#8211; Perform mapping of import set filed with actual table Click on transform &#8211; check the data is loaded in book table. here we are manually transforming import set data into table. but to automate this task we can use schedule job. Schedule Job : Go to your data source from left navigation -&#62; configure-&#62; Related list-&#62; add  Scheduled Data imports   By selecting Run = Daily, This will transform data daily from data source into import set table.   Source Script &#8211; Open filed map &#8211; &#62; select any filed Click on Use source script checkbox -&#62; it will allow you to run any script on this filed, before inserting data into target table. In following example script, we are adding PR as prefix  to the title. Execute schedule job to load newly added data from my sql table to target table Check Prefix PR is added in title  </p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/import-data-from-mysql-into-service-now/">Import data from MySQL into Service-now</a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="11981" class="elementor elementor-11981" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-12dbb07 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="12dbb07" 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-cfa19b8 elementor-widget elementor-widget-heading" data-id="cfa19b8" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Import data from MySQL into Service-now</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-6990b29 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="6990b29" 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-f73a939 elementor-widget elementor-widget-text-editor" data-id="f73a939" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><strong>Mid Server</strong></p><p>To import data from My SQL server into service now we can use MID Server and Data source. MID Server is required when we need to access on premises data(i.e when machine/any server is in Virtual Private Network)</p><p>Mid Server is a Java application, through which Service-now can communicate with external applications which are running in Clients VPN i.e. Virtual Private Network. Mid Server need to install in Clients Network to get or send data to Clients tool which are in their VPN.</p><p><img fetchpriority="high" decoding="async" class="alignnone" src="http://shalamaster.com/img/midserver/midserverdiagram.PNG" alt="import data from mysql into servicenow" width="666" height="205" /></p><p>We used MID server here because client MySQL server is in VPN, so installed the mid server in client VPN and same mid server we are using in data source.</p><p><strong>ECC Queue &#8211;</strong></p><p>Mid Server talks with service now using ECC (External Communication Channel).</p><p><strong>Mid Server Script Include:</strong></p><p>Mid Server Script Include, are the script, which we will execute on Mid Server For example</p><p>1. If we need to connect with jira tool which is in VPN to create a ticket in JIRA and update the response which we are getting from jira into service-now ticket.</p><p>2. We need to create a Mid Server script include(Java code) , which will run on the Mid server, which will call the jira web service to create a ticket and take the response and the same response will send to service now table as an update by calling service now web service.</p><p>3. After creating mid server script include, we need to create a record into ecc queue against the specific mid server so that script will execute on that specific mid server.</p><p><strong>Mid Server Installation Steps &#8211;</strong></p><ol><li style="list-style-type: none;"><ol><li>Download mid server from service now instance from left navigation menu.</li></ol></li></ol><p><img decoding="async" src="http://shalamaster.com/img/midserver/download.png" alt="Download Mid Server" /></p><ol><li style="list-style-type: none;"><ol><li>Create one folder(&#8220;MeghanaMidServer &#8220;) in C drive and extract the downloaded ZIP (MID Server setup) in this folder.</li></ol></li></ol><p><img decoding="async" src="http://shalamaster.com/img/midserver/midserverextractionpath.png" alt="Extract Midserver" /></p><ol start="3"><li style="list-style-type: none;"><ol start="3"><li>Open “config.xml” file and configure ServiceNow instance details along with newly created user with “mid_server” role and mentioned MID server name as “<strong>MeghanaMidServer</strong>”(This name will appear in ServiceNow once we done with setting and mid server started).</li></ol></li></ol><p><img decoding="async" src="http://shalamaster.com/img/midserver/config.png" alt="Configure Midserver" /></p><ol start="3"><li style="list-style-type: none;"><ol start="3"><li>Once done with all configurations start midserver by running start.bat file</li></ol></li></ol><p><img decoding="async" src="http://shalamaster.com/img/midserver/startmidserver.png" alt="Start Midserver" /></p><ol start="5"><li style="list-style-type: none;"><ol start="5"><li>Once the above configurations and observations are fine, and then check in whether our mid server is appearing and with status “UP” or not.</li></ol></li></ol><p><img decoding="async" src="http://shalamaster.com/img/midserver/startuplog.png" alt="Start Log" /></p><ol start="6"><li>Go to service now instance-&gt;MID Server-&gt;Server =<strong> MeghanaMidServer</strong></li></ol><p>check its status and validate it(Validation means service now instance version and mid server instance is same).</p><p><img decoding="async" src="http://shalamaster.com/img/midserver/validatemidserver.png" alt="Validate Server" /></p><p><strong> </strong></p><p><strong>Datasource</strong></p><p><strong>Create New Data Source:</strong></p><p><img decoding="async" src="http://shalamaster.com/img/midserver/datasource.png" alt="Datasource" /></p><p><strong> </strong></p><p><strong> </strong></p><p><strong>Name &#8211; Name of data source</strong></p><p><strong>Import set table label &#8211; Provide any label for import set</strong></p><p><strong>Import set table name &#8211; New import set will be created with this name</strong></p><div class="google-auto-placed ap_container"><div id="aswift_2_host"> </div></div><p><strong>Type &#8211; Select type of data source (JDBC,FILE,LDAP etc)</strong></p><p>File JDBC LDAP OIDC</p><p><strong>Use MID Server  &#8211; Specify name of the mid server to which we need to connect from service-now</strong></p><p>MeghanaMidServer</p><p><strong> </strong></p><p><strong> </strong></p><p><strong>Install XAMPP server on your machine.</strong></p><p><img decoding="async" src="http://shalamaster.com/img/midserver/xampp.png" alt="XAMPP" /></p><p><strong>Start MySQL server &#8211; it will list port number.</strong></p><p><strong> </strong></p><p><strong>Format &#8211; Specify data source format(MySQL,Oracle, SQL Server)</strong></p><p>&#8212; None &#8212; MySQL Oracle SQLServer</p><p><strong>Database name &#8211; Create database in any db server(Created in MySQL server) and specify that db name here</strong></p><p><strong>Database port &#8211; Use db port number shown on XAMPP control panel against MySQL</strong></p><div class="google-auto-placed ap_container"><div id="aswift_3_host"><div><div class="goog-rtopics" aria-label="These are topics related to the article that might interest you">Discover more</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="SQL server" data-google-vignette="false" data-google-interstitial="false">SQL server</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="my sql" data-google-vignette="false" data-google-interstitial="false">my sql</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="Computer" data-google-vignette="false" data-google-interstitial="false">Computer</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="Client" data-google-vignette="false" data-google-interstitial="false">Client</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="SQLServer" data-google-vignette="false" data-google-interstitial="false">SQLServer</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="client" data-google-vignette="false" data-google-interstitial="false">client</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="Microsoft SQL Server" data-google-vignette="false" data-google-interstitial="false">Microsoft SQL Server</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="application" data-google-vignette="false" data-google-interstitial="false">application</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="MySQL" data-google-vignette="false" data-google-interstitial="false">MySQL</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="database" data-google-vignette="false" data-google-interstitial="false">database</div></div></div></div><p><strong> </strong></p><p><strong>Username  &#8211; Specify MySQL server user name and password</strong></p><p><strong>Password</strong></p><p><strong> </strong></p><p><strong>Open link &#8211;</strong></p><p><strong><u> </u></strong><a href="http://localhost/phpmyadmin/" target="_blank" rel="noopener"><strong>http://localhost/phpmyadmin/</strong></a></p><p><strong><em>I</em></strong><strong>t will show you local host server address, use that address here.</strong></p><p><strong> </strong></p><p><strong>Server</strong></p><p><strong> </strong></p><p><img decoding="async" src="http://shalamaster.com/img/midserver/phpadminpage.png" alt="PHP Admin Page" /></p><p><strong>Query &#8211; It will query on table in such a way that it will return all rows from table, or we can write specific SQL (Select required fields or add filter conditions)</strong></p><p>All Rows from Table Specific SQL</p><p><strong>Table name &#8211; This table should be present in database.</strong></p><p><strong>Import Set</strong></p><p><strong>Click on Load All Records &#8211; It will load all the records from specified table(book) into import set(u_myimportset).</strong></p><p><img decoding="async" src="http://shalamaster.com/img/midserver/importset.png" alt="Import set" /></p><p><strong> </strong></p><p><strong>Verify data in import set from left navigation.</strong></p><p><img decoding="async" src="http://shalamaster.com/img/midserver/verifyimportset.png" alt="Verify Import set" /></p><p><strong>Transform Map &#8211;</strong></p><p>To dump/ transform import set data into table, we need to create target table first. Create new table(book) from left navigation. add required fields (id,title,author) those are in MySQL db table.</p><p>From left navigation go to transform map</p><p><img decoding="async" src="http://shalamaster.com/img/midserver/transformmap.png" alt="Transform map" /></p><p><strong>Name &#8211; Specify name for new transform map</strong></p><p><strong>Source table &#8211; Select import set</strong></p><p>&#8212; None &#8212; Computer [imp_computer] Import Incident [u_import_incident] Location [imp_location] MyDataSource [u_myimportset] Notification [imp_notification] User [imp_user]</p><p><strong>Target table &#8211; Select table book in which we need to insert data</strong></p><div class="google-auto-placed ap_container"><div id="aswift_4_host"><div><div class="goog-rtopics" aria-label="These are topics related to the article that might interest you">Discover more</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="database" data-google-vignette="false" data-google-interstitial="false">database</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="Application software" data-google-vignette="false" data-google-interstitial="false">Application software</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="computer" data-google-vignette="false" data-google-interstitial="false">computer</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="Database" data-google-vignette="false" data-google-interstitial="false">Database</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="SQLServer" data-google-vignette="false" data-google-interstitial="false">SQLServer</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="client" data-google-vignette="false" data-google-interstitial="false">client</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="db" data-google-vignette="false" data-google-interstitial="false">db</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="SQL" data-google-vignette="false" data-google-interstitial="false">SQL</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="my sql" data-google-vignette="false" data-google-interstitial="false">my sql</div><div class="google-anno-skip google-anno-sc" role="link" aria-label="Computer" data-google-vignette="false" data-google-interstitial="false">Computer</div></div></div></div><p><strong>Filed Mapping &#8211; Perform mapping of import set filed with actual table</strong></p><p><img decoding="async" src="http://shalamaster.com/img/midserver/filedmapping.png" alt="Filedmapping" /></p><p><strong>Click on transform &#8211; check the data is loaded in book table. here we are manually transforming import set data into table. but to automate this task we can use schedule job.</strong></p><p><img decoding="async" src="http://shalamaster.com/img/midserver/verifydataintransformmap.png" alt="Verify data in transform map" /></p><p><strong>Schedule Job :</strong></p><p><strong>Go to your data source from left navigation -&gt; configure-&gt; Related list-&gt; add  Scheduled Data imports</strong></p><p><img decoding="async" src="http://shalamaster.com/img/midserver/scheduleddataimport.png" alt="Scheduled data import" /></p><p><strong> </strong></p><p><img decoding="async" src="http://shalamaster.com/img/midserver/scheduleddataimport2.png" alt="Scheduled data import2" /></p><p><strong>By selecting Run = Daily, This will transform data daily from data source into import set table.</strong></p><p><strong> </strong></p><p><strong>Source Script &#8211;</strong></p><p>Open filed map &#8211; &gt; select any filed</p><p><img decoding="async" src="http://shalamaster.com/img/midserver/transformsourcescript.png" alt="Transform source scipt" /></p><p>Click on Use source script checkbox -&gt; it will allow you to run any script on this filed, before inserting data into target table.</p><p>In following example script, we are adding PR as prefix  to the title.</p><p><img decoding="async" src="http://shalamaster.com/img/midserver/transformscipt.png" alt="Transform scipt" /></p><p>Execute schedule job to load newly added data from my sql table to target table</p><p><img decoding="async" src="http://shalamaster.com/img/midserver/exeschedulejob.png" alt="Execute schedulejob" /></p><p>Check Prefix PR is added in title</p><p><img decoding="async" src="http://shalamaster.com/img/midserver/verifyprifix.png" alt="verify prifix " /></p><div class="google-auto-placed ap_container"> </div>								</div>
					</div>
				</div>
				</div>
		<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/import-data-from-mysql-into-service-now/">Import data from MySQL into Service-now</a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/import-data-from-mysql-into-service-now/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Practice Examples in Service-now</title>
		<link>https://logiupskills.com/practice-examples-in-service-now/</link>
					<comments>https://logiupskills.com/practice-examples-in-service-now/#respond</comments>
		
		<dc:creator><![CDATA[Samiksha Ingale]]></dc:creator>
		<pubDate>Thu, 08 Jan 2026 08:27:23 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://logiupskills.com/?p=11636</guid>

					<description><![CDATA[<p>Practice Examples in Service-now Practice Examples from Shala Master Scenario1:-Cancel the incident form submission if user has typed &#8220;Credit Card&#8221; in short description.(User OnSubmit Client Script) function onSubmit() {    //Type appropriate comment here, and begin script below     var desc = g_form.getValue(&#8216;short_description&#8217;).indexOf(&#8220;Credit Card&#8221;) &#62; -1;     if ((desc == true)) {                         alert(&#8220;Please remove the word &#8216;Credit Card&#8217; from your short description to Submit the form&#8221;);                         return false; }      } Scenario2:-User should not insert or update the incident record if user has entered &#8220;password&#8221; inwork notes or comments. (function executeRule(current, previous /*null when async*/) {             // Add your code here             var worknote = current.work_notes.getJournalEntry(1);     var worknoteContent = worknote.split(&#8220;(Work notes)n&#8221;);     var lastWorknote = worknoteContent[1];     var comment = current.comments.getJournalEntry(1);     var commentContent = comment.split(&#8220;(Additional comments)n&#8221;);     var lastComment = commentContent[1];             if(lastWorknote.indexOf(&#8220;password&#8221;)&#62;-1){                         current.setAbortAction(true);             }             if(lastComment.indexOf(&#8220;password&#8221;)&#62;-1){                         current.setAbortAction(true);             } })(current, previous); Scenario3:-Show AddINFO message &#8220;Caller and Assigned to are same&#8221; if caller and assinged tousers are same. (function executeRule(current, previous /*null when async*/ ) {     // Add your code here     if (current.assigned_to.name == current.caller_id.name) {         gs.addInfoMessage(&#8220;The caller and assigned to should not be same&#8221;);     } })(current, previous); Scenario4:-Show alert &#8220;Manager are same for Caller and Assinged to User&#8221; if the caller&#8217;s managerand assigned to user&#8217;s manager are same for incident. function onSubmit() {     //Type appropriate comment here, and begin script below     var cman = g_form.getReference(&#8220;caller_id&#8221;).manager;     var aman = g_form.getReference(&#8220;assigned_to&#8221;).manager;     if (cman == aman) {         alert(&#8220;Manager are same for caller and assigned to user&#8221;);     } } Scenario 5:-User should not select a user for assinged to field for incident record if user does nothave email id. function onChange(control, oldValue, newValue, isLoading, isTemplate) {     if (isLoading &#124;&#124; newValue === &#8221;) {         return;     }     var email = g_form.getReference(&#8220;assigned_to&#8221;).email;     if (email == &#8220;&#8221;) {         alert(&#8220;You cannot select user that does not have an email id&#8221;);                                 g_form.clearValue(&#8220;assigned_to&#8221;);     }     //Type appropriate comment here, and begin script below } Scenario6:-Make state readonly if loggedin user and caller are same on incident form. function onChange(control, oldValue, newValue, isLoading, isTemplate) {     if (isLoading &#124;&#124; newValue === &#8221;) {         return;     }     var user = g_user.firstName + &#8221; &#8221; + g_user.lastName;     var caller = g_form.getReference(&#8220;caller_id&#8221;).name;     if (user == caller) {         g_form.setReadOnly(&#8220;state&#8221;, true);     }     //Type appropriate comment here, and begin script below } Scenario7:-Make state readonly if state=New on incident form. Using UI Policy Scenario8:-Set Assinged to= Pavan if category=Network. function onChange(control, oldValue, newValue, isLoading, isTemplate) {     if (isLoading &#124;&#124; newValue === &#8221;) {         return;     }     if (newValue==&#8221;network&#8221;) {        g_form.setValue(&#8220;assigned_to&#8221;,&#8221;Pavan&#8221;);     }     //Type appropriate comment here, and begin script below } Scenario 9:-Show alert if the state changed from Resolved to In Progress. function onChange(control, oldValue, newValue, isLoading, isTemplate) {     if (isLoading &#124;&#124; newValue === &#8221;) {         return;     }     if (oldValue == 6 &#38;&#38; newValue == 2) {         alert(&#8220;The state has now changed from Resolved to In Progress.&#8221;);     }     //Type appropriate comment here, and begin script below } Scenario10:-Whenever caller changed the comment field for incident set state=In Porogress. function onChange(control, oldValue, newValue, isLoading, isTemplate) {     if (isLoading &#124;&#124; newValue === &#8221;) {         return;     }     var user = (g_user.firstName);     var caller = g_form.getReference(&#8220;caller_id&#8221;).first_name;     if (user == caller) {         g_form.setValue(&#8220;state&#8221;,2);     }     //Type appropriate comment here, and begin script below } Scenario 11:User should not change the state from Resolved to In Progress without putting commenton incident form. function onChange(control, oldValue, newValue, isLoading, isTemplate) {     if (isLoading &#124;&#124; newValue === &#8221;) {         return;     }     if (oldValue != 6 ;&#38; newValue != 2)         return;     g_form.setMandatory(&#8216;comments&#8217;, true); } Scenario 12:-  Show Comment and worknote value in AddINFO message after insert or update ofincident record. (function executeRule(current, previous /*null when async*/ ) {     // Add your code here     var worknote = current.work_notes.getJournalEntry(1);     var worknoteContent = worknote.split(&#8220;(Work notes)n&#8221;);     var lastWorknote = worknoteContent[1];     var comment = current.comments.getJournalEntry(1);     var commentContent = comment.split(&#8220;(Additional comments)n&#8221;);     var lastComment = commentContent[1];     gs.addInfoMessage(&#8220;The additional comments are: &#8221; + lastComment + &#8221; &#60;br/&#62;&#60;br/&#62;The Work Notes are: &#8221; + lastWorknote); })(current, previous); Scenario13:-Caller user should not have access to Assignment group and Assigned to field onincident form. If user is caller is logged in user he will have assignment group and assigned to as read only function onChange(control, oldValue, newValue, isLoading, isTemplate) {     if (isLoading &#124;&#124; newValue === &#8221;) {         return;     }     var user = (g_user.firstName);     var caller = g_form.getReference(&#8220;caller_id&#8221;).first_name;     if (user == caller) {         g_form.setReadOnly(&#8220;assigned_to&#8221;, true);         g_form.setReadOnly(&#8220;assignment_group&#8221;, true);     } } Scenario 14:- User should see &#8220;xxx-xxx-xxxx&#8221; in short description on form whenever short descriptioncontains mobile number. function onSubmit() {     //Type appropriate comment here, and begin script below     var value = g_form.getValue(&#8220;short_description&#8221;);     var re = /^[0-9]{10}$/;     if (!re.test(value)) {         g_form.setValue(&#8216;short_description&#8217;, &#8216; xxx-xxx-xxxx&#8217;);         //         var res = value.replace(re, &#8220;xxx-xxx-xxxx&#8221;);         //         g_form.setValue(&#8220;short_description&#8221;, res);     } Scenario 15:- User should not submit the incident form without setting short description anddescription field values. Set the short description and description as mandatory fields. Scenario16:-Show alert if current loggedin user is member of particular group (Database). Display Business Rule (function executeRule(current, previous /*null when async*/ ) {     // Add your code here     // var groupID = current.assignment_group;     var groupName = &#8220;Database&#8221;;     var userID = gs.getUserID();     var gr = new GlideRecord(&#8220;sys_user_grmember&#8221;);     gr.addQuery(&#8220;group.name&#8221;, groupName);     gr.addQuery(&#8220;user&#8221;, userID);     gr.query();     if (gr.next()) {         g_scratchpad.grp = true} })(current, previous); On load Client Script function onLoad() {     //Type appropriate comment here, and begin script below     if (g_scratchpad.grp == true) {         alert(&#8220;The user is part of the Database group&#8221;);     } else {         alert(&#8220;The user is not part of the Database group&#8221;);     } } And since the System administrator</p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/practice-examples-in-service-now/">Practice Examples in Service-now</a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="11636" class="elementor elementor-11636" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-8e2e32c e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="8e2e32c" 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-70e9d7c elementor-widget elementor-widget-heading" data-id="70e9d7c" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Practice Examples in Service-now</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-25042cb e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="25042cb" 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-de9bca9 elementor-widget elementor-widget-text-editor" data-id="de9bca9" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<div class="col-md-offset-3"><h2>Practice Examples from Shala Master</h2></div><div class="col-md-offset-3"><p><span lang="EN-IN"><strong><u>Scenario1:-</u></strong></span><strong>Cancel the incident form submission if user has typed &#8220;Credit Card&#8221; in short description.<br />(User OnSubmit Client Script)</strong></p><p><img decoding="async" class="alignnone" src="http://shalamaster.com/img/practice_example/img_1.PNG" alt="practice examples in servicenow" width="604" height="342" /></p><p>function onSubmit() {</p><p>   //Type appropriate comment here, and begin script below</p><p>    var desc = g_form.getValue(&#8216;short_description&#8217;).indexOf(&#8220;Credit Card&#8221;) &gt; -1;</p><p>    if ((desc == true)) {</p><p>                        alert(&#8220;Please remove the word &#8216;Credit Card&#8217; from your short description to Submit the form&#8221;);</p><p>                        return false;</p><p>}      }</p><p><strong><u>Scenario2:-</u>User should not insert or update the incident record if user has entered &#8220;password&#8221; in<br />work notes or comments.</strong></p><p>(function executeRule(current, previous /*null when async*/) {</p><p>            // Add your code here</p><p>            var worknote = current.work_notes.getJournalEntry(1);</p><p>    var worknoteContent = worknote.split(&#8220;(Work notes)\n&#8221;);</p><p>    var lastWorknote = worknoteContent[1];</p><p>    var comment = current.comments.getJournalEntry(1);</p><p>    var commentContent = comment.split(&#8220;(Additional comments)\n&#8221;);</p><p>    var lastComment = commentContent[1];</p><p>            if(lastWorknote.indexOf(&#8220;password&#8221;)&gt;-1){</p><p>                        current.setAbortAction(true);</p><p>            }</p><p>            if(lastComment.indexOf(&#8220;password&#8221;)&gt;-1){</p><p>                        current.setAbortAction(true);</p><p>            }</p><p>})(current, previous);</p><p><strong><u>Scenario3:-</u>Show AddINFO message &#8220;Caller and Assigned to are same&#8221; if caller and assinged to<br />users are same.</strong></p><p>(function executeRule(current, previous /*null when async*/ ) {</p><p>    // Add your code here</p><p>    if (current.assigned_to.name == current.caller_id.name) {</p><p>        gs.addInfoMessage(&#8220;The caller and assigned to should not be same&#8221;);</p><p>    }</p><p>})(current, previous);</p><p><img decoding="async" class="alignnone" src="http://shalamaster.com/img/practice_example/img_2.PNG" alt="practice examples in servicenow" width="602" height="341" /></p><p><strong><u>Scenario4:-</u>Show alert &#8220;Manager are same for Caller and Assinged to User&#8221; if the caller&#8217;s manager<br />and assigned to user&#8217;s manager are same for incident.</strong></p><p>function onSubmit() {</p><p>    //Type appropriate comment here, and begin script below</p><p>    var cman = g_form.getReference(&#8220;caller_id&#8221;).manager;</p><p>    var aman = g_form.getReference(&#8220;assigned_to&#8221;).manager;</p><p>    if (cman == aman) {</p><p>        alert(&#8220;Manager are same for caller and assigned to user&#8221;);</p><p>    }</p><p>}</p><p><img loading="lazy" decoding="async" class="alignnone" src="http://shalamaster.com/img/practice_example/img_3.PNG" alt="practice examples in servicenow" width="605" height="343" /></p><p><span lang="EN-IN"><strong><u>Scenario 5:-</u></strong></span><strong>User should not select a user for assinged to field for incident record if user does not<br />have email id.</strong></p><p><img loading="lazy" decoding="async" class="alignnone" src="http://shalamaster.com/img/practice_example/img_4.PNG" alt="practice examples in servicenow" width="606" height="344" /></p><p>function onChange(control, oldValue, newValue, isLoading, isTemplate) {</p><p>    if (isLoading || newValue === &#8221;) {</p><p>        return;</p><p>    }</p><p>    var email = g_form.getReference(&#8220;assigned_to&#8221;).email;</p><p>    if (email == &#8220;&#8221;) {</p><p>        alert(&#8220;You cannot select user that does not have an email id&#8221;);</p><p>                                g_form.clearValue(&#8220;assigned_to&#8221;);</p><p>    }</p><p>    //Type appropriate comment here, and begin script below</p><p>}</p><p><strong><u>Scenario6:-</u>Make state readonly if loggedin user and caller are same on incident form.</strong></p><p>function onChange(control, oldValue, newValue, isLoading, isTemplate) {</p><p>    if (isLoading || newValue === &#8221;) {</p><p>        return;</p><p>    }</p><p>    var user = g_user.firstName + &#8221; &#8221; + g_user.lastName;</p><p>    var caller = g_form.getReference(&#8220;caller_id&#8221;).name;</p><p>    if (user == caller) {</p><p>        g_form.setReadOnly(&#8220;state&#8221;, true);</p><p>    }</p><p>    //Type appropriate comment here, and begin script below</p><p>}</p><p><img decoding="async" src="http://shalamaster.com/img/practice_example/img_5.PNG" /></p><p><span lang="EN-IN"><strong><u>Scenario7:-</u></strong></span><strong>Make state readonly if state=New on incident form.</strong></p><p><span lang="EN-IN">Using UI Policy</span></p><p><img loading="lazy" decoding="async" class="alignnone" src="http://shalamaster.com/img/practice_example/img_6.PNG" alt="practice examples in servicenow" width="604" height="342" /></p><p><img decoding="async" src="http://shalamaster.com/img/practice_example/img_7.PNG" /></p><p><strong><u>Scenario8:-</u>Set Assinged to= Pavan if category=Network.</strong></p><p>function onChange(control, oldValue, newValue, isLoading, isTemplate) {</p><p>    if (isLoading || newValue === &#8221;) {</p><p>        return;</p><p>    }</p><p>    if (newValue==&#8221;network&#8221;) {</p><p>       g_form.setValue(&#8220;assigned_to&#8221;,&#8221;Pavan&#8221;);</p><p>    }</p><p>    //Type appropriate comment here, and begin script below</p><p>}</p><p><img loading="lazy" decoding="async" class="alignnone" src="http://shalamaster.com/img/practice_example/img_8.PNG" alt="practice examples in servicenow" width="603" height="343" /></p><p><strong><u>Scenario 9:-</u>Show alert if the state changed from Resolved to In Progress.</strong></p><p>function onChange(control, oldValue, newValue, isLoading, isTemplate) {</p><p>    if (isLoading || newValue === &#8221;) {</p><p>        return;</p><p>    }</p><p>    if (oldValue == 6 &amp;&amp; newValue == 2) {</p><p>        alert(&#8220;The state has now changed from Resolved to In Progress.&#8221;);</p><p>    }</p><p>    //Type appropriate comment here, and begin script below</p><p>}</p><p><img loading="lazy" decoding="async" class="alignnone" src="http://shalamaster.com/img/practice_example/img_9.PNG" alt="practice examples in servicenow" width="606" height="341" /></p><p><span lang="EN-IN"><strong><u>Scenario10:-</u></strong></span><strong>Whenever caller changed the comment field for incident set state=In Porogress.</strong></p><p><img loading="lazy" decoding="async" class="alignnone" src="http://shalamaster.com/img/practice_example/img_10.PNG" alt="practice examples in servicenow" width="605" height="342" /></p><p>function onChange(control, oldValue, newValue, isLoading, isTemplate) {</p><p>    if (isLoading || newValue === &#8221;) {</p><p>        return;</p><p>    }</p><p>    var user = (g_user.firstName);</p><p>    var caller = g_form.getReference(&#8220;caller_id&#8221;).first_name;</p><p>    if (user == caller) {</p><p>        g_form.setValue(&#8220;state&#8221;,2);</p><p>    }</p><p>    //Type appropriate comment here, and begin script below</p><p>}</p><p><strong><u>Scenario 11:</u>User should not change the state from Resolved to In Progress without putting comment<br />on incident form.</strong></p><p>function onChange(control, oldValue, newValue, isLoading, isTemplate) {</p><p>    if (isLoading || newValue === &#8221;) {</p><p>        return;</p><p>    }</p><p>    if (oldValue != 6 ;&amp; newValue != 2)</p><p>        return;</p><p>    g_form.setMandatory(&#8216;comments&#8217;, true);</p><p>}</p><p><img loading="lazy" decoding="async" class="alignnone" src="http://shalamaster.com/img/practice_example/img_11.PNG" alt="practice examples in servicenow" width="604" height="342" /></p><p><strong><u>Scenario 12:-</u>  Show Comment and worknote value in AddINFO message after insert or update of<br />incident record.</strong></p><p>(function executeRule(current, previous /*null when async*/ ) {</p><p>    // Add your code here</p><p>    var worknote = current.work_notes.getJournalEntry(1);</p><p>    var worknoteContent = worknote.split(&#8220;(Work notes)\n&#8221;);</p><p>    var lastWorknote = worknoteContent[1];</p><p>    var comment = current.comments.getJournalEntry(1);</p><p>    var commentContent = comment.split(&#8220;(Additional comments)\n&#8221;);</p><p>    var lastComment = commentContent[1];</p><p>    gs.addInfoMessage(&#8220;The additional comments are: &#8221; + lastComment + &#8221; &lt;br/&gt;&lt;br/&gt;The Work Notes are: &#8221; + lastWorknote);</p><p>})(current, previous);</p><p><img loading="lazy" decoding="async" class="alignnone" src="http://shalamaster.com/img/practice_example/img_12.PNG" alt="practice examples in servicenow" width="602" height="348" /></p><p><strong><u>Scenario13:-</u>Caller user should not have access to Assignment group and Assigned to field on<br />incident form.</strong></p><p>If user is caller is logged in user he will have assignment group and assigned to as read only</p><p><img loading="lazy" decoding="async" class="alignnone" src="http://shalamaster.com/img/practice_example/img_13.PNG" alt="practice examples in servicenow" width="602" height="342" /></p><p>function onChange(control, oldValue, newValue, isLoading, isTemplate) {</p><p>    if (isLoading || newValue === &#8221;) {</p><p>        return;</p><p>    }</p><p>    var user = (g_user.firstName);</p><p>    var caller = g_form.getReference(&#8220;caller_id&#8221;).first_name;</p><p>    if (user == caller) {</p><p>        g_form.setReadOnly(&#8220;assigned_to&#8221;, true);</p><p>        g_form.setReadOnly(&#8220;assignment_group&#8221;, true);</p><p>    }</p><p>}</p><p><strong><u>Scenario 14:- </u>User should see &#8220;xxx-xxx-xxxx&#8221; in short description on form whenever short description<br />contains mobile number.</strong></p><p><img decoding="async" src="http://shalamaster.com/img/practice_example/img_14.PNG" /></p><p>function onSubmit() {</p><p>    //Type appropriate comment here, and begin script below</p><p>    var value = g_form.getValue(&#8220;short_description&#8221;);</p><p>    var re = /^[0-9]{10}$/;</p><p>    if (!re.test(value)) {</p><p>        g_form.setValue(&#8216;short_description&#8217;, &#8216; xxx-xxx-xxxx&#8217;);</p><p>        //         var res = value.replace(re, &#8220;xxx-xxx-xxxx&#8221;);</p><p>        //         g_form.setValue(&#8220;short_description&#8221;, res);</p><p>    }</p><p><u><span lang="EN-IN"><strong>Scenario 15:-</strong></span></u><strong> User should not submit the incident form without setting short description and<br />description field values.</strong></p><p><span lang="EN-IN">Set the short description and description as mandatory fields.</span></p><p><img decoding="async" src="http://shalamaster.com/img/practice_example/img_15.PNG" /></p><p><img decoding="async" src="http://shalamaster.com/img/practice_example/img_16.PNG" /></p><p><span lang="EN-IN"><strong><u>Scenario16:-</u></strong></span><strong>Show alert if current loggedin user is member of particular group (Database).</strong></p><p><span lang="EN-IN">Display Business Rule</span></p><p><img decoding="async" src="http://shalamaster.com/img/practice_example/img_17.PNG" /></p><p>(function executeRule(current, previous /*null when async*/ ) {</p><p>    // Add your code here</p><p>    // var groupID = current.assignment_group;</p><p>    var groupName = &#8220;Database&#8221;;</p><p>    var userID = gs.getUserID();</p><p>    var gr = new GlideRecord(&#8220;sys_user_grmember&#8221;);</p><p>    gr.addQuery(&#8220;group.name&#8221;, groupName);</p><p>    gr.addQuery(&#8220;user&#8221;, userID);</p><p>    gr.query();</p><p>    if (gr.next()) {</p><p>        g_scratchpad.grp = true}</p><p>})(current, previous);</p><p><span lang="EN-IN">On load Client Script</span></p><p><img decoding="async" src="http://shalamaster.com/img/practice_example/img_18.PNG" /></p><p>function onLoad() {</p><p>    //Type appropriate comment here, and begin script below</p><p>    if (g_scratchpad.grp == true) {</p><p>        alert(&#8220;The user is part of the Database group&#8221;);</p><p>    } else {</p><p>        alert(&#8220;The user is not part of the Database group&#8221;);</p><p>    }</p><p>}</p><p>And since the System administrator i.e. the current logged in user is part of the database group.</p><p>We will get an alert saying “The user is part of the Database group”</p><p><img decoding="async" src="http://shalamaster.com/img/practice_example/img_19.PNG" /></p></div>								</div>
					</div>
				</div>
				</div>
		<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/practice-examples-in-service-now/">Practice Examples in Service-now</a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/practice-examples-in-service-now/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Update Sets in Service-now</title>
		<link>https://logiupskills.com/update-sets-in-service-now/</link>
					<comments>https://logiupskills.com/update-sets-in-service-now/#respond</comments>
		
		<dc:creator><![CDATA[Samiksha Ingale]]></dc:creator>
		<pubDate>Sat, 03 Jan 2026 09:54:13 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://logiupskills.com/?p=11061</guid>

					<description><![CDATA[<p>Update Sets in Service-now Update Sets 1. Update sets are used to capture the configuration data of a table. Update sets can be used to migrate the configuration data that has been done from one instance to another instance (example: from developer instance to test instance).   Configuration Data- Creating tables, fields, business rules, client scripts, choices etc. Normally we will consider the data in system tables, we consider as a configuration data.Normal Data: Creating records in incident, problem, user tables. Update_Synch table attribute 2. The tables for which UPDATE SYNCH attribute value will be true only for those tables the configuration data will be captured. 3. Since XML import and export can be used to migrate only one entry at a time, hence we use update sets which are capable of migrating the configuration records of multiple table at same time. 4. To create update setsGo to navigation -&#62; update sets -&#62; local update set -&#62; new  Difference between Submit and Submit and make current: If we want to create the update set we can use the submit button but if we use submit and make current that update set will be created and will be made current i.e it will capture the modifications from that point of time.  Retrieved Update set: To obtain the captured information from other users update sets we can use this option. Steps: -&#62; Go to update source in navigation search -&#62; New -&#62; Enter the values in fields &#8211; &#62;Name: Other users update set name. &#8211; &#62;URL: other users URL &#8211; &#62;Username and Password: Other User’s credentials  Preview update set : To check whether the update set have been retried successfully or not.If successfully retrieved we can commit the changes and if there are any other errors it has to be rectified before the commit option can be used. &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. Customer are not able to add the update_synch attribute on custom table, seems like user need to contact Servicenow only.</p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/update-sets-in-service-now/">Update Sets in Service-now</a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="11061" class="elementor elementor-11061" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-8700def e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="8700def" 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-49dd9f9 elementor-widget elementor-widget-heading" data-id="49dd9f9" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Update Sets in Service-now</h2>				</div>
				<div class="elementor-element elementor-element-0409765 elementor-widget elementor-widget-text-editor" data-id="0409765" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<div class="container text-dark"><div class="row"><div class="col"><strong>Update Sets</strong><br /><br /><br />1. Update sets are used to capture the configuration data of a table. Update sets can be used to migrate the configuration data that has been done from one instance to another instance (example: from developer instance to test instance).<br /><br /><br />  Configuration Data- Creating tables, fields, business rules, client scripts, choices etc. Normally we will consider the data in system tables, we consider as a configuration data.<br />Normal Data: Creating records in incident, problem, user tables.<br /><br /><br /><strong>Update_Synch table attribute</strong><br /><br /><br />2. The tables for which <strong>UPDATE SYNCH</strong> attribute value will be true only for those tables the configuration data will be captured.<br /><br /><br />3. Since XML import and export can be used to migrate only one entry at a time, hence we use update sets which are capable of migrating the configuration records of multiple table at same time.<br /><br /><br />4. To create update sets<br />Go to navigation -&gt; update sets -&gt; local update set -&gt; new<br /><br /><br /> Difference between Submit and Submit and make current: If we want to create the update set we can use the submit button but if we use submit and make current that update set will be created and will be made current i.e it will capture the modifications from that point of time.<br /><br /><br /><strong> Retrieved Update set:</strong><br /><br /><br />To obtain the captured information from other users update sets we can use this option.<br /><br />Steps: -&gt; Go to update source in navigation search -&gt; New -&gt; Enter the values in fields &#8211; &gt;Name: Other users update set name. &#8211; &gt;URL: other users URL &#8211; &gt;Username and Password: Other User’s credentials<br /><br /><br /><strong> Preview update set :</strong><br /><br /><br />To check whether the update set have been retried successfully or not.If successfully retrieved we can commit the changes and if there are any other errors it has to be rectified before the commit option can be used.<br /><br /><br />&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;..<br /><br /><br />Customer are not able to add the update_synch attribute on custom table, seems like user need to contact Servicenow only.</div></div></div>								</div>
					</div>
				</div>
				</div>
		<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/update-sets-in-service-now/">Update Sets in Service-now</a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/update-sets-in-service-now/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>ServiceNow Entity</title>
		<link>https://logiupskills.com/servicenow-entity/</link>
					<comments>https://logiupskills.com/servicenow-entity/#respond</comments>
		
		<dc:creator><![CDATA[Samiksha Ingale]]></dc:creator>
		<pubDate>Tue, 09 Dec 2025 05:26:30 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://devlogiupskill.comingsolutions.com/?p=8096</guid>

					<description><![CDATA[<p>ServiceNow GRC Entity 1.  Introduction: An Entity is a &#8220;person, place, object, or thing&#8221; that is tracked for risk, compliance, and audit purposes. Entities act as the fundamental building blocks for GRC activities, and they represent the specific components within an organization that are subject to controls and policies.  Examples: Examples of entities include business applications, departments, locations, or even specific IT assets like a server or a database. 2.  Roles Required: To create and manage entities, the following ServiceNow GRC Roles are required: User role Description sn_grc_ent_access.admin Role that is part of the Entity Based Access application. Assign this role to users who need to enable or disable the Entity based access on record types related to entity property and configure Entity Based Access. sn_grc_ent_access.reader Role that is part of the Entity Based Access application. Assign this role to users who require read access to the Entity Based Access configuration. sn_grc_ent_access.bulk_access_config_admin Role that is part of the Entity Based Access application. Assign this role to users who need write and update access to the bulk access update configuration. sn_grc_ent_access.bulk_access_config_reader Role that is part of the Entity Based Access application. Assign this role to users who require read access to the bulk access update configuration. sn_grc.eba_restriction_field_editor Role that is part of the Entity Based Access application. Assign this role to users who require write and update access to the Entity based access restriction field on issue records.     3.  Entity Framework Architecture This diagram shows how the GRC Entity Framework organizes business components in a clear structure. Entity Classes set the blueprint, rules, and structure for entities. Each entity has a level in the Entity Tier or Dependency Model, which shows where it fits in the organization. Entities are the real examples created from these classes, like a business unit or department. Entity Type defines the role of each entity, and the Entity Filter helps group or select entities based on their attributes. Together, these parts make it easy to manage and organize all entities in the system. 4.     Entity Types and Filters Entities that belong to more than one Entity Type are linked to all relevant types automatically without creating duplicates. Entity Types: These are the top-level categories used to organize entities in ServiceNow. Examples include: Regions Departments Applications Business Units ServiceNow TablesEach Entity Type is linked to a ServiceNow table that stores its records: Regions → Regions table Departments → Department table Applications → Business Applications table Business Units → Business Unit table EntitiesEntities are the actual records created from these tables. Examples: Regions: EMEA, APAC, AMERICAS Departments: Finance, Sales, Marketing Applications: ServiceNow, SAP Finance, MS Office Business Units: Finance BU, Sales BU, Marketing BU, HR BU In above diagram the Content is: Entity Type: Finance DepartmentsTable: DepartmentFilter Condition: Parent is Finance This selects only departments under Finance and creates entities such as Tax, Payroll, Accounts, and Revenue. These entities help manage business activities focused on Finance departments. 5.  Example: We want to create a Business Unit Entity for the Finance – Accounts Payable Department in ServiceNow GRC. Step 1: Go to Entity Type- Navigate to Entity type Entity:  A distinct, unique object or concept in the real world about which information is stored and managed. Examples include a specific person, a particular product, or a unique organization. In a database context, an entity often corresponds to a row in a table. Step 2: Select Entity Type- Entity Type:  A classification or category that defines the common characteristics, attributes, and behavior of a group of entities. It acts as a blueprint or template for individual entities. For instance, &#8220;Person,&#8221; &#8220;Product,&#8221; or &#8220;Organization&#8221; would be entity types, and specific individuals, products, or organizations would be instances (entities) of those types. Field Description Name Name of the entity type. Active Option to set the entity type as active. Compliance score (%) Compliance score of the entity type. The value is a percentage. This field is automatically set. Description Description of the entity type.         Save. Step 3: Apply Entity Filter- Entity Filter:  The Entity filters tab displays the following information: Entity filter type: Entity filter type such as Build your own conditions or select from predefined queries. Table: Table that contains the records to be queried, such as sn_audit_advanced_auditable_unit. Filter condition: Filter conditions for the source table to generate entities. Use owner field: Use the default owner to assign risks to a single user when the owner field is empty. Owner field: Person who owns any new entities generated from the entity type. Identify the user reference field on the source table to automatically identify risk and control owners. Click on New: Put filter conditions here After that click on Assignments and give fill all Mandatory Information: Assignments:  This refers to the process of associating entities with their respective entity types and entity classes, often facilitated by entity filters and rules. This assignment ensures that entities are correctly categorized and linked to relevant GRC policies, controls, and risk assessments. Step 4: Assign Entity Class- Entity Class:  Similar to an entity type, an entity class represents a collection of entities that share the same attributes and confirm to a defined structure. It can also refer to a programming construct (like a class in object-oriented programming) that models the structure and behavior of an entity within a system, often mapping to a database table. Step 5: Fill Mandatory Fields- Mandatory Field Empty Owner: Default Owner: The person or team who automatically owns the record when it is created. Do Not Create: Stops the record from being made if something is missing or not correct. Save. Click on Update Entities from Filters to automatically create entities based on the filter conditions. Step 6: Auto-Create Entities (If Using Filter)- 6.  Conclusion: Auto-creating entities with filter conditions make the process faster and reduces manual work. The filter selects all matching records, and the system creates the entities automatically, ensuring accuracy and consistency. This helps keep your GRC entity structure clean, organized, and up to date.</p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/servicenow-entity/">ServiceNow Entity</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="8096" class="elementor elementor-8096" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-8f355a7 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="8f355a7" 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-57e24e4 elementor-widget elementor-widget-heading" data-id="57e24e4" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">ServiceNow GRC Entity</h2>				</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-f89ee1d e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="f89ee1d" 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-47e5a1d elementor-widget elementor-widget-text-editor" data-id="47e5a1d" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h3><strong>1. </strong><strong> <a name="_Toc1901896818"></a>Introduction:</strong></h3><p>An <strong>Entity</strong> is a &#8220;person, place, object, or thing&#8221; that is tracked for risk, compliance, and audit purposes. Entities act as the fundamental building blocks for GRC activities, and they represent the specific components within an organization that are subject to controls and policies. </p><p><strong>Examples:</strong> Examples of entities include business applications, departments, locations, or even specific IT assets like a server or a database.</p><h3><strong>2. </strong><strong> <a name="_Toc1337936714"></a>Roles Required:</strong></h3><p>To create and manage entities, the following <strong>ServiceNow GRC Roles</strong> are required:</p><table><tbody><tr><td width="290"><p><strong>User role</strong></p></td><td width="297"><p><strong>Description</strong></p></td></tr><tr><td width="290"><p>sn_grc_ent_access.admin</p></td><td width="297"><p>Role that is part of the Entity Based Access application.</p><p>Assign this role to users who need to enable or disable the Entity based access on record types related to entity property and configure Entity Based Access.</p></td></tr><tr><td width="290"><p>sn_grc_ent_access.reader</p></td><td width="297"><p>Role that is part of the Entity Based Access application.</p><p>Assign this role to users who require read access to the Entity Based Access configuration.</p></td></tr><tr><td width="290"><p>sn_grc_ent_access.bulk_access_config_admin</p></td><td width="297"><p>Role that is part of the Entity Based Access application.</p><p>Assign this role to users who need write and update access to the bulk access update configuration.</p></td></tr><tr><td width="290"><p>sn_grc_ent_access.bulk_access_config_reader</p></td><td width="297"><p>Role that is part of the Entity Based Access application.</p><p>Assign this role to users who require read access to the bulk access update configuration.</p></td></tr><tr><td width="290"><p>sn_grc.eba_restriction_field_editor</p></td><td width="297"><p>Role that is part of the Entity Based Access application.</p><p>Assign this role to users who require write and update access to the Entity based access restriction field on issue records.</p></td></tr><tr><td width="290"> </td><td width="297"> </td></tr></tbody></table><h3><a name="_Toc440090442"></a><strong>3.  </strong><strong>Entity Framework Architecture</strong></h3>								</div>
				<div class="elementor-element elementor-element-30f82ec elementor-widget elementor-widget-image" data-id="30f82ec" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="361" src="https://logiupskills.com/wp-content/uploads/2025/12/Entity-Framework-Architecture-1024x578.jpg" class="attachment-large size-large wp-image-8100" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/Entity-Framework-Architecture-1024x578.jpg 1024w, https://logiupskills.com/wp-content/uploads/2025/12/Entity-Framework-Architecture-300x169.jpg 300w, https://logiupskills.com/wp-content/uploads/2025/12/Entity-Framework-Architecture-768x433.jpg 768w, https://logiupskills.com/wp-content/uploads/2025/12/Entity-Framework-Architecture.jpg 1028w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-77f64ba e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="77f64ba" 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-4cc96d3 elementor-widget elementor-widget-text-editor" data-id="4cc96d3" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>This diagram shows how the GRC Entity Framework organizes business components in a clear structure. <strong>Entity Classes</strong> set the blueprint, rules, and structure for entities. Each entity has a level in the <strong>Entity Tier or Dependency Model</strong>, which shows where it fits in the organization. <strong>Entities</strong> are the real examples created from these classes, like a business unit or department. <strong>Entity Type</strong> defines the role of each entity, and the <strong>Entity Filter</strong> helps group or select entities based on their attributes. Together, these parts make it easy to manage and organize all entities in the system.</p><h3>4<a name="_Toc423395827"></a><strong>.     </strong>Entity Types and Filters</h3>								</div>
				<div class="elementor-element elementor-element-12a88ef elementor-widget elementor-widget-image" data-id="12a88ef" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="592" height="492" src="https://logiupskills.com/wp-content/uploads/2025/12/Entity-types-and-filters.png" class="attachment-large size-large wp-image-8101" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/Entity-types-and-filters.png 592w, https://logiupskills.com/wp-content/uploads/2025/12/Entity-types-and-filters-300x249.png 300w" sizes="(max-width: 592px) 100vw, 592px" />															</div>
				<div class="elementor-element elementor-element-5c9b01d elementor-widget elementor-widget-text-editor" data-id="5c9b01d" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>Entities that belong to more than one Entity Type are <strong>linked to all relevant types automatically</strong> without creating duplicates.</p><p><strong>Entity Types:</strong></p><p>These are the top-level categories used to organize entities in ServiceNow. Examples include:</p><ul><li><strong>Regions</strong></li><li><strong>Departments</strong></li><li><strong>Applications</strong></li><li><strong>Business Units</strong></li></ul><p><strong>ServiceNow Tables</strong><br />Each Entity Type is linked to a ServiceNow table that stores its records:</p><ul><li>Regions → <em>Regions table</em></li><li>Departments → <em>Department table</em></li><li>Applications → <em>Business Applications table</em></li><li>Business Units → <em>Business Unit table</em></li></ul><p><strong>Entities</strong><br />Entities are the actual records created from these tables. Examples:</p><ul><li><strong>Regions:</strong> EMEA, APAC, AMERICAS</li><li><strong>Departments:</strong> Finance, Sales, Marketing</li><li><strong>Applications:</strong> ServiceNow, SAP Finance, MS Office</li><li><strong>Business Units:</strong> Finance BU, Sales BU, Marketing BU, HR BU</li></ul>								</div>
				<div class="elementor-element elementor-element-76faf96 elementor-widget elementor-widget-image" data-id="76faf96" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="561" height="366" src="https://logiupskills.com/wp-content/uploads/2025/12/Diagram-3.png" class="attachment-large size-large wp-image-8102" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/Diagram-3.png 561w, https://logiupskills.com/wp-content/uploads/2025/12/Diagram-3-300x196.png 300w" sizes="(max-width: 561px) 100vw, 561px" />															</div>
				<div class="elementor-element elementor-element-e17f14d elementor-widget elementor-widget-text-editor" data-id="e17f14d" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><em>In above diagram the Content is:</em></p><p><strong>Entity Type:</strong> Finance Departments<br /><strong>Table:</strong> Department<br /><strong>Filter Condition:</strong> Parent is Finance</p><p>This selects only departments under Finance and creates entities such as Tax, Payroll, Accounts, and Revenue. These entities help manage business activities focused on Finance departments.</p><h3><strong>5. </strong><strong> <a name="_Toc2066820895"></a>Example:</strong></h3><p>We want to create a Business Unit Entity for the Finance – Accounts Payable Department in ServiceNow GRC.</p><p><a name="_Toc1022914854"></a><strong>Step 1: Go to Entity Type-</strong></p><p>Navigate to <strong>Entity type </strong></p><p><strong>Entity: </strong></p><p><strong>A distinct, unique object or concept in the real world about which information is stored and managed. Examples include a specific person, a particular product, or a unique organization. In a database context, an entity often corresponds to a row in a table.</strong></p><p><a name="_Toc1685978524"></a><strong>Step 2: Select Entity Type-</strong></p><ul><li><strong>Entity Type: </strong></li></ul><p>A classification or category that defines the common characteristics, attributes, and behavior of a group of entities. It acts as a blueprint or template for individual entities. For instance, &#8220;Person,&#8221; &#8220;Product,&#8221; or &#8220;Organization&#8221; would be entity types, and specific individuals, products, or organizations would be instances (entities) of those types.</p><table><tbody><tr><td width="184"><p><strong>Field</strong></p></td><td width="440"><p><strong>Description</strong></p></td></tr><tr><td width="184"><p>Name</p></td><td width="440"><p>Name of the entity type.</p></td></tr><tr><td width="184"><p>Active</p></td><td width="440"><p>Option to set the entity type as active.</p></td></tr><tr><td width="184"><p>Compliance score (%)</p></td><td width="440"><p>Compliance score of the entity type. The value is a percentage. This field is automatically set.</p></td></tr><tr><td width="184"><p>Description</p></td><td width="440"><p>Description of the entity type.</p></td></tr><tr><td width="184"> </td><td width="440"> </td></tr><tr><td width="184"> </td><td width="440"> </td></tr></tbody></table>								</div>
				<div class="elementor-element elementor-element-dbb2860 elementor-widget elementor-widget-image" data-id="dbb2860" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="183" src="https://logiupskills.com/wp-content/uploads/2025/12/Picture1.png" class="attachment-large size-large wp-image-8103" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/Picture1.png 624w, https://logiupskills.com/wp-content/uploads/2025/12/Picture1-300x88.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-f20ee5c e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="f20ee5c" 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-42af744 elementor-widget elementor-widget-image" data-id="42af744" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="203" src="https://logiupskills.com/wp-content/uploads/2025/12/Picture2.png" class="attachment-large size-large wp-image-8104" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/Picture2.png 624w, https://logiupskills.com/wp-content/uploads/2025/12/Picture2-300x98.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-c6deaeb elementor-widget elementor-widget-text-editor" data-id="c6deaeb" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>Save.</p><p><a name="_Toc473932375"></a><strong>Step 3: Apply Entity Filter-</strong></p><ul><li><strong>Entity Filter: </strong></li></ul><p>The <strong>Entity filters</strong> tab displays the following information:</p><p><strong>Entity filter type:</strong> Entity filter type such as Build your own conditions or select from predefined queries.</p><p><strong>Table:</strong> Table that contains the records to be queried, such as sn_audit_advanced_auditable_unit.</p><p><strong>Filter condition:</strong> Filter conditions for the source table to generate entities.</p><p><strong>Use owner field</strong>: Use the default owner to assign risks to a single user when the owner field is empty.</p><p><strong>Owner field</strong>: Person who owns any new entities generated from the entity type. Identify the user reference field on the source table to automatically identify risk and control owners.</p>								</div>
				<div class="elementor-element elementor-element-b272153 elementor-widget elementor-widget-image" data-id="b272153" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="295" src="https://logiupskills.com/wp-content/uploads/2025/12/Picture3.png" class="attachment-large size-large wp-image-8105" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/Picture3.png 624w, https://logiupskills.com/wp-content/uploads/2025/12/Picture3-300x142.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-d6e3594 elementor-widget elementor-widget-text-editor" data-id="d6e3594" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><strong>Click on New:</strong></p><p>Put filter conditions here</p>								</div>
				<div class="elementor-element elementor-element-0604a77 elementor-widget elementor-widget-image" data-id="0604a77" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="256" src="https://logiupskills.com/wp-content/uploads/2025/12/Picture4.png" class="attachment-large size-large wp-image-8106" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/Picture4.png 624w, https://logiupskills.com/wp-content/uploads/2025/12/Picture4-300x123.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-177ab9b elementor-widget elementor-widget-text-editor" data-id="177ab9b" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>After that click on Assignments and give fill all Mandatory Information:</p><ul><li><strong>Assignments: </strong></li></ul><p>This refers to the process of associating entities with their respective entity types and entity classes, often facilitated by entity filters and rules. This assignment ensures that entities are correctly categorized and linked to relevant GRC policies, controls, and risk assessments<strong>.</strong></p><p><a name="_Toc1728672870"></a><strong>Step 4: Assign Entity Class-</strong></p><ul><li><strong>Entity Class: </strong></li></ul><p>Similar to an entity type, an entity class represents a collection of entities that share the same attributes and confirm to a defined structure. It can also refer to a programming construct (like a class in object-oriented programming) that models the structure and behavior of an entity within a system, often mapping to a database table.</p><p><a name="_Toc1713567856"></a><strong>Step 5: Fill Mandatory Fields-</strong></p>								</div>
				<div class="elementor-element elementor-element-63c46e3 elementor-widget elementor-widget-image" data-id="63c46e3" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="258" src="https://logiupskills.com/wp-content/uploads/2025/12/Picture5.png" class="attachment-large size-large wp-image-8107" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/Picture5.png 624w, https://logiupskills.com/wp-content/uploads/2025/12/Picture5-300x124.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-969eb2f elementor-widget elementor-widget-text-editor" data-id="969eb2f" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>Mandatory Field Empty Owner:</p>								</div>
				<div class="elementor-element elementor-element-c263606 elementor-widget elementor-widget-image" data-id="c263606" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="602" height="273" src="https://logiupskills.com/wp-content/uploads/2025/12/Picture6.png" class="attachment-large size-large wp-image-8108" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/Picture6.png 602w, https://logiupskills.com/wp-content/uploads/2025/12/Picture6-300x136.png 300w" sizes="(max-width: 602px) 100vw, 602px" />															</div>
				<div class="elementor-element elementor-element-e57749c elementor-widget elementor-widget-text-editor" data-id="e57749c" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><strong>Default Owner: </strong>The person or team who automatically owns the record when it is created.</p><p><strong>Do Not Create</strong>: Stops the record from being made if something is missing or not correct.</p>								</div>
				<div class="elementor-element elementor-element-8d8c6ed elementor-widget elementor-widget-image" data-id="8d8c6ed" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="602" height="262" src="https://logiupskills.com/wp-content/uploads/2025/12/Picture7.png" class="attachment-large size-large wp-image-8109" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/Picture7.png 602w, https://logiupskills.com/wp-content/uploads/2025/12/Picture7-300x131.png 300w" sizes="(max-width: 602px) 100vw, 602px" />															</div>
				<div class="elementor-element elementor-element-0f76f03 elementor-widget elementor-widget-text-editor" data-id="0f76f03" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>Save.</p>								</div>
				<div class="elementor-element elementor-element-a5cd333 elementor-widget elementor-widget-image" data-id="a5cd333" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="309" src="https://logiupskills.com/wp-content/uploads/2025/12/Picture8.png" class="attachment-large size-large wp-image-8110" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/Picture8.png 624w, https://logiupskills.com/wp-content/uploads/2025/12/Picture8-300x149.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-8f3e4d3 elementor-widget elementor-widget-image" data-id="8f3e4d3" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="354" height="111" src="https://logiupskills.com/wp-content/uploads/2025/12/Picture9.png" class="attachment-large size-large wp-image-8111" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/Picture9.png 354w, https://logiupskills.com/wp-content/uploads/2025/12/Picture9-300x94.png 300w" sizes="(max-width: 354px) 100vw, 354px" />															</div>
				<div class="elementor-element elementor-element-dab4fa3 elementor-widget elementor-widget-text-editor" data-id="dab4fa3" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>Click on <strong><em>Update Entities from Filters</em> </strong>to automatically create entities based on the filter conditions.</p><p><a name="_Toc982574083"></a><strong>Step 6: Auto-Create Entities (If Using Filter)-</strong></p>								</div>
				<div class="elementor-element elementor-element-df233a9 elementor-widget elementor-widget-image" data-id="df233a9" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="323" src="https://logiupskills.com/wp-content/uploads/2025/12/Picture10.png" class="attachment-large size-large wp-image-8112" alt="" srcset="https://logiupskills.com/wp-content/uploads/2025/12/Picture10.png 624w, https://logiupskills.com/wp-content/uploads/2025/12/Picture10-300x155.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-157e440 elementor-widget elementor-widget-text-editor" data-id="157e440" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h3>6<a name="_Toc251018324"></a><strong>.  </strong><strong>Conclusion:</strong></h3><p>Auto-creating entities with filter conditions make the process faster and reduces manual work. The filter selects all matching records, and the system creates the entities automatically, ensuring accuracy and consistency. This helps keep your GRC entity structure clean, organized, and up to date.</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-56a50ca e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="56a50ca" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
					</div>
				</div>
				</div>
		<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/servicenow-entity/">ServiceNow Entity</a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/servicenow-entity/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
