<?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>Uncategorized &#8211; LogiUpSkill</title>
	<atom:link href="https://devlogiupskill.comingsolutions.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>https://devlogiupskill.comingsolutions.com</link>
	<description></description>
	<lastBuildDate>Wed, 07 Jan 2026 15:06:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>

<image>
	<url>https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/11/cropped-Untitled-design-37-32x32.png</url>
	<title>Uncategorized &#8211; LogiUpSkill</title>
	<link>https://devlogiupskill.comingsolutions.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Scripted REST API</title>
		<link>https://devlogiupskill.comingsolutions.com/scripted-rest-api/</link>
					<comments>https://devlogiupskill.comingsolutions.com/scripted-rest-api/#respond</comments>
		
		<dc:creator><![CDATA[Shubham Kumbhar]]></dc:creator>
		<pubDate>Wed, 07 Jan 2026 14:56:55 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://devlogiupskill.comingsolutions.com/?p=10936</guid>

					<description><![CDATA[Scripted REST API INDEX What is Scripted Rest API?&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230; 1 Advantages of Scripted Rest API&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;. 2 Roles Required&#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;. 2 Fields of Scripted Rest API&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230; 3 Difference between Rest API and Scripted Rest API&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;. 3 Error Codes in Scripted REST API&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230; 4 Example&#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;. 4 ​​  1. What is Scripted Rest API? Scripted REST APIs allow developers to create custom web service APIs in ServiceNow. These APIs enable external systems to interact with ServiceNow by defining endpoints, handling requests, and customizing responses beyond standard table APIs. Using Scripted REST APIs, developers can: Define custom endpoints (resources) Configure HTTP methods such as GET, POST, PUT, DELETE Accept and process query parameters, path parameters, headers, and request bodies Write scripts to control request handling, business logic, and response formatting Scripted REST APIs are created and managed using the Scripted REST Service form, available under: Scripted Web Services → Scripted REST APIs This is commonly used for: Integrating ServiceNow with external systems Exposing custom data and business logic Building reusable APIs for scoped applications 2. Advantages of Scripted Rest API It gives full control over how requests and responses work You can add custom business logic using scripts It can work with multiple tables at the same time You can return custom JSON responses It supports secure access using roles and authentication You can handle errors properly with clear messages It supports API versioning for future changes It is best for integrating ServiceNow with external systems 3. Roles Required The role required to create and manage a Scripted REST API in ServiceNow is web_service_admin. 4. Fields of Scripted Rest API Field Name Description Name Friendly name of the Scripted REST API API ID Unique identifier used in the API URI Namespace Application scope where the API is created Active Enables or disables the API Default ACLs Security rules applied to all resources Base Path Base URL path for the API Version API version for managing changes Short Description / Description Explains the purpose of the API Security Configure authentication and access control Content Negotiation Define supported request and response formats (JSON, XML, etc.) Resources Define API endpoints (URI paths) Request Headers Define expected HTTP request headers Query Parameters Define supported query parameters   5. Difference between Rest API and Scripted Rest API REST API Scripted REST API Pre-built APIs provided by ServiceNow Custom APIs created by developers Mainly used for standard CRUD operations Used for custom logic and complex processing Limited customization Fully customizable using server-side scripts Follows strict ServiceNow table structure Can return custom response formats Faster to use for simple integrations Best for complex and non-standard integrations Less control over request/response Full control over headers, parameters, and payload Example: Table API, Attachment API Custom endpoints under Scripted REST APIs No scripting required Requires JavaScript scripting 6. Error Codes in Scripted REST API Error Code Meaning When It Occurs 200 OK Request successful API executed successfully 201 Created Resource created Record created via POST 400 Bad Request Invalid request Missing/invalid parameters or payload 401 Unauthorized Authentication failed Invalid or missing credentials 403 Forbidden Access denied User lacks required role/ACL 404 Not Found Resource not found Invalid endpoint or record 405 Method Not Allowed Invalid HTTP method Method not supported for resource 409 Conflict Duplicate/conflict Record already exists 415 Unsupported Media Type Invalid content type Wrong Content-Type header 500 Internal Server Error Server error Script error or exception 503 Service Unavailable Service down API temporarily unavailable 7. Example A catalog item named User Task Status exists in Instance A, which allows a manager to select a user to view the user’s task details. However, the actual task data (Incidents, Problems, and Change Requests) assigned to the selected user is maintained in Instance B. When the manager selects the User in catalog item in Instance A, the selected user information is sent to Instance B via integration. Instance B processes the request, fetches the count of Incidents, Problems, and Change Requests assigned to the user, and sends the response back to Instance A. The received response is then populated into the User Task Details variable of the catalog item. Steps of Implementation: Step 1: Create a catalog item in instance A 1.1. Create Variables Select User – reference – sys_user User Task Details – Multi Line Text 1.2. Final Catalog Item will Look Like this on Portal Step 2:  Create Scripted REST API in Instance B Create a New Scripted REST API. Navigate to ALL &#62; System Web Services &#62; Scripted REST API’s &#62; New Give a name to new Scripted REST API and fill the mandatory fields as below: 2.1. Create Resource from related list Give name to a New Resource and fill mandatory fields as below: Script &#8211; This script retrieves the user from the request body, fetches the assigned user details from the User table, and returns the data in the response body to Instance A. Step 3: Create REST Message in Instance A Navigate to ALL &#62; System Web Services &#62; Outbound &#62; REST Message &#62; New 3.1. Provide Endpoint and Basic authentication details of Instance B. Give name to REST message and Endpoint of instance B 3.2. Basic Authentication Details Fill username and password details of the instance B 3.3. Create HTTP Method from related list Select HTTP method, Endpoint, HTTP Headers and Query Parameters Step 4: Create Script include to call REST Message in instance A Navigate to ALL &#62; System Definition &#62; Script Include &#62; New Give a name to Script Include as below: Script- This script will fetch the user that is selected on the catalog item, calls the REST message we have created in instance A, and whatever response we get from instance B, script will fetch assignment details for the user. Step 5: Create catalog client script for your catalog item which is created in step 1 Fill the required details like Type, Catalog item, Variable Name and UI Type as below: Script &#8211; This script will get the value of the user from the]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="10936" class="elementor elementor-10936" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-ca73d3f e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="ca73d3f" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-b283795 elementor-widget elementor-widget-heading" data-id="b283795" data-element_type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Scripted REST API </h2>				</div>
				<div class="elementor-element elementor-element-1039de6 elementor-widget elementor-widget-text-editor" data-id="1039de6" data-element_type="widget" data-widget_type="text-editor.default">
									<h3>INDEX</h3><ol><li><a href="#_Toc2008148362"> What is Scripted Rest API?&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230; 1</a></li><li><a href="#_Toc1369666798"> Advantages of Scripted Rest API&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;. 2</a></li><li><a href="#_Toc920579115"> Roles Required&#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;. 2</a></li><li><a href="#_Toc1012059223"> Fields of Scripted Rest API&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230; 3</a></li><li><a href="#_Toc86637964"> Difference between Rest API and Scripted Rest API&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;. 3</a></li><li><a href="#_Toc1424085874"> Error Codes in Scripted REST API&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230; 4</a></li><li><a href="#_Toc995974998"> Example&#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;. 4</a></li></ol><p><span data-contrast="auto">​</span><span data-contrast="auto">​</span><span data-ccp-props="{&quot;335559739&quot;:100,&quot;469777462&quot;:[9360],&quot;469777927&quot;:[1],&quot;469777928&quot;:[4]}"> </span></p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-d3a0610 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="d3a0610" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-2ab01c9 elementor-widget elementor-widget-text-editor" data-id="2ab01c9" data-element_type="widget" data-widget_type="text-editor.default">
									<h1><a name="_Toc153373051"></a><a name="_Toc1027932793"></a><a name="_Toc2008148362"></a>1. What is Scripted Rest API?</h1><p>Scripted REST APIs allow developers to create custom web service APIs in ServiceNow. These APIs enable external systems to interact with ServiceNow by defining endpoints, handling requests, and customizing responses beyond standard table APIs.</p><p>Using Scripted REST APIs, developers can:</p><ul><li>Define <strong>custom endpoints (resources)</strong></li><li>Configure <strong>HTTP methods</strong> such as GET, POST, PUT, DELETE</li><li>Accept and process <strong>query parameters, path parameters, headers, and request bodies</strong></li><li>Write <strong>scripts</strong> to control request handling, business logic, and response formatting</li></ul><p>Scripted REST APIs are created and managed using the <strong>Scripted REST Service</strong> form, available under:</p><p><strong>Scripted Web Services → Scripted REST APIs</strong></p><p>This is commonly used for:</p><ul><li>Integrating ServiceNow with external systems</li><li>Exposing custom data and business logic</li><li>Building reusable APIs for scoped applications</li></ul><h1><a name="_Toc1956657117"></a><a name="_Toc1106744271"></a><a name="_Toc1369666798"></a>2. Advantages of Scripted Rest API</h1><ul><li>It gives <strong>full control</strong> over how requests and responses work</li><li>You can add <strong>custom business logic</strong> using scripts</li><li>It can work with <strong>multiple tables</strong> at the same time</li><li>You can return <strong>custom JSON responses</strong></li><li>It supports <strong>secure access</strong> using roles and authentication</li><li>You can handle <strong>errors properly</strong> with clear messages</li><li>It supports <strong>API versioning</strong> for future changes</li><li>It is best for <strong>integrating ServiceNow with external systems</strong></li></ul><h1><a name="_Toc811858911"></a><a name="_Toc1678769913"></a><a name="_Toc920579115"></a>3. Roles Required</h1><p>The role required to create and manage a Scripted REST API in ServiceNow is web_service_admin.</p><h1><a name="_Toc1335303552"></a><a name="_Toc470609886"></a><a name="_Toc1012059223"></a>4. Fields of Scripted Rest API</h1><table><tbody><tr><td width="312"><p><strong>Field Name</strong></p></td><td width="319"><p><strong>Description</strong></p></td></tr><tr><td width="312"><p>Name</p></td><td width="319"><p>Friendly name of the Scripted REST API</p></td></tr><tr><td width="312"><p>API ID</p></td><td width="319"><p>Unique identifier used in the API URI</p></td></tr><tr><td width="312"><p>Namespace</p></td><td width="319"><p>Application scope where the API is created</p></td></tr><tr><td width="312"><p>Active</p></td><td width="319"><p>Enables or disables the API</p></td></tr><tr><td width="312"><p>Default ACLs</p></td><td width="319"><p>Security rules applied to all resources</p></td></tr><tr><td width="312"><p>Base Path</p></td><td width="319"><p>Base URL path for the API</p></td></tr><tr><td width="312"><p>Version</p></td><td width="319"><p>API version for managing changes</p></td></tr><tr><td width="312"><p>Short Description / Description</p></td><td width="319"><p>Explains the purpose of the API</p></td></tr><tr><td width="312"><p>Security</p></td><td width="319"><p>Configure authentication and access control</p></td></tr><tr><td width="312"><p>Content Negotiation</p></td><td width="319"><p>Define supported request and response formats (JSON, XML, etc.)</p></td></tr><tr><td width="312"><p>Resources</p></td><td width="319"><p>Define API endpoints (URI paths)</p></td></tr><tr><td width="312"><p>Request Headers</p></td><td width="319"><p>Define expected HTTP request headers</p></td></tr><tr><td width="312"><p>Query Parameters</p></td><td width="319"><p>Define supported query parameters</p></td></tr></tbody></table><h1> </h1><h1><a name="_Toc1007934886"></a><a name="_Toc86637964"></a>5. Difference between Rest API and Scripted Rest API</h1><table><tbody><tr><td width="312"><p><strong>REST API</strong></p></td><td width="312"><p><strong>Scripted REST API</strong></p></td></tr><tr><td width="312"><p>Pre-built APIs provided by ServiceNow</p></td><td width="312"><p>Custom APIs created by developers</p></td></tr><tr><td width="312"><p>Mainly used for <strong>standard CRUD operations</strong></p></td><td width="312"><p>Used for <strong>custom logic and complex processing</strong></p></td></tr><tr><td width="312"><p>Limited customization</p></td><td width="312"><p>Fully customizable using server-side scripts</p></td></tr><tr><td width="312"><p>Follows strict ServiceNow table structure</p></td><td width="312"><p>Can return <strong>custom response formats</strong></p></td></tr><tr><td width="312"><p>Faster to use for simple integrations</p></td><td width="312"><p>Best for complex and non-standard integrations</p></td></tr><tr><td width="312"><p>Less control over request/response</p></td><td width="312"><p>Full control over headers, parameters, and payload</p></td></tr><tr><td width="312"><p>Example: Table API, Attachment API</p></td><td width="312"><p>Custom endpoints under Scripted REST APIs</p></td></tr><tr><td width="312"><p>No scripting required</p></td><td width="312"><p>Requires JavaScript scripting</p></td></tr></tbody></table><h1><a name="_Toc1424085874"></a>6. Error Codes in Scripted REST API</h1><table><tbody><tr><td width="156"><p><strong>Error Code</strong></p></td><td width="156"><p><strong>Meaning</strong></p></td><td width="306"><p><strong>When It Occurs</strong></p></td></tr><tr><td width="156"><p><strong>200 OK</strong></p></td><td width="156"><p>Request successful</p></td><td width="306"><p>API executed successfully</p></td></tr><tr><td width="156"><p><strong>201 Created</strong></p></td><td width="156"><p>Resource created</p></td><td width="306"><p>Record created via POST</p></td></tr><tr><td width="156"><p><strong>400 Bad Request</strong></p></td><td width="156"><p>Invalid request</p></td><td width="306"><p>Missing/invalid parameters or payload</p></td></tr><tr><td width="156"><p><strong>401 Unauthorized</strong></p></td><td width="156"><p>Authentication failed</p></td><td width="306"><p>Invalid or missing credentials</p></td></tr><tr><td width="156"><p><strong>403 Forbidden</strong></p></td><td width="156"><p>Access denied</p></td><td width="306"><p>User lacks required role/ACL</p></td></tr><tr><td width="156"><p><strong>404 Not Found</strong></p></td><td width="156"><p>Resource not found</p></td><td width="306"><p>Invalid endpoint or record</p></td></tr><tr><td width="156"><p><strong>405 Method Not Allowed</strong></p></td><td width="156"><p>Invalid HTTP method</p></td><td width="306"><p>Method not supported for resource</p></td></tr><tr><td width="156"><p><strong>409 Conflict</strong></p></td><td width="156"><p>Duplicate/conflict</p></td><td width="306"><p>Record already exists</p></td></tr><tr><td width="156"><p><strong>415 Unsupported Media Type</strong></p></td><td width="156"><p>Invalid content type</p></td><td width="306"><p>Wrong Content-Type header</p></td></tr><tr><td width="156"><p><strong>500 Internal Server Error</strong></p></td><td width="156"><p>Server error</p></td><td width="306"><p>Script error or exception</p></td></tr><tr><td width="156"><p><strong>503 Service Unavailable</strong></p></td><td width="156"><p>Service down</p></td><td width="306"><p>API temporarily unavailable</p></td></tr></tbody></table><h1><a name="_Toc995974998"></a>7. Example</h1><p>A catalog item named User Task Status exists in Instance A, which allows a manager to select a user to view the user’s task details. However, the actual task data (Incidents, Problems, and Change Requests) assigned to the selected user is maintained in Instance B. When the manager selects the User in catalog item in Instance A, the selected user information is sent to Instance B via integration. Instance B processes the request, fetches the count of Incidents, Problems, and Change Requests assigned to the user, and sends the response back to Instance A. The received response is then populated into the User Task Details variable of the catalog item.</p><h3><strong>Steps of Implementation:</strong></h3><p>Step 1: Create a catalog item in instance A</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-5266c5b e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="5266c5b" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-b943702 elementor-widget elementor-widget-image" data-id="b943702" data-element_type="widget" data-widget_type="image.default">
															<img fetchpriority="high" decoding="async" width="640" height="281" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/1-1024x450.png" class="attachment-large size-large wp-image-10938" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/1-1024x450.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/1-300x132.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/1-768x338.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/1-1536x675.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/1.png 1918w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-fcee25c elementor-widget elementor-widget-text-editor" data-id="fcee25c" data-element_type="widget" data-widget_type="text-editor.default">
									<p>1.1. Create Variables</p><ol><li>Select User – reference – sys_user</li><li>User Task Details – Multi Line Text</li></ol>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-c919003 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="c919003" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-87e639b elementor-widget elementor-widget-image" data-id="87e639b" data-element_type="widget" data-widget_type="image.default">
															<img decoding="async" width="640" height="133" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/2-1024x212.png" class="attachment-large size-large wp-image-10939" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/2-1024x212.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/2-300x62.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/2-768x159.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/2-1536x318.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/2.png 1918w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-46de8d3 elementor-widget elementor-widget-text-editor" data-id="46de8d3" data-element_type="widget" data-widget_type="text-editor.default">
									<p>1.2. Final Catalog Item will Look Like this on Portal</p>								</div>
				<div class="elementor-element elementor-element-438ade3 elementor-widget elementor-widget-image" data-id="438ade3" data-element_type="widget" data-widget_type="image.default">
															<img decoding="async" width="640" height="303" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/3-1024x484.png" class="attachment-large size-large wp-image-10940" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/3-1024x484.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/3-300x142.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/3-768x363.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/3-1536x726.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/3.png 1918w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-3e6a7e3 elementor-widget elementor-widget-text-editor" data-id="3e6a7e3" data-element_type="widget" data-widget_type="text-editor.default">
									<p>Step 2:  Create Scripted REST API in Instance B</p><p>Create a New Scripted REST API.</p><p>Navigate to ALL &gt; System Web Services &gt; Scripted REST API’s &gt; New</p>								</div>
				<div class="elementor-element elementor-element-235b99d elementor-widget elementor-widget-image" data-id="235b99d" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="303" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/4-1024x485.png" class="attachment-large size-large wp-image-10941" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/4-1024x485.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/4-300x142.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/4-768x364.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/4-1536x728.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/4.png 1920w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-6c61aa0 elementor-widget elementor-widget-text-editor" data-id="6c61aa0" data-element_type="widget" data-widget_type="text-editor.default">
									<p>Give a name to new Scripted REST API and fill the mandatory fields as below:</p>								</div>
				<div class="elementor-element elementor-element-7ee5892 elementor-widget elementor-widget-image" data-id="7ee5892" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="281" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/5-1024x450.png" class="attachment-large size-large wp-image-10942" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/5-1024x450.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/5-300x132.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/5-768x337.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/5-1536x674.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/5.png 1918w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-24aff00 elementor-widget elementor-widget-text-editor" data-id="24aff00" data-element_type="widget" data-widget_type="text-editor.default">
									<p>2.1. Create Resource from related list</p>								</div>
				<div class="elementor-element elementor-element-44def98 elementor-widget elementor-widget-image" data-id="44def98" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="144" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/6-1024x230.png" class="attachment-large size-large wp-image-10943" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/6-1024x230.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/6-300x67.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/6-768x172.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/6-1536x345.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/6.png 1917w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-5d6ec25 elementor-widget elementor-widget-text-editor" data-id="5d6ec25" data-element_type="widget" data-widget_type="text-editor.default">
									<p>Give name to a New Resource and fill mandatory fields as below:</p>								</div>
				<div class="elementor-element elementor-element-50b6e25 elementor-widget elementor-widget-image" data-id="50b6e25" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="290" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/7-1024x464.png" class="attachment-large size-large wp-image-10944" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/7-1024x464.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/7-300x136.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/7-768x348.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/7-1536x697.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/7.png 1918w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-c2b79dd elementor-widget elementor-widget-text-editor" data-id="c2b79dd" data-element_type="widget" data-widget_type="text-editor.default">
									<p>Script &#8211;</p><p>This script retrieves the user from the request body, fetches the assigned user details from the User table, and returns the data in the response body to Instance A.</p>								</div>
				<div class="elementor-element elementor-element-aaa773b elementor-widget elementor-widget-image" data-id="aaa773b" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="293" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/8-1024x468.png" class="attachment-large size-large wp-image-10945" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/8-1024x468.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/8-300x137.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/8-768x351.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/8-1536x702.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/8.png 1918w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-05d226f elementor-widget elementor-widget-text-editor" data-id="05d226f" data-element_type="widget" data-widget_type="text-editor.default">
									<p>Step 3: Create REST Message in Instance A</p><p>Navigate to ALL &gt; System Web Services &gt; Outbound &gt; REST Message &gt; New</p>								</div>
				<div class="elementor-element elementor-element-d541495 elementor-widget elementor-widget-image" data-id="d541495" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="304" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/9-1024x487.png" class="attachment-large size-large wp-image-10946" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/9-1024x487.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/9-300x143.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/9-768x365.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/9-1536x731.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/9.png 1927w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-d41b305 elementor-widget elementor-widget-text-editor" data-id="d41b305" data-element_type="widget" data-widget_type="text-editor.default">
									<p>3.1. Provide Endpoint and Basic authentication details of Instance B.</p><p>Give name to REST message and Endpoint of instance B</p>								</div>
				<div class="elementor-element elementor-element-9dad1d4 elementor-widget elementor-widget-image" data-id="9dad1d4" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="302" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/10-1024x483.png" class="attachment-large size-large wp-image-10947" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/10-1024x483.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/10-300x142.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/10-768x362.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/10-1536x725.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/10.png 1918w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-8ad5272 elementor-widget elementor-widget-text-editor" data-id="8ad5272" data-element_type="widget" data-widget_type="text-editor.default">
									<p>3.2. Basic Authentication Details</p><p>Fill username and password details of the instance B</p>								</div>
				<div class="elementor-element elementor-element-33e0dcd elementor-widget elementor-widget-image" data-id="33e0dcd" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="132" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/11-1024x211.png" class="attachment-large size-large wp-image-10948" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/11-1024x211.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/11-300x62.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/11-768x159.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/11-1536x317.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/11.png 1918w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-be0c0fb elementor-widget elementor-widget-text-editor" data-id="be0c0fb" data-element_type="widget" data-widget_type="text-editor.default">
									<p>3.3. Create HTTP Method from related list</p>								</div>
				<div class="elementor-element elementor-element-47602b0 elementor-widget elementor-widget-image" data-id="47602b0" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="137" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/12-1024x219.png" class="attachment-large size-large wp-image-10949" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/12-1024x219.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/12-300x64.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/12-768x164.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/12-1536x329.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/12.png 1907w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-1615565 elementor-widget elementor-widget-text-editor" data-id="1615565" data-element_type="widget" data-widget_type="text-editor.default">
									<p>Select HTTP method, Endpoint, HTTP Headers and Query Parameters</p>								</div>
				<div class="elementor-element elementor-element-22c58aa elementor-widget elementor-widget-image" data-id="22c58aa" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="308" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/13-1024x492.png" class="attachment-large size-large wp-image-10950" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/13-1024x492.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/13-300x144.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/13-768x369.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/13-1536x738.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/13.png 1918w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-6301e6d elementor-widget elementor-widget-text-editor" data-id="6301e6d" data-element_type="widget" data-widget_type="text-editor.default">
									<p>Step 4: Create Script include to call REST Message in instance A</p><p>Navigate to ALL &gt; System Definition &gt; Script Include &gt; New</p>								</div>
				<div class="elementor-element elementor-element-31d560f elementor-widget elementor-widget-image" data-id="31d560f" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="299" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/14-1024x479.png" class="attachment-large size-large wp-image-10951" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/14-1024x479.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/14-300x140.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/14-768x360.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/14-1536x719.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/14.png 1929w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-91a9fc9 elementor-widget elementor-widget-text-editor" data-id="91a9fc9" data-element_type="widget" data-widget_type="text-editor.default">
									<p>Give a name to Script Include as below:</p>								</div>
				<div class="elementor-element elementor-element-d596fed elementor-widget elementor-widget-image" data-id="d596fed" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="201" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/15-1024x321.png" class="attachment-large size-large wp-image-10952" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/15-1024x321.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/15-300x94.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/15-768x241.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/15-1536x482.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/15.png 1918w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-dde777f elementor-widget elementor-widget-text-editor" data-id="dde777f" data-element_type="widget" data-widget_type="text-editor.default">
									<p>Script-</p><p>This script will fetch the user that is selected on the catalog item, calls the REST message we have created in instance A, and whatever response we get from instance B, script will fetch assignment details for the user.</p>								</div>
				<div class="elementor-element elementor-element-bce57a5 elementor-widget elementor-widget-image" data-id="bce57a5" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="293" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/16-1024x469.png" class="attachment-large size-large wp-image-10953" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/16-1024x469.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/16-300x137.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/16-768x352.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/16-1536x704.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/16.png 1918w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-6dd493a elementor-widget elementor-widget-text-editor" data-id="6dd493a" data-element_type="widget" data-widget_type="text-editor.default">
									<p>Step 5: Create catalog client script for your catalog item which is created in step 1</p>								</div>
				<div class="elementor-element elementor-element-aadc170 elementor-widget elementor-widget-image" data-id="aadc170" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="103" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/17-1024x164.png" class="attachment-large size-large wp-image-10954" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/17-1024x164.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/17-300x48.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/17-768x123.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/17-1536x247.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/17.png 1918w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-1862519 elementor-widget elementor-widget-text-editor" data-id="1862519" data-element_type="widget" data-widget_type="text-editor.default">
									<p>Fill the required details like Type, Catalog item, Variable Name and UI Type as below:</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-a1a86a4 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="a1a86a4" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-0f0ca19 elementor-widget elementor-widget-image" data-id="0f0ca19" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="189" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/18-1024x303.png" class="attachment-large size-large wp-image-10955" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/18-1024x303.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/18-300x89.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/18-768x227.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/18-1536x454.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/18.png 1918w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-98c7d0a elementor-widget elementor-widget-text-editor" data-id="98c7d0a" data-element_type="widget" data-widget_type="text-editor.default">
									<p>Script &#8211;</p><p>This script will get the value of the user from the catalog item. Also, once we select the user on catalog item, it will fetch the assignment details and that details will be populated in the ‘User Task Details’ field.</p>								</div>
				<div class="elementor-element elementor-element-c3a7a1f elementor-widget elementor-widget-image" data-id="c3a7a1f" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="216" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/19-1024x345.png" class="attachment-large size-large wp-image-10956" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/19-1024x345.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/19-300x101.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/19-768x259.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/19-1536x517.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/19.png 1790w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-fadfde7 elementor-widget elementor-widget-text-editor" data-id="fadfde7" data-element_type="widget" data-widget_type="text-editor.default">
									<p>Step 6: Testing</p><p>Whenever manager selects a new user, whatever incidents, problems and change requests are assigned to that user count of that will be populated in the field.</p>								</div>
				<div class="elementor-element elementor-element-6d6cd2b elementor-widget elementor-widget-image" data-id="6d6cd2b" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="195" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/20-1024x312.png" class="attachment-large size-large wp-image-10957" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/20-1024x312.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/20-300x92.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/20-768x234.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/20-1536x468.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/20.png 1918w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-0772dfa elementor-widget elementor-widget-text-editor" data-id="0772dfa" data-element_type="widget" data-widget_type="text-editor.default">
									<p>You can see the details of the user has been populated in the User Task Details field.</p>								</div>
				<div class="elementor-element elementor-element-0f151f3 elementor-widget elementor-widget-image" data-id="0f151f3" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="189" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/21-1024x303.png" class="attachment-large size-large wp-image-10958" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/21-1024x303.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/21-300x89.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/21-768x227.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/21-1536x454.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/21.png 1918w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-d886e3a elementor-widget elementor-widget-text-editor" data-id="d886e3a" data-element_type="widget" data-widget_type="text-editor.default">
									<p>Similarly, if you select another user then his assigned tasks will be auto populated.</p>								</div>
				<div class="elementor-element elementor-element-423836a elementor-widget elementor-widget-image" data-id="423836a" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="196" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/22-1024x313.png" class="attachment-large size-large wp-image-10959" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/22-1024x313.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/22-300x92.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/22-768x235.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/22-1536x469.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2026/01/22.png 1918w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
				</div>
		]]></content:encoded>
					
					<wfw:commentRss>https://devlogiupskill.comingsolutions.com/scripted-rest-api/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Table Names in Service-now</title>
		<link>https://devlogiupskill.comingsolutions.com/table-names-in-service-now/</link>
					<comments>https://devlogiupskill.comingsolutions.com/table-names-in-service-now/#respond</comments>
		
		<dc:creator><![CDATA[Sayali Apet]]></dc:creator>
		<pubDate>Sat, 03 Jan 2026 09:43:47 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://devlogiupskill.comingsolutions.com/?p=10694</guid>

					<description><![CDATA[Table Names in Service-now Users – sys_user Roles – sys_user_role Group – sys_user_group Contains Roles – sys_user_role_contains UserRole mapping – sys_user_has_role GroupMember – sys_user_grmember Application menu – sys_app_application Modules – sys_app_module Choice – sys_choice Business Rules – sys_script UI Actions – sys_ui_action Client Script – sys_script_client Plugins – v_plugins Syntax Editor macros – syntax_editor_macro Dictionary Entries – sys_dictionary Tables – sys_db_object Remote Instance – sys_update_set_source Retrieved Update Sets – sys_remote_update_set Update Set Log – sys_update_set_log Local Update Set – sys_update_set Incident – incident Task – task Problem – problem Change request – change_request Field Classes – sys_glide_object Form Sections or Layouts  &#8211; sys_ui_section Views &#8211; sys_ui_view Dictionary Entry Override &#8211; sys_dictionary_override Request &#8211; sc_request Catalog Item &#8211; sc_cat_item Requested Item &#8211; sc_req_item Catalog Task &#8211; sc_task Add Your Heading Text Here]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="10694" class="elementor elementor-10694" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-4b699da e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="4b699da" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-8034d71 elementor-widget elementor-widget-heading" data-id="8034d71" data-element_type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Table Names in Service-now</h2>				</div>
				<div class="elementor-element elementor-element-a58d35d elementor-widget elementor-widget-text-editor" data-id="a58d35d" data-element_type="widget" data-widget_type="text-editor.default">
									<ol><li>Users – sys_user</li><li>Roles – sys_user_role</li><li>Group – sys_user_group</li><li>Contains Roles – sys_user_role_contains</li><li>UserRole mapping – sys_user_has_role</li><li>GroupMember – sys_user_grmember</li><li>Application menu – sys_app_application</li><li>Modules – sys_app_module</li><li>Choice – sys_choice</li><li>Business Rules – sys_script</li><li>UI Actions – sys_ui_action</li><li>Client Script – sys_script_client</li><li>Plugins – v_plugins</li><li>Syntax Editor macros – syntax_editor_macro</li><li>Dictionary Entries – sys_dictionary</li><li>Tables – sys_db_object</li><li>Remote Instance – sys_update_set_source</li><li>Retrieved Update Sets – sys_remote_update_set</li><li>Update Set Log – sys_update_set_log</li><li>Local Update Set – sys_update_set</li><li>Incident – incident</li><li>Task – task</li><li>Problem – problem</li><li>Change request – change_request</li><li>Field Classes – sys_glide_object</li><li>Form Sections or Layouts  &#8211; sys_ui_section</li><li>Views &#8211; sys_ui_view</li><li>Dictionary Entry Override &#8211; sys_dictionary_override</li><li>Request &#8211; sc_request</li><li>Catalog Item &#8211; sc_cat_item</li><li>Requested Item &#8211; sc_req_item</li><li>Catalog Task &#8211; sc_task</li></ol>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-abbe840 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="abbe840" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-5cd5ac9 elementor-widget elementor-widget-heading" data-id="5cd5ac9" data-element_type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Add Your Heading Text Here</h2>				</div>
					</div>
				</div>
				</div>
		]]></content:encoded>
					
					<wfw:commentRss>https://devlogiupskill.comingsolutions.com/table-names-in-service-now/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Domain Separation In Service-now</title>
		<link>https://devlogiupskill.comingsolutions.com/domain-separation-in-service-now/</link>
					<comments>https://devlogiupskill.comingsolutions.com/domain-separation-in-service-now/#respond</comments>
		
		<dc:creator><![CDATA[Sayali Apet]]></dc:creator>
		<pubDate>Sat, 03 Jan 2026 09:35:08 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://devlogiupskill.comingsolutions.com/?p=10679</guid>

					<description><![CDATA[Domain Separation In Service-now 1. MSP –Managed Service Providers 2. It is a paid plugin, user needs a Maint Role to activate the plugin in your instance. 3. It is a logically defined entity used to 1. Separate Data 2. Separate Process 3. Administrative Tasks       4. MSP deals with which user can see and access what data 5. By structure Service now has a Single Tenant Architecture but by using MSP plugin it can be used as Multi-Tenant Architecture 6. Multi-Tenant: It is a structure of application where single instance of the application serves multiple customers by sharing the application properties and a single database. 7. Service now with MSP Plugin: 1. Service now with MSP Plugin acts as a Multi-Tenant architecture where single instance serves multiple customers using single database. 2. Each customer data is isolated and remains invisible to other customers. 8. When we should not go with MSP Plugins- 1. In case of total separation of all system properties 2. Does not require the global reporting 3. Does not require a single global processes 9. System will not support the following tables from being domain Separated Access Control [sys_security_acl] Script Includes [sys_script_include] System Property [sys_properties] Dictionary Entry [sys_dictionary] Dictionary Entry Override [sys_dictionary_override] 10. Domain Scope: Domain scope defines what users can(data) and cannot access(data) and how(Process). 1. Session Scope Domain 2. Record Scope Domain 1. Session Scope Domain: a. User Domain b. User domain Picker Domain Session domain of users is nothing but the user record domain if we have the user domain and the domain picket domain is the same in case of not, session domain is the same like the domain which use has selected from domain picker. Users from parent domain they can change their session domain by changing from Domain picker. 2. Record Scope Domain: a. It is nothing but the domain of that targeted record. By Default the record scope take precedence over the session scope 11. We have following domains which has some special meanings. Global Domain: a. All the records which we have before enabling the MSP plugin, are part of global domain. b. Guest user is a part of global. Default Domain: a. We can set any domain as a default domain but only one can be a default domain. b. If you set default domain in an instance, instance will replace the global domain with default domain whenever the record creation happens. Primary Domain: a. Only the domain which does not have parent can be set as primary domain.]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="10679" class="elementor elementor-10679" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-8022d35 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="8022d35" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-feea597 elementor-widget elementor-widget-heading" data-id="feea597" data-element_type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Domain Separation In Service-now</h2>				</div>
				<div class="elementor-element elementor-element-a359027 elementor-widget elementor-widget-text-editor" data-id="a359027" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li style="list-style-type: none"><ul><li class="war">1. MSP –Managed Service Providers</li></ul></li></ul><ul><li style="list-style-type: none"><ul><li class="war">2. It is a paid plugin, user needs a Maint Role to activate the plugin in your instance.</li></ul></li></ul><ul><li style="list-style-type: none"><ul><li class="war">3. It is a logically defined entity used to</li></ul></li></ul><p>1. Separate Data</p><p>2. Separate Process</p><p>3. Administrative Tasks</p><p> </p><p> </p><p> </p><ul><li style="list-style-type: none"><ul><li class="war">4. MSP deals with which user can see and access what data</li></ul></li></ul><ul><li style="list-style-type: none"><ul><li class="war">5. By structure Service now has a Single Tenant Architecture but by using MSP plugin it can be used as Multi-Tenant Architecture</li></ul></li></ul><ul><li style="list-style-type: none"><ul><li class="war">6. Multi-Tenant: It is a structure of application where single instance of the application serves multiple customers by sharing the application properties and a single database.</li></ul></li></ul><ul><li style="list-style-type: none"><ul><li class="war">7. Service now with MSP Plugin:</li></ul></li></ul><p>1. Service now with MSP Plugin acts as a Multi-Tenant architecture where single instance serves multiple customers using single database.</p><p>2. Each customer data is isolated and remains invisible to other customers.</p><ul><li style="list-style-type: none"><ul><li class="war">8. When we should not go with MSP Plugins-</li></ul></li></ul><p>1. In case of total separation of all system properties</p><p>2. Does not require the global reporting</p><p>3. Does not require a single global processes</p><ul><li style="list-style-type: none"><ul><li class="war">9. System will not support the following tables from being domain Separated</li></ul></li></ul><p>Access Control [sys_security_acl]</p><p>Script Includes [sys_script_include]</p><p>System Property [sys_properties]</p><p>Dictionary Entry [sys_dictionary]</p><p>Dictionary Entry Override [sys_dictionary_override]</p><ul><li style="list-style-type: none"><ul><li class="war">10. Domain Scope:</li></ul></li></ul><p>Domain scope defines what users can(data) and cannot access(data) and how(Process).</p><p>1. Session Scope Domain</p><p>2. Record Scope Domain</p><p>1. Session Scope Domain:</p><p>a. User Domain</p><p>b. User domain Picker Domain</p><p>Session domain of users is nothing but the user record domain if we have the user domain and the domain picket domain is the same in case of not, session domain is the same like the domain which use has selected from domain picker.</p><p>Users from parent domain they can change their session domain by changing from Domain picker.</p><p>2. Record Scope Domain:</p><p>a. It is nothing but the domain of that targeted record.</p><p>By Default the record scope take precedence over the session scope</p><ul><li style="list-style-type: none"><ul><li class="war">11. We have following domains which has some special meanings.</li></ul></li></ul><p>Global Domain:</p><p>a. All the records which we have before enabling the MSP plugin, are part of global domain.</p><p>b. Guest user is a part of global.</p><p>Default Domain:</p><p>a. We can set any domain as a default domain but only one can be a default domain.</p><p>b. If you set default domain in an instance, instance will replace the global domain with default domain whenever the record creation happens.</p><p>Primary Domain:</p><p>a. Only the domain which does not have parent can be set as primary domain.</p>								</div>
					</div>
				</div>
				</div>
		]]></content:encoded>
					
					<wfw:commentRss>https://devlogiupskill.comingsolutions.com/domain-separation-in-service-now/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Reference Qualifier in Service-now   </title>
		<link>https://devlogiupskill.comingsolutions.com/reference-qualifier-in-service-now/</link>
					<comments>https://devlogiupskill.comingsolutions.com/reference-qualifier-in-service-now/#respond</comments>
		
		<dc:creator><![CDATA[Sayali Apet]]></dc:creator>
		<pubDate>Tue, 16 Dec 2025 07:05:01 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://devlogiupskill.comingsolutions.com/?p=9314</guid>

					<description><![CDATA[Reference Qualifier in Service-now 1. Reference Qualifier   :- It is used for filtering. They help refine the choices available in a reference field by defining conditions that the referenced records must meet. A reference qualifier is a filter applied to a reference field to restrict or refine the list of records that users can select from.  If you want to set default value of reference field as current user javascript:gs.getUserID(); Types of reference qualifier:- 1. Simple Reference Qualifier: &#8211;  A simple reference qualifier in Service Now is often written as an encoded query string or a Glide Record query. It&#8217;s used to filter the choices available in a reference field based on specific criteria.Uses simple AND/OR conditions to filter records. For example, you can show only users where &#8220;Active&#8221; is &#8220;true&#8221;.  How to Reach Reference Qualifier in OOB Table or Custom Table:  Open any Table of Your Choice: &#8211; Incident/Problem/Change. Step 1:-Application Navigator&#62;Table&#62;Open Existing Record or Create New. Step 2:- Right Click on Any Reference Field i.e. assigned to and Configure Dictionary Step 3:- We are showing Reference Specification and applying Condition. 2. Dynamic Reference Qualifier: &#8211; Dynamic reference qualifiers enable you to use a dynamic filter option to run a query against a reference field to filter the returned data set. Dynamic filter options are stored filters that can contain encoded query strings, JavaScript, or script includes, and can be used in multiple dynamic reference qualifiers. Changes made to a dynamic filter option automatically apply to all reference qualifiers that use the same dynamic filter option. Use this type of reference qualifier when you want to use the same filter on multiple forms or to provide filter functionality to &#8220;non-code savvy&#8221; implementers. The base instance provides several OOB dynamic filter options. If a dynamic filter option that meets your needs does not exist, you can create a new dynamic filter option that is specific to your requirements.All the available dynamic filters are stored in system definition&#62;dynamic filter options.For creating the dynamic reference qualifier we must have a record in this dynamic filter options.After creating the dynamic reference qualifier you can add that filter from the Dynamic  Ref qual field. 3.Advanced Reference Qualifier: &#8211; Advanced reference qualifiers enable you to define an inline encrypted query string or JavaScript (actual code or the name of an existing script include or business rule) filter directly in the Reference qualified field of the reference qualifier. Similar to the other reference qualifier types, when the form loads, the filter is executed, and only the records that match the filter appear in the reference field. Use this type of reference qualifier for implementations that only require a simple, unique filter that cannot be handled by a simple reference qualifier, and is not used across multiple reference fields. Here Is Explanation of the code javascript: &#8220;sys_id IN&#8221; + new getgroupusers().getUser(current.u_assignment_group) 1.new getgroupusers().getUser(current.u_assignment_group) Calls the Script Include you created (getgroupusers). Passes the value of u_assignment_group (a group sys_id) to the function. The Script Include returns a comma-separated list of user sys_ids. 2. &#8220;sys_id IN&#8221; + This constructs a valid encoded query. Another way for doing Advanced reference qualifier is script include Step 1:-Application Navigator&#62;Script Include&#62; Create New. Step 2:- New&#60;Name (getgroupusers)&#60;Glide AJAX enabledScript Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Here Is The Code :- var getgroupusers = Class.create(); getgroupusers.prototype = Object.extendsObject(AbstractAjaxProcessor, {     getUser: function(id) {         var gr = new GlideRecord(&#8220;sys_user_grmember&#8221;);         gr.addQuery(&#8220;group&#8221;, id);         gr.query();         var arr = [];         while (gr.next()) {             arr.push(gr.getValue(&#8220;user&#8221;).toString())         }         return arr.join(&#8216;,&#8217;);     },     type: &#8216;getgroupusers&#8217; });   Here Is the code Explanation in Detail :-  Script Include named getgroupusers that extends AbstractAjaxProcessor, meaning it can be called from a client script (AJAX call). Function: getUser(id) This function returns a comma-separated list of user sys_ids belonging to a given group sys_id.  Step-by-step breakdown var getgroupusers = Class.create();getgroupusers.prototype = Object.extendsObject(AbstractAjaxProcessor, { Defines a Script Include. Inherits from AbstractAjaxProcessor → allows server-side methods to be called from client-side. 1. Query the sys_user_grmember table var gr = new GlideRecord(&#8220;sys_user_grmember&#8221;);gr.addQuery(&#8220;group&#8221;, id);gr.query(); Looks at the User Group Member Filters where group equals the passed id. Runs the query. 2. Build array of user sys_ids var arr = []; while (gr.next()) {    arr.push(gr.getValue(&#8220;user&#8221;).toString());} Loops over each record. Pushes the user field value (sys_id) into an array. 3. Return a comma-separated string return arr.join(&#8216;,&#8217;);   Here is the Output  :- Here, we get the group members in the Assigned To field from the group that we selected in the Assignment Group. This dynamic behavior ensures that the Assigned To field is populated only with valid group members, reducing manual errors and ensuring that work items are always assigned to users who actually belong to the selected group.]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="9314" class="elementor elementor-9314" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-afb065b e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="afb065b" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-601b7ce elementor-widget elementor-widget-heading" data-id="601b7ce" data-element_type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Reference Qualifier in Service-now   </h2>				</div>
				<div class="elementor-element elementor-element-8eefdda elementor-widget elementor-widget-text-editor" data-id="8eefdda" data-element_type="widget" data-widget_type="text-editor.default">
									<h4>1. Reference Qualifier   :-</h4><ul><li>It is used for filtering.</li><li>They help refine the choices available in a reference field by defining conditions that the referenced records must meet.</li><li>A reference qualifier is a filter applied to a reference field to restrict or refine the list of records that users can select from. </li><li>If you want to set default value of reference field as current user</li></ul><p><strong>javascript:gs.getUserID();</strong></p>								</div>
				<div class="elementor-element elementor-element-503e017 elementor-widget elementor-widget-image" data-id="503e017" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="327" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/1-10-1024x523.png" class="attachment-large size-large wp-image-9315" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/1-10-1024x523.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/1-10-300x153.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/1-10-768x393.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/1-10-1536x785.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/1-10.png 1915w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-215def7 elementor-widget elementor-widget-image" data-id="215def7" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="243" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/2-11-1024x388.png" class="attachment-large size-large wp-image-9316" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/2-11-1024x388.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/2-11-300x114.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/2-11-768x291.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/2-11.png 1429w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-4fbd11a e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="4fbd11a" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-bffecdd elementor-widget elementor-widget-text-editor" data-id="bffecdd" data-element_type="widget" data-widget_type="text-editor.default">
									<h4><strong>Types of reference qualifier:-</strong></h4><h5><strong>1. Simple Reference Qualifier:</strong> &#8211;</h5><p> A simple reference qualifier in Service Now is often written as an encoded query string or a Glide Record query. It&#8217;s used to filter the choices available in a reference field based on specific criteria.Uses simple AND/OR conditions to filter records. For example, you can show only users where &#8220;Active&#8221; is &#8220;true&#8221;.</p><h4><strong> </strong><strong>How to Reach Reference Qualifier in OOB Table or Custom Table:</strong></h4><h6><strong> </strong>Open any Table of Your Choice: &#8211; Incident/Problem/Change.</h6><p>Step 1:-Application Navigator&gt;Table&gt;Open Existing Record or Create New.</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-dd5c55d e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="dd5c55d" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-c777b21 elementor-widget elementor-widget-image" data-id="c777b21" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="232" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/3-11-1024x371.png" class="attachment-large size-large wp-image-9333" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/3-11-1024x371.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/3-11-300x109.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/3-11-768x278.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/3-11.png 1429w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-57f8f4d elementor-widget elementor-widget-text-editor" data-id="57f8f4d" data-element_type="widget" data-widget_type="text-editor.default">
									<p>Step 2:- Right Click on Any Reference Field i.e. assigned to and Configure Dictionary</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-b57820d e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="b57820d" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-92ea377 elementor-widget elementor-widget-image" data-id="92ea377" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="184" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/4-11-1024x294.png" class="attachment-large size-large wp-image-9334" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/4-11-1024x294.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/4-11-300x86.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/4-11-768x220.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/4-11-1536x441.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/4-11.png 1917w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-122caae e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="122caae" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-e76d704 elementor-widget elementor-widget-text-editor" data-id="e76d704" data-element_type="widget" data-widget_type="text-editor.default">
									<p>Step 3:- We are showing Reference Specification and applying Condition.</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-8193d99 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="8193d99" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-69fe87e elementor-widget elementor-widget-image" data-id="69fe87e" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="326" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/5-10-1024x521.png" class="attachment-large size-large wp-image-9335" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/5-10-1024x521.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/5-10-300x153.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/5-10-768x391.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/5-10-1536x781.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/5-10.png 1913w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-2153020 elementor-widget elementor-widget-text-editor" data-id="2153020" data-element_type="widget" data-widget_type="text-editor.default">
									<h4><strong>2. Dynamic Reference Qualifier: &#8211;</strong></h4><p>Dynamic reference qualifiers enable you to use a dynamic filter option to run a query against a reference field to filter the returned data set. Dynamic filter options are stored filters that can contain encoded query strings, JavaScript, or script includes, and can be used in multiple dynamic reference qualifiers. Changes made to a dynamic filter option automatically apply to all reference qualifiers that use the same dynamic filter option. Use this type of reference qualifier when you want to use the same filter on multiple forms or to provide filter functionality to &#8220;non-code savvy&#8221; implementers. The base instance provides several OOB dynamic filter options. If a dynamic filter option that meets your needs does not exist, you can create a new dynamic filter option that is specific to your requirements.All the available dynamic filters are stored in <strong>system definition&gt;dynamic filter options.</strong>For creating the dynamic reference qualifier we must have a record in this dynamic filter options.After creating the dynamic reference qualifier you can add that filter from the <strong>Dynamic  </strong><strong>Ref qual</strong> field.</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-51ecfb5 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="51ecfb5" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-e0fe092 elementor-widget elementor-widget-image" data-id="e0fe092" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="324" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/6-12-1024x519.png" class="attachment-large size-large wp-image-9336" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/6-12-1024x519.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/6-12-300x152.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/6-12-768x390.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/6-12-1536x779.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/6-12.png 1920w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-38183af elementor-widget elementor-widget-text-editor" data-id="38183af" data-element_type="widget" data-widget_type="text-editor.default">
									<h4><strong>3.Advanced Reference Qualifier: &#8211;</strong></h4><p>Advanced reference qualifiers enable you to define an inline encrypted query string or JavaScript (actual code or the name of an existing script include or business rule) filter directly in the Reference qualified field of the reference qualifier. Similar to the other reference qualifier types, when the form loads, the filter is executed, and only the records that match the filter appear in the reference field. Use this type of reference qualifier for implementations that only require a simple, unique filter that cannot be handled by a simple reference qualifier, and is not used across multiple reference fields.</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-fecdaee e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="fecdaee" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-7d051a6 elementor-widget elementor-widget-image" data-id="7d051a6" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="324" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/7-9-1024x518.png" class="attachment-large size-large wp-image-9337" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/7-9-1024x518.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/7-9-300x152.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/7-9-768x389.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/7-9-1536x778.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/7-9.png 1916w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-0f60c09 elementor-widget elementor-widget-text-editor" data-id="0f60c09" data-element_type="widget" data-widget_type="text-editor.default">
									<h4>Here Is Explanation of the code</h4><p><strong>javascript: &#8220;sys_id IN&#8221; + new getgroupusers().getUser(current.u_assignment_group)</strong></p><h5><strong>1.new getgroupusers().getUser(current.u_assignment_group)</strong></h5><ul><li>Calls the Script Include you created (getgroupusers).</li><li>Passes the value of u_assignment_group (a group sys_id) to the function.</li><li>The Script Include returns a <strong>comma-separated list of user sys_ids</strong>.</li></ul><h4><strong>2. &#8220;sys_id IN&#8221; + </strong></h4><p>This constructs a valid <strong>encoded query</strong>.</p><h4>Another way for doing Advanced reference qualifier is script include</h4><p>Step 1:-Application Navigator&gt;Script Include&gt; Create New.</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-1ddc9fe e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="1ddc9fe" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-8f112f1 elementor-widget elementor-widget-image" data-id="8f112f1" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="327" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/8-11-1024x523.png" class="attachment-large size-large wp-image-9347" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/8-11-1024x523.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/8-11-300x153.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/8-11-768x392.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/8-11-1536x784.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/8-11.png 1917w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-b2c900e e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="b2c900e" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-160a537 elementor-widget elementor-widget-text-editor" data-id="160a537" data-element_type="widget" data-widget_type="text-editor.default">
									<p>Step 2:- New&lt;Name (getgroupusers)&lt;Glide AJAX enabledScript</p>								</div>
				<div class="elementor-element elementor-element-2adccad elementor-widget elementor-widget-image" data-id="2adccad" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="327" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/9-12-1024x523.png" class="attachment-large size-large wp-image-9448" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/9-12-1024x523.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/9-12-300x153.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/9-12-768x392.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/9-12-1536x785.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/9-12.png 1918w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-5ac1fed elementor-widget elementor-widget-image" data-id="5ac1fed" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="304" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/10-12-1024x487.png" class="attachment-large size-large wp-image-9449" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/10-12-1024x487.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/10-12-300x143.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/10-12-768x365.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/10-12.png 1431w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-cf89720 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="cf89720" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-0ab4195 elementor-widget elementor-widget-text-editor" data-id="0ab4195" data-element_type="widget" data-widget_type="text-editor.default">
									<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-9602388 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="9602388" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-a59215c elementor-widget elementor-widget-text-editor" data-id="a59215c" data-element_type="widget" data-widget_type="text-editor.default">
									<h4>Here Is The Code :-</h4><p>var getgroupusers = Class.create();</p><p>getgroupusers.prototype = Object.extendsObject(AbstractAjaxProcessor, {</p><p>    getUser: function(id) {</p><p>        var gr = new GlideRecord(&#8220;sys_user_grmember&#8221;);</p><p>        gr.addQuery(&#8220;group&#8221;, id);</p><p>        gr.query();</p><p>        var arr = [];</p><p>        while (gr.next()) {</p><p>            arr.push(gr.getValue(&#8220;user&#8221;).toString())</p><p>        }</p><p>        return arr.join(&#8216;,&#8217;);</p><p>    },</p><p>    type: &#8216;getgroupusers&#8217;</p><p>});</p><p><strong> </strong></p><h4>Here Is the code Explanation in Detail :-</h4><p><strong> </strong><strong>Script Include</strong> named getgroupusers that extends AbstractAjaxProcessor, meaning it can be called from a <strong>client script (AJAX call)</strong>.</p><p><strong>Function: getUser(id)</strong></p><p>This function returns a <strong>comma-separated list of user sys_ids</strong> belonging to a given <strong>group sys_id</strong>.</p><h3><strong> </strong><strong>Step-by-step breakdown</strong></h3><p>var getgroupusers = Class.create();getgroupusers.prototype = Object.extendsObject(AbstractAjaxProcessor, {</p><ul><li>Defines a Script Include.</li><li>Inherits from AbstractAjaxProcessor → allows server-side methods to be called from client-side.</li></ul><h4><strong>1. Query the sys_user_grmember table</strong></h4><p>var gr = new GlideRecord(&#8220;sys_user_grmember&#8221;);gr.addQuery(&#8220;group&#8221;, id);gr.query();</p><ul><li>Looks at the <strong>User Group Member</strong></li><li>Filters where group equals the passed <strong>id</strong>.</li><li>Runs the query.</li></ul><h4><strong>2. Build array of user sys_ids</strong></h4><p>var arr = []; while (gr.next()) {    arr.push(gr.getValue(&#8220;user&#8221;).toString());}</p><ul><li>Loops over each record.</li><li>Pushes the <strong>user field value (sys_id)</strong> into an array.</li></ul><h4><strong>3. Return a comma-separated string</strong></h4><p>return arr.join(&#8216;,&#8217;);</p><p><strong> </strong></p><h4><strong>Here is the Output  :-</strong></h4><p>Here, we get the group members in the <em data-start="1112" data-end="1125">Assigned To</em> field from the group that we selected in the <em data-start="1171" data-end="1189">Assignment Group</em>. This dynamic behavior ensures that the <em data-start="1230" data-end="1243">Assigned To</em> field is populated only with valid group members, reducing manual errors and ensuring that work items are always assigned to users who actually belong to the selected group.</p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-080b772 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="080b772" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-dc0ce01 elementor-widget elementor-widget-image" data-id="dc0ce01" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="326" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/11-11-1024x521.png" class="attachment-large size-large wp-image-9451" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/11-11-1024x521.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/11-11-300x153.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/11-11-768x391.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/11-11-1536x782.png 1536w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/11-11.png 1917w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
					</div>
				</div>
				</div>
		]]></content:encoded>
					
					<wfw:commentRss>https://devlogiupskill.comingsolutions.com/reference-qualifier-in-service-now/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Dictionary Override  </title>
		<link>https://devlogiupskill.comingsolutions.com/dictionary-override/</link>
					<comments>https://devlogiupskill.comingsolutions.com/dictionary-override/#respond</comments>
		
		<dc:creator><![CDATA[Shweta Patil]]></dc:creator>
		<pubDate>Mon, 15 Dec 2025 13:20:21 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://devlogiupskill.comingsolutions.com/?p=9277</guid>

					<description><![CDATA[Dictionary Override Dictionary Override will come into a picture when we have a parent-child relationship between tables. By default, all fields and their attributes are inherited from parent table to child tables. Suppose you want to make a difference in one of the child tables for inherited fields then we will go for Dictionary override.   We can override following properties     Override Reference Qualifiers: A Reference Qualifier in Dictionary Override allows you to change or customize the filtering condition of a reference field only for a specific child table, without affecting the original parent table field.  Override Dependent:-Makes the field dependent on some other field, only in the child table.  Override Default Value: Changes the default value of the field for the child table.   Override Read Only: &#8211; Make the field read-only for this child table only.  Override Calculations: &#8211; Overrides the calculation formula used by calculated fields.  Override Mandatory: &#8211; Makes the field mandatory or not mandatory only for this child table.  Override Attributes: Allows you to override field attributes only for the child table.  Override Display Values: &#8211; Allows overriding how the field&#8217;s display value is shown for this table.  Making Dictionary Override  Search Tables in Navigation Bar to Make Tables &#38; Click on New.  After Clicking New Page will appear in that Add Table Name à New Menu Name   for Making Child Table We Have Click on Extensible. à Controls à Extensible Click on Box &#38; Submit it, Your Table will be made which is Parent Table.  Now go to table for Making Child Tables in that Add Table Name, In Extends Table Give Name of parent Table to Make this table a child table &#38; submit it.  Search tables for Parent &#38; Child Tables in Navigation Bar, Perform Dictionary Override.  Users must Make Field from Form Layout in Parent Table &#38; That field will automatically Inherit to Child tables.  Child Table All Fields Inherit from Parent Table.  Now Add Records in Parent Tables  Note: If User adds Records to Parent Table, then that record will not be visible in Child Tables. But when we insert records in Child tables then child table records will visible Parent tables.  If we have to do Perform operation on Parent table field   Go to Parent table fields à Configure Dictionary à In Right side, their option for doing Read only, Mandatory, Display.  If we have to Perform operation on child table field   Go to child table fields à Configure Dictionary à Dictionary override-&#62; New-&#62; There will be all operations.  Base Table: &#8211; is the parent table  Table: &#8211; The table where we can change override property.  These are the above properties by using, we can perform dictionary override.  Ex: &#8211; If User wants to do Override the name field by Read-only then user can do with the below steps.  Go to child Table-&#62;Right click on Name-&#62;Configure Dictionary-&#62;  Click On Dictionary Override-&#62; Click on New.  Click on -&#62; Override Read Only-&#62; Sumit the Record.   After submitting the record check in the child table. If filed get read-only or not.  And here the field is read only.  Note: When we Apply Override in Child table, it does not Apply to Parent table. Summary:   Dictionary Override in ServiceNow is used when you have a parent–child table relationship and want a child table to behave differently from the parent. Normally, all fields and their properties are inherited from the parent table, but with a dictionary override you can change things like default values, read‑only settings, mandatory status, reference qualifiers, calculations, attributes, and display values only for the child table. To use it, you first create a parent table (by making it extensible) and then create a child table that extends it. Any field added to the parent automatically appears in the child, but records added in the parent do not show in the child, while child records appear in the parent. To override a field, open the child table, right‑click the inherited field, go to Configure Dictionary, and create a new Dictionary Override where you select the property you want to change. The override affects only the child&#8217;s table and never the parent. ]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="9277" class="elementor elementor-9277" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-2ce01de e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="2ce01de" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-2390a96 elementor-widget elementor-widget-heading" data-id="2390a96" data-element_type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Dictionary Override  </h2>				</div>
				<div class="elementor-element elementor-element-4abb7e2 elementor-widget elementor-widget-text-editor" data-id="4abb7e2" data-element_type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW266261700 BCX8" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW266261700 BCX8">Dictionary Override will come into a picture when we have a parent-child relationship between tables. By default, all fields and their attributes are inherited from parent table to child tables. Suppose you want to make a difference in one of the child tables for inherited fields then we will go for Dictionary override. </span></span><span class="EOP SCXW266261700 BCX8" data-ccp-props="{&quot;335559739&quot;:0}"> </span></p><p> </p>								</div>
				<div class="elementor-element elementor-element-736d623 elementor-widget elementor-widget-text-editor" data-id="736d623" data-element_type="widget" data-widget_type="text-editor.default">
									<h4><strong>We can override following properties    </strong></h4><p><span data-ccp-props="{&quot;335559739&quot;:0}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="10" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:1080,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><b><span data-contrast="none">Override Reference Qualifiers: </span></b><span data-contrast="auto">A </span><b><span data-contrast="auto">Reference Qualifier in Dictionary Override</span></b><span data-contrast="auto"> allows you to </span><b><span data-contrast="auto">change or customize the filtering condition</span></b><span data-contrast="auto"> of a reference field </span><b><span data-contrast="auto">only for a specific child table</span></b><span data-contrast="auto">, without affecting the original parent table field.</span><span data-ccp-props="{&quot;335559739&quot;:0}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="10" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:1080,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="2" data-aria-level="1"><b><span data-contrast="none">Override Dependent:-</span></b><span data-contrast="auto">Makes the field dependent on some other field, only in the child table.</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="10" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:1080,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="3" data-aria-level="1"><b><span data-contrast="none">Override Default Value: </span></b><span data-contrast="auto">Changes the </span><b><span data-contrast="auto">default value</span></b><span data-contrast="auto"> of the field for the child table.</span><b><span data-contrast="none"> </span></b><span data-ccp-props="{&quot;335559739&quot;:0}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="10" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:1080,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="4" data-aria-level="1"><b><span data-contrast="none">Override Read Only: &#8211;</span></b><b><span data-contrast="auto"> </span></b><span data-contrast="auto">Make the field </span><b><span data-contrast="auto">read-only</span></b><span data-contrast="auto"> for this child table only.</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="10" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:1080,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="5" data-aria-level="1"><b><span data-contrast="none">Override Calculations: &#8211; </span></b><span data-contrast="auto">Overrides the </span><b><span data-contrast="auto">calculation formula</span></b><span data-contrast="auto"> used by calculated fields.</span><span data-ccp-props="{&quot;335559739&quot;:0}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="10" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:1080,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="6" data-aria-level="1"><b><span data-contrast="none">Override Mandatory: &#8211; </span></b><span data-contrast="auto">Makes the field </span><b><span data-contrast="auto">mandatory</span></b><span data-contrast="auto"> or </span><b><span data-contrast="auto">not mandatory</span></b><span data-contrast="auto"> only for this child table.</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="10" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:1080,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="7" data-aria-level="1"><b><span data-contrast="none">Override Attributes: </span></b><span data-contrast="auto">Allows you to override </span><b><span data-contrast="auto">field attributes</span></b><span data-contrast="auto"> only for the child table.</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="10" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:1080,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="8" data-aria-level="1"><b><span data-contrast="none">Override Display Values: &#8211; </span></b><span data-contrast="auto">Allows overriding how the field&#8217;s </span><b><span data-contrast="auto">display value</span></b><span data-contrast="auto"> is shown for this table.</span><span data-ccp-props="{}"> </span></li></ul><p><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></p><p><span data-contrast="none">Making Dictionary Override</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></p><p><span data-ccp-props="{&quot;335559739&quot;:0}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="3" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:360,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><b><span data-contrast="none">Search Tables in Navigation Bar to Make Tables &amp; Click on New.</span></b><span data-ccp-props="{&quot;335559739&quot;:0}"> </span></li></ul>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-4ea244e e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="4ea244e" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-d450b2c elementor-widget elementor-widget-image" data-id="d450b2c" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="303" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/1-9-1024x485.png" class="attachment-large size-large wp-image-9279" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/1-9-1024x485.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/1-9-300x142.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/1-9-768x364.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/1-9.png 1365w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-bdb3031 elementor-widget elementor-widget-text-editor" data-id="bdb3031" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li data-leveltext="" data-font="Symbol" data-listid="13" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:360,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="none">After Clicking New Page will appear in that Add Table Name </span><span data-contrast="auto">à</span><span data-contrast="none"> New Menu Name </span><span data-ccp-props="{&quot;335559739&quot;:0}"> </span></li></ul><p><span data-contrast="none">for Making Child Table We Have Click on Extensible. </span><span data-contrast="auto">à</span><span data-contrast="none"> Controls </span><span data-contrast="auto">à</span><span data-contrast="none"> Extensible Click on Box &amp; Submit it, </span><b><span data-contrast="none">Your Table will be made which is Parent Table.</span></b><span data-ccp-props="{&quot;335559685&quot;:360,&quot;335559739&quot;:0}"> </span></p>								</div>
				<div class="elementor-element elementor-element-1a557ed elementor-widget elementor-widget-image" data-id="1a557ed" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="358" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/2-10-1024x572.png" class="attachment-large size-large wp-image-9280" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/2-10-1024x572.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/2-10-300x167.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/2-10-768x429.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/2-10.png 1075w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-ede675d elementor-widget elementor-widget-text-editor" data-id="ede675d" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li><span class="TextRun SCXW212804057 BCX8" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW212804057 BCX8">Now go to table for Making Child Tables in that Add Table Name, In Extends Table Give Name of parent Table to Make this table a child table &amp; </span><span class="NormalTextRun SCXW212804057 BCX8">submit</span><span class="NormalTextRun SCXW212804057 BCX8"> it</span><span class="NormalTextRun SCXW212804057 BCX8">.</span></span><span class="EOP SCXW212804057 BCX8" data-ccp-props="{&quot;335559739&quot;:0}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-3fdaa15 elementor-widget elementor-widget-image" data-id="3fdaa15" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="359" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/3-10-1024x574.png" class="attachment-large size-large wp-image-9281" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/3-10-1024x574.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/3-10-300x168.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/3-10-768x431.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/3-10.png 1079w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-9966867 elementor-widget elementor-widget-text-editor" data-id="9966867" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li><span class="NormalTextRun SCXW226783020 BCX8">Search </span><span class="NormalTextRun SCXW226783020 BCX8">tables for</span><span class="NormalTextRun SCXW226783020 BCX8"> Parent &amp; Child Tables</span><span class="NormalTextRun SCXW226783020 BCX8"> in Navigation </span><span class="NormalTextRun SCXW226783020 BCX8">Bar</span><span class="NormalTextRun SCXW226783020 BCX8">, </span><span class="NormalTextRun SCXW226783020 BCX8">Perform</span><span class="NormalTextRun SCXW226783020 BCX8"> Dictionary Override</span><span class="NormalTextRun SCXW226783020 BCX8">. </span></li></ul>								</div>
				<div class="elementor-element elementor-element-bc895db elementor-widget elementor-widget-image" data-id="bc895db" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="300" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/4-10-1024x480.png" class="attachment-large size-large wp-image-9282" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/4-10-1024x480.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/4-10-300x141.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/4-10-768x360.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/4-10.png 1351w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-2aff9ca elementor-widget elementor-widget-text-editor" data-id="2aff9ca" data-element_type="widget" data-widget_type="text-editor.default">
									<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">Users must Make Field from Form Layout in Parent Table &amp; That field will automatically Inherit to Child tables.</span><span data-ccp-props="{}"> </span></li></ul><p><span data-ccp-props="{&quot;335559685&quot;:720}"> </span></p>								</div>
				<div class="elementor-element elementor-element-10120a4 elementor-widget elementor-widget-image" data-id="10120a4" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="303" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/5-9-1024x484.png" class="attachment-large size-large wp-image-9283" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/5-9-1024x484.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/5-9-300x142.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/5-9-768x363.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/5-9.png 1352w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-ac05480 elementor-widget elementor-widget-image" data-id="ac05480" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="299" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/6-11-1024x479.png" class="attachment-large size-large wp-image-9284" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/6-11-1024x479.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/6-11-300x140.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/6-11-768x359.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/6-11.png 1361w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-ac49dea elementor-widget elementor-widget-text-editor" data-id="ac49dea" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li><span class="TextRun SCXW88080868 BCX8" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW88080868 BCX8">Child Table All Fields Inherit from Parent Table.</span></span><span class="EOP SCXW88080868 BCX8" data-ccp-props="{}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-3d20480 elementor-widget elementor-widget-image" data-id="3d20480" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="301" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/7-8-1024x482.png" class="attachment-large size-large wp-image-9285" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/7-8-1024x482.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/7-8-300x141.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/7-8-768x362.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/7-8.png 1365w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-e40080f elementor-widget elementor-widget-text-editor" data-id="e40080f" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li><span class="TextRun SCXW128481380 BCX8" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW128481380 BCX8">Now Add Records </span><span class="NormalTextRun SCXW128481380 BCX8">in</span><span class="NormalTextRun SCXW128481380 BCX8"> Parent Tables</span></span><span class="EOP SCXW128481380 BCX8" data-ccp-props="{}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-db8fd44 elementor-widget elementor-widget-image" data-id="db8fd44" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="360" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/8-10-1024x576.png" class="attachment-large size-large wp-image-9287" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/8-10-1024x576.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/8-10-300x169.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/8-10-768x432.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/8-10.png 1366w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-2b4c86f elementor-widget elementor-widget-text-editor" data-id="2b4c86f" data-element_type="widget" data-widget_type="text-editor.default">
									<p><b><span data-contrast="auto">Note: </span></b><span data-contrast="auto">If User adds Records to Parent Table, then that record will not be visible in Child Tables. But when we insert records in Child tables then child table records will visible Parent tables.</span><span data-ccp-props="{&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559685&quot;:360}"> </span></p><p><span data-ccp-props="{&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559685&quot;:360}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="13" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:360,&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">If we have to do Perform operation on Parent table field </span><span data-ccp-props="{&quot;335551550&quot;:6,&quot;335551620&quot;:6}"> </span></li></ul><p><span data-contrast="auto">Go to Parent table fields </span><span data-contrast="auto">à</span><span data-contrast="auto"> Configure Dictionary </span><span data-contrast="auto">à</span><span data-contrast="auto"> In Right side, their option for doing Read only, Mandatory, Display.</span><span data-ccp-props="{&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559685&quot;:360}"> </span></p>								</div>
				<div class="elementor-element elementor-element-62f98b9 elementor-widget elementor-widget-image" data-id="62f98b9" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="304" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/9-10-1024x487.png" class="attachment-large size-large wp-image-9289" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/9-10-1024x487.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/9-10-300x143.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/9-10-768x365.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/9-10.png 1353w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-f34b2e2 elementor-widget elementor-widget-text-editor" data-id="f34b2e2" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li data-leveltext="" data-font="Symbol" data-listid="13" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:360,&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">If we have to Perform operation on child table field </span><span data-ccp-props="{&quot;335551550&quot;:6,&quot;335551620&quot;:6}"> </span></li></ul><p><span data-contrast="auto">Go to child table fields </span><span data-contrast="auto">à</span><span data-contrast="auto"> Configure Dictionary </span><span data-contrast="auto">à</span><span data-contrast="auto"> Dictionary override-&gt; New-&gt; There will be all operations.</span><span data-ccp-props="{&quot;335551550&quot;:6,&quot;335551620&quot;:6}"> </span></p>								</div>
				<div class="elementor-element elementor-element-8228da1 elementor-widget elementor-widget-image" data-id="8228da1" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="296" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/10-11-1024x474.png" class="attachment-large size-large wp-image-9290" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/10-11-1024x474.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/10-11-300x139.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/10-11-768x356.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/10-11.png 1365w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-b191df4 elementor-widget elementor-widget-image" data-id="b191df4" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="303" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/11-9-1024x484.png" class="attachment-large size-large wp-image-9291" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/11-9-1024x484.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/11-9-300x142.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/11-9-768x363.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/11-9.png 1362w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-d7bd573 elementor-widget elementor-widget-text-editor" data-id="d7bd573" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li data-leveltext="" data-font="Symbol" data-listid="8" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">Base Table: &#8211; is the parent table</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="8" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="2" data-aria-level="1"><span data-contrast="auto">Table: &#8211; The table where we can change override property.</span><span data-ccp-props="{}"> </span></li></ul><ul><li data-leveltext="" data-font="Symbol" data-listid="8" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="3" data-aria-level="1"><span data-contrast="auto">These are the above properties by using, we can perform dictionary override.</span><span data-ccp-props="{}"> </span></li></ul><p><span data-ccp-props="{&quot;335559685&quot;:720}"> </span></p><p><span data-ccp-props="{&quot;335559685&quot;:720}"> </span></p><p><span data-contrast="auto">Ex: &#8211; If User wants to do Override the name field by Read-only then user can do with the below steps.</span><span data-ccp-props="{&quot;335559685&quot;:0}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="14" 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">Go to child Table-&gt;Right click on Name-&gt;Configure Dictionary-&gt;</span><span data-ccp-props="{}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-dd5abb1 elementor-widget elementor-widget-image" data-id="dd5abb1" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="288" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/12-7-1024x460.png" class="attachment-large size-large wp-image-9292" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/12-7-1024x460.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/12-7-300x135.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/12-7-768x345.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/12-7.png 1359w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-0f8505b elementor-widget elementor-widget-text-editor" data-id="0f8505b" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li><span class="TextRun SCXW192439469 BCX8" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW192439469 BCX8">Click On Dictionary Override-&gt; Click on New.</span></span><span class="EOP SCXW192439469 BCX8" data-ccp-props="{}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-ecbfb21 elementor-widget elementor-widget-image" data-id="ecbfb21" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="303" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/13-7-1024x484.png" class="attachment-large size-large wp-image-9293" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/13-7-1024x484.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/13-7-300x142.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/13-7-768x363.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/13-7.png 1365w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-c46b404 elementor-widget elementor-widget-text-editor" data-id="c46b404" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li><span class="TextRun SCXW22097526 BCX8" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW22097526 BCX8">Click on -&gt; Override Read Only-&gt;</span><span class="NormalTextRun SCXW22097526 BCX8"> Sumit the Record.</span><span class="NormalTextRun SCXW22097526 BCX8"> </span></span><span class="EOP SCXW22097526 BCX8" data-ccp-props="{}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-0f64c2a elementor-widget elementor-widget-image" data-id="0f64c2a" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="303" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/14-6-1024x485.png" class="attachment-large size-large wp-image-9294" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/14-6-1024x485.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/14-6-300x142.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/14-6-768x364.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/14-6.png 1363w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-66cac36 elementor-widget elementor-widget-text-editor" data-id="66cac36" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li><span class="TextRun SCXW88825402 BCX8" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW88825402 BCX8">After </span><span class="NormalTextRun SCXW88825402 BCX8">submitting</span><span class="NormalTextRun SCXW88825402 BCX8"> the record check </span><span class="NormalTextRun SCXW88825402 BCX8">in the </span><span class="NormalTextRun SCXW88825402 BCX8">child</span><span class="NormalTextRun SCXW88825402 BCX8"> table. If filed get read-only or not.</span></span><span class="EOP SCXW88825402 BCX8" data-ccp-props="{}"> </span></li></ul>								</div>
				<div class="elementor-element elementor-element-5510a00 elementor-widget elementor-widget-image" data-id="5510a00" data-element_type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="283" src="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/15-5-1024x453.png" class="attachment-large size-large wp-image-9295" alt="" srcset="https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/15-5-1024x453.png 1024w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/15-5-300x133.png 300w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/15-5-768x340.png 768w, https://devlogiupskill.comingsolutions.com/wp-content/uploads/2025/12/15-5.png 1360w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-d628887 elementor-widget elementor-widget-text-editor" data-id="d628887" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li data-leveltext="" data-font="Symbol" data-listid="18" 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">And here the field is read only.</span><span data-ccp-props="{}"> </span></li></ul><p><span data-contrast="auto">Note: When we Apply Override in Child table, it does not Apply to Parent table.</span></p>								</div>
				<div class="elementor-element elementor-element-dc1a057 elementor-widget elementor-widget-text-editor" data-id="dc1a057" data-element_type="widget" data-widget_type="text-editor.default">
									<h4><span data-contrast="none">Summary: </span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h4><p><span data-contrast="auto">Dictionary Override in ServiceNow is used when you have a parent–child table relationship and want a child table to behave differently from the parent. Normally, all fields and their properties are inherited from the parent table, but with a dictionary override you can change things like default values, read‑only settings, mandatory status, reference qualifiers, calculations, attributes, and display values only for the child table. To use it, you first create a parent table (by making it extensible) and then create a child table that extends it. Any field added to the parent automatically appears in the child, but records added in the parent do not show in the child, while child records appear in the parent. To override a field, open the child table, right‑click the inherited field, go to Configure Dictionary, and create a new Dictionary Override where you select the property you want to change. The override affects only the child&#8217;s table and never the parent.</span><span data-ccp-props="{}"> </span></p>								</div>
					</div>
				</div>
				</div>
		]]></content:encoded>
					
					<wfw:commentRss>https://devlogiupskill.comingsolutions.com/dictionary-override/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Service-now Interview Questions</title>
		<link>https://devlogiupskill.comingsolutions.com/service-now-interview-questions/</link>
					<comments>https://devlogiupskill.comingsolutions.com/service-now-interview-questions/#respond</comments>
		
		<dc:creator><![CDATA[Omkar Bulbule]]></dc:creator>
		<pubDate>Wed, 26 Nov 2025 13:22:54 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://devlogiupskill.comingsolutions.com/?p=6342</guid>

					<description><![CDATA[Service-Now Interview Questions Question &#38; Answers What is difference between UI Policy and Client Script Client Script will execute first than UI Policy. UI Policy has condition but Client script does not (we need to write manually through code) UI Policy has condition where we can access the fields which are not on the form but client script does not, Client script can access only the fields which are on the form. What is import set table? Import set table is a temporary table where we will put the data for temporary purpose and later we can move the import set data to target table using transform map. Whenever we are pulling the data from external source, it is a standard process to get data into import set first and then validate the data using transform scripts and then transform the data into target table. Import set table always extends import set row table. By default import set table fields are of string type. Import set table can be used to debug the integration where we are pulling the data from external source. Update Set? Update set is used to capture the customization i.e. development in servicenow. Update set will capture the versions of every development components. Only the table data, which has update_synch attribute =true, get captured into update set. Only completed update set can be moved to another instance. We should not change the update set state from completed to in progress as per standard practice. Display business Rule? Display business rule will run when the data is getting populated on the form from server. Here we can use g_scratchpad global variable to send the service side information to client side script. For display business rule, we don’t have option like update, insert, query and delete in business rule form. Client Script will execute first than UI Policy. UI Policy has condition but Client script does not (we need to write manually through code) UI Policy has condition where we can access the fields which are not on the form but client script does not, Client script can access only the fields which are on the form. Import set table is a temporary table where we will put the data for temporary purpose and later we can move the import set data to target table using transform map. Whenever we are pulling the data from external source, it is a standard process to get data into import set first and then validate the data using transform scripts and then transform the data into target table. Import set table always extends import set row table. By default import set table fields are of string type. Import set table can be used to debug the integration where we are pulling the data from external source. Update set is used to capture the customization i.e. development in servicenow. Update set will capture the versions of every development components. Only the table data, which has update_synch attribute =true, get captured into update set. Only completed update set can be moved to another instance. We should not change the update set state from completed to in progress as per standard practice. Display business rule will run when the data is getting populated on the form from server. Here we can use g_scratchpad global variable to send the service side information to client side script. For display business rule, we don’t have option like update, insert, query and delete in business rule form.]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="6342" class="elementor elementor-6342" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-94e2d37 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="94e2d37" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-a763305 elementor-widget elementor-widget-heading" data-id="a763305" data-element_type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Service-Now Interview Questions</h2>				</div>
				<div class="elementor-element elementor-element-bf79e51 elementor-widget elementor-widget-heading" data-id="bf79e51" data-element_type="widget" data-widget_type="heading.default">
					<h3 class="elementor-heading-title elementor-size-default">Question &amp; Answers</h3>				</div>
				<div class="elementor-element elementor-element-6496f8f elementor-widget elementor-widget-n-accordion" data-id="6496f8f" data-element_type="widget" data-settings="{&quot;default_state&quot;:&quot;expanded&quot;,&quot;max_items_expended&quot;:&quot;one&quot;,&quot;n_accordion_animation_duration&quot;:{&quot;unit&quot;:&quot;ms&quot;,&quot;size&quot;:400,&quot;sizes&quot;:[]}}" data-widget_type="nested-accordion.default">
							<div class="e-n-accordion" aria-label="Accordion. Open links with Enter or Space, close with Escape, and navigate with Arrow Keys">
						<details id="e-n-accordion-item-1050" class="e-n-accordion-item" open>
				<summary class="e-n-accordion-item-title" data-accordion-index="1" tabindex="0" aria-expanded="true" aria-controls="e-n-accordion-item-1050" >
					<span class='e-n-accordion-item-title-header'><div class="e-n-accordion-item-title-text"> What is difference between UI Policy and Client Script </div></span>
							<span class='e-n-accordion-item-title-icon'>
			<span class='e-opened' ><svg aria-hidden="true" class="e-font-icon-svg e-fas-minus" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path></svg></span>
			<span class='e-closed'><svg aria-hidden="true" class="e-font-icon-svg e-fas-plus" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path></svg></span>
		</span>

						</summary>
				<div role="region" aria-labelledby="e-n-accordion-item-1050" class="elementor-element elementor-element-bc5192c e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="bc5192c" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
				<div class="elementor-element elementor-element-385aa9c elementor-widget elementor-widget-text-editor" data-id="385aa9c" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li>Client Script will execute first than UI Policy.</li><li>UI Policy has condition but Client script does not (we need to write manually through code)</li><li>UI Policy has condition where we can access the fields which are not on the form but client script does not, Client script can access only the fields which are on the form.</li></ul>								</div>
				</div>
					</details>
						<details id="e-n-accordion-item-1051" class="e-n-accordion-item" >
				<summary class="e-n-accordion-item-title" data-accordion-index="2" tabindex="-1" aria-expanded="false" aria-controls="e-n-accordion-item-1051" >
					<span class='e-n-accordion-item-title-header'><div class="e-n-accordion-item-title-text"> What is import set table? </div></span>
							<span class='e-n-accordion-item-title-icon'>
			<span class='e-opened' ><svg aria-hidden="true" class="e-font-icon-svg e-fas-minus" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path></svg></span>
			<span class='e-closed'><svg aria-hidden="true" class="e-font-icon-svg e-fas-plus" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path></svg></span>
		</span>

						</summary>
				<div role="region" aria-labelledby="e-n-accordion-item-1051" class="elementor-element elementor-element-9a18203 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="9a18203" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
				<div class="elementor-element elementor-element-c30994c elementor-widget elementor-widget-text-editor" data-id="c30994c" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li>Import set table is a temporary table where we will put the data for temporary purpose and later we can move the import set data to target table using transform map.</li><li>Whenever we are pulling the data from external source, it is a standard process to get data into import set first and then validate the data using transform scripts and then transform the data into target table.</li><li>Import set table always extends import set row table.</li><li>By default import set table fields are of string type.</li><li>Import set table can be used to debug the integration where we are pulling the data from external source.</li></ul>								</div>
				</div>
					</details>
						<details id="e-n-accordion-item-1052" class="e-n-accordion-item" >
				<summary class="e-n-accordion-item-title" data-accordion-index="3" tabindex="-1" aria-expanded="false" aria-controls="e-n-accordion-item-1052" >
					<span class='e-n-accordion-item-title-header'><div class="e-n-accordion-item-title-text"> Update Set? </div></span>
							<span class='e-n-accordion-item-title-icon'>
			<span class='e-opened' ><svg aria-hidden="true" class="e-font-icon-svg e-fas-minus" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path></svg></span>
			<span class='e-closed'><svg aria-hidden="true" class="e-font-icon-svg e-fas-plus" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path></svg></span>
		</span>

						</summary>
				<div role="region" aria-labelledby="e-n-accordion-item-1052" class="elementor-element elementor-element-617fee7 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="617fee7" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
				<div class="elementor-element elementor-element-aaf2c81 elementor-widget elementor-widget-text-editor" data-id="aaf2c81" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li>Update set is used to capture the customization i.e. development in servicenow.</li><li>Update set will capture the versions of every development components.</li><li>Only the table data, which has update_synch attribute =true, get captured into update set.</li><li>Only completed update set can be moved to another instance.</li><li>We should not change the update set state from completed to in progress as per standard practice.</li></ul>								</div>
				</div>
					</details>
						<details id="e-n-accordion-item-1053" class="e-n-accordion-item" >
				<summary class="e-n-accordion-item-title" data-accordion-index="4" tabindex="-1" aria-expanded="false" aria-controls="e-n-accordion-item-1053" >
					<span class='e-n-accordion-item-title-header'><div class="e-n-accordion-item-title-text"> Display business Rule? </div></span>
							<span class='e-n-accordion-item-title-icon'>
			<span class='e-opened' ><svg aria-hidden="true" class="e-font-icon-svg e-fas-minus" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path></svg></span>
			<span class='e-closed'><svg aria-hidden="true" class="e-font-icon-svg e-fas-plus" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path></svg></span>
		</span>

						</summary>
				<div role="region" aria-labelledby="e-n-accordion-item-1053" class="elementor-element elementor-element-ee47ac4 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="ee47ac4" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-cb2cb11 elementor-widget elementor-widget-text-editor" data-id="cb2cb11" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li>Display business rule will run when the data is getting populated on the form from server.</li><li>Here we can use g_scratchpad global variable to send the service side information to client side script.</li><li>For display business rule, we don’t have option like update, insert, query and delete in business rule form.</li></ul>								</div>
					</div>
				</div>
					</details>
					</div>
						</div>
					</div>
				</div>
				</div>
		]]></content:encoded>
					
					<wfw:commentRss>https://devlogiupskill.comingsolutions.com/service-now-interview-questions/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>ITSM</title>
		<link>https://devlogiupskill.comingsolutions.com/itsm/</link>
					<comments>https://devlogiupskill.comingsolutions.com/itsm/#respond</comments>
		
		<dc:creator><![CDATA[Omkar Bulbule]]></dc:creator>
		<pubDate>Wed, 26 Nov 2025 12:49:32 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://devlogiupskill.comingsolutions.com/?p=6321</guid>

					<description><![CDATA[ITSM Question &#38; Answers Processes in Service Operations Incident Management Problem Management Change Management Incident Management Any interruption in service is raised as an Incident Purpose is to restore normal service operations Purpose is to minimise the effect by workaround if restore is not possible Impact and Urgency are defining the Priority Challenges Detect an incident as soon as possible Incident workaround or resolution should get documented Incident assignment for L1, L2 and L3 support Correct assignment of priority in automated generated incidents Example: Not able to login in system Not able to swipe the swipe card Not able to send an emails Problem Management: Two or more incidents will raise problem Problem is to find out permanent solution for incidents through change. Reactive and Proactive Problems Known Error Workaround Examples: If we got more than one incidents like 10 users incidents that they are not able to login into system, it means something wrong with system. If we got more than one incidents for swipe card, it means the swipe machine has an issue rather than the swipe card, so we will raise one Problem for all the incidents and instead of working 10 engineers on incident will assign one engineer on Problem to fix all the incidents. Change Types Change is to enable beneficial changes to be made with minimum disruption to existing services. Definition: Change is “the addition, modification or removal of anything that could have an effect on IT services”. Normal Change – go through routine change go through all the process Any service change that is not a standard change or emergency change. Standard Change –  pre-approved change— relatively low risk A pre-authorized change that is low risk, relatively common and follows a procedure or work instruction. Emergency Change –  must be deployed as soon as possible within 24 hours like system go down, serious defect. IT should have different group of approval(CAB=Change Advisory board) A change that must be implemented as soon as possible, for example to resolve a major incident or implement a security patch. Incident Management Problem Management Change Management Any interruption in service is raised as an Incident Purpose is to restore normal service operations Purpose is to minimise the effect by workaround if restore is not possible Impact and Urgency are defining the Priority Challenges Detect an incident as soon as possible Incident workaround or resolution should get documented Incident assignment for L1, L2 and L3 support Correct assignment of priority in automated generated incidents Example: Not able to login in system Not able to swipe the swipe card Not able to send an emails Two or more incidents will raise problem Problem is to find out permanent solution for incidents through change. Reactive and Proactive Problems Known Error Workaround Examples: If we got more than one incidents like 10 users incidents that they are not able to login into system, it means something wrong with system. If we got more than one incidents for swipe card, it means the swipe machine has an issue rather than the swipe card, so we will raise one Problem for all the incidents and instead of working 10 engineers on incident will assign one engineer on Problem to fix all the incidents. Change is to enable beneficial changes to be made with minimum disruption to existing services. Definition: Change is “the addition, modification or removal of anything that could have an effect on IT services”. Normal Change – go through routine change go through all the process Any service change that is not a standard change or emergency change. Standard Change –  pre-approved change— relatively low risk A pre-authorized change that is low risk, relatively common and follows a procedure or work instruction. Emergency Change –  must be deployed as soon as possible within 24 hours like system go down, serious defect. IT should have different group of approval(CAB=Change Advisory board) A change that must be implemented as soon as possible, for example to resolve a major incident or implement a security patch.]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="6321" class="elementor elementor-6321" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-c2b6afd e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="c2b6afd" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-ebe0440 elementor-widget elementor-widget-heading" data-id="ebe0440" data-element_type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">ITSM</h2>				</div>
				<div class="elementor-element elementor-element-cf1a63c elementor-widget elementor-widget-heading" data-id="cf1a63c" data-element_type="widget" data-widget_type="heading.default">
					<h3 class="elementor-heading-title elementor-size-default">Question &amp; Answers</h3>				</div>
				<div class="elementor-element elementor-element-ce5295d elementor-widget elementor-widget-n-accordion" data-id="ce5295d" data-element_type="widget" data-settings="{&quot;default_state&quot;:&quot;expanded&quot;,&quot;max_items_expended&quot;:&quot;one&quot;,&quot;n_accordion_animation_duration&quot;:{&quot;unit&quot;:&quot;ms&quot;,&quot;size&quot;:400,&quot;sizes&quot;:[]}}" data-widget_type="nested-accordion.default">
							<div class="e-n-accordion" aria-label="Accordion. Open links with Enter or Space, close with Escape, and navigate with Arrow Keys">
						<details id="e-n-accordion-item-2160" class="e-n-accordion-item" open>
				<summary class="e-n-accordion-item-title" data-accordion-index="1" tabindex="0" aria-expanded="true" aria-controls="e-n-accordion-item-2160" >
					<span class='e-n-accordion-item-title-header'><div class="e-n-accordion-item-title-text"> Processes in Service Operations </div></span>
							<span class='e-n-accordion-item-title-icon'>
			<span class='e-opened' ><svg aria-hidden="true" class="e-font-icon-svg e-fas-minus" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path></svg></span>
			<span class='e-closed'><svg aria-hidden="true" class="e-font-icon-svg e-fas-plus" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path></svg></span>
		</span>

						</summary>
				<div role="region" aria-labelledby="e-n-accordion-item-2160" class="elementor-element elementor-element-b45f7b6 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="b45f7b6" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
				<div class="elementor-element elementor-element-4e0d746 elementor-widget elementor-widget-text-editor" data-id="4e0d746" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li>Incident Management</li><li>Problem Management</li><li>Change Management</li></ul>								</div>
				</div>
					</details>
						<details id="e-n-accordion-item-2161" class="e-n-accordion-item" >
				<summary class="e-n-accordion-item-title" data-accordion-index="2" tabindex="-1" aria-expanded="false" aria-controls="e-n-accordion-item-2161" >
					<span class='e-n-accordion-item-title-header'><div class="e-n-accordion-item-title-text"> Incident Management </div></span>
							<span class='e-n-accordion-item-title-icon'>
			<span class='e-opened' ><svg aria-hidden="true" class="e-font-icon-svg e-fas-minus" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path></svg></span>
			<span class='e-closed'><svg aria-hidden="true" class="e-font-icon-svg e-fas-plus" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path></svg></span>
		</span>

						</summary>
				<div role="region" aria-labelledby="e-n-accordion-item-2161" class="elementor-element elementor-element-be5e388 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="be5e388" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
				<div class="elementor-element elementor-element-6f5aa73 elementor-widget elementor-widget-text-editor" data-id="6f5aa73" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li>Any interruption in service is raised as an Incident</li><li>Purpose is to restore normal service operations</li><li>Purpose is to minimise the effect by workaround if restore is not possible</li><li>Impact and Urgency are defining the Priority</li><li>Challenges<ul><li>Detect an incident as soon as possible</li><li>Incident workaround or resolution should get documented</li><li>Incident assignment for L1, L2 and L3 support</li><li>Correct assignment of priority in automated generated incidents</li></ul></li><li>Example:<ul><li>Not able to login in system</li><li>Not able to swipe the swipe card</li><li>Not able to send an emails</li></ul></li></ul>								</div>
				</div>
					</details>
						<details id="e-n-accordion-item-2162" class="e-n-accordion-item" >
				<summary class="e-n-accordion-item-title" data-accordion-index="3" tabindex="-1" aria-expanded="false" aria-controls="e-n-accordion-item-2162" >
					<span class='e-n-accordion-item-title-header'><div class="e-n-accordion-item-title-text"> Problem Management: </div></span>
							<span class='e-n-accordion-item-title-icon'>
			<span class='e-opened' ><svg aria-hidden="true" class="e-font-icon-svg e-fas-minus" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path></svg></span>
			<span class='e-closed'><svg aria-hidden="true" class="e-font-icon-svg e-fas-plus" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path></svg></span>
		</span>

						</summary>
				<div role="region" aria-labelledby="e-n-accordion-item-2162" class="elementor-element elementor-element-75a2f14 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="75a2f14" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
				<div class="elementor-element elementor-element-9954d50 elementor-widget elementor-widget-text-editor" data-id="9954d50" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li>Two or more incidents will raise problem</li><li>Problem is to find out permanent solution for incidents through change.</li><li>Reactive and Proactive Problems</li><li>Known Error</li><li>Workaround</li><li>Examples:<ul><li>If we got more than one incidents like 10 users incidents that they are not able to login into system, it means something wrong with system.</li><li>If we got more than one incidents for swipe card, it means the swipe machine has an issue rather than the swipe card, so we will raise one Problem for all the incidents and instead of working 10 engineers on incident will assign one engineer on Problem to fix all the incidents.</li></ul></li></ul>								</div>
				</div>
					</details>
						<details id="e-n-accordion-item-2163" class="e-n-accordion-item" >
				<summary class="e-n-accordion-item-title" data-accordion-index="4" tabindex="-1" aria-expanded="false" aria-controls="e-n-accordion-item-2163" >
					<span class='e-n-accordion-item-title-header'><div class="e-n-accordion-item-title-text"> Change Types </div></span>
							<span class='e-n-accordion-item-title-icon'>
			<span class='e-opened' ><svg aria-hidden="true" class="e-font-icon-svg e-fas-minus" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path></svg></span>
			<span class='e-closed'><svg aria-hidden="true" class="e-font-icon-svg e-fas-plus" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path></svg></span>
		</span>

						</summary>
				<div role="region" aria-labelledby="e-n-accordion-item-2163" class="elementor-element elementor-element-e3c6041 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child" data-id="e3c6041" data-element_type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-6609294 elementor-widget elementor-widget-text-editor" data-id="6609294" data-element_type="widget" data-widget_type="text-editor.default">
									<ul><li>Change is to enable beneficial changes to be made with minimum disruption to existing services.</li><li>Definition: Change is “the addition, modification or removal of anything that could have an effect on IT services”.</li><li>Normal Change –<ul><li>go through routine change</li><li>go through all the process</li><li>Any service change that is not a standard change or emergency change.</li></ul></li><li>Standard Change –<ul><li> pre-approved change—</li><li>relatively low risk</li><li>A pre-authorized change that is low risk, relatively common and follows a procedure or work instruction.</li></ul></li><li>Emergency Change –<ul><li> must be deployed as soon as possible within 24 hours like system go down, serious defect.</li><li>IT should have different group of approval(CAB=Change Advisory board)</li><li>A change that must be implemented as soon as possible, for example to resolve a major incident or implement a security patch.</li></ul></li></ul>								</div>
					</div>
				</div>
					</details>
					</div>
						</div>
					</div>
				</div>
				</div>
		]]></content:encoded>
					
					<wfw:commentRss>https://devlogiupskill.comingsolutions.com/itsm/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Getting Started with Power BI – A Complete Beginner’s Guide</title>
		<link>https://devlogiupskill.comingsolutions.com/getting-started-with-power-bi-a-complete-beginners-guide/</link>
					<comments>https://devlogiupskill.comingsolutions.com/getting-started-with-power-bi-a-complete-beginners-guide/#respond</comments>
		
		<dc:creator><![CDATA[Omkar Bulbule]]></dc:creator>
		<pubDate>Thu, 06 Nov 2025 11:10:05 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://devlogiupskill.comingsolutions.com/?p=2294</guid>

					<description><![CDATA[🏷️ Keywords: power bi tutorial, business intelligence course, power bi for beginners 📝 Intro: Power BI is Microsoft’s leading business intelligence tool used to visualize and analyze data.This guide helps you understand its basics and how to create your first dashboard. 🔹 Key Points: 🔚 Conclusion: Power BI empowers professionals to turn data into decisions. Learn it step-by-step to boost your analytics career.]]></description>
										<content:encoded><![CDATA[
<p></p>



<p></p>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3f7.png" alt="🏷" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Keywords:</h3>



<p>power bi tutorial, business intelligence course, power bi for beginners</p>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4dd.png" alt="📝" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Intro:</h3>



<p>Power BI is Microsoft’s leading business intelligence tool used to visualize and analyze data.<br>This guide helps you understand its basics and how to create your first dashboard.</p>



<p></p>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f539.png" alt="🔹" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Key Points:</h3>



<ul class="wp-block-list">
<li>What is Power BI</li>



<li>Power BI Components (Desktop, Service, Mobile)</li>



<li>Importing and Cleaning Data</li>



<li>Creating Visuals and Dashboards</li>



<li>Sharing Reports</li>
</ul>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f51a.png" alt="🔚" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Conclusion:</h3>



<p>Power BI empowers professionals to turn data into decisions. Learn it step-by-step to boost your analytics career.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://devlogiupskill.comingsolutions.com/getting-started-with-power-bi-a-complete-beginners-guide/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Top 5 Career Opportunities in Generative AI</title>
		<link>https://devlogiupskill.comingsolutions.com/top-5-career-opportunities-in-generative-ai/</link>
					<comments>https://devlogiupskill.comingsolutions.com/top-5-career-opportunities-in-generative-ai/#respond</comments>
		
		<dc:creator><![CDATA[Omkar Bulbule]]></dc:creator>
		<pubDate>Thu, 06 Nov 2025 11:06:25 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://devlogiupskill.comingsolutions.com/?p=2288</guid>

					<description><![CDATA[🏷️ Keywords: ai career path, ai jobs, gen ai future 🔹 Key Points: 🔚 Conclusion: Gen AI roles are among the fastest-growing tech careers — build skills now to secure your future.]]></description>
										<content:encoded><![CDATA[
<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3f7.png" alt="🏷" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Keywords:</h3>



<p>ai career path, ai jobs, gen ai future</p>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f539.png" alt="🔹" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Key Points:</h3>



<ol class="wp-block-list">
<li>Prompt Engineer</li>



<li>AI Model Trainer</li>



<li>AI Data Analyst</li>



<li>Chatbot Developer</li>



<li>AI Consultant</li>
</ol>



<h3 class="wp-block-heading"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f51a.png" alt="🔚" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Conclusion:</h3>



<p>Gen AI roles are among the fastest-growing tech careers — build skills now to secure your future.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://devlogiupskill.comingsolutions.com/top-5-career-opportunities-in-generative-ai/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Hello world!</title>
		<link>https://devlogiupskill.comingsolutions.com/hello-world/</link>
					<comments>https://devlogiupskill.comingsolutions.com/hello-world/#comments</comments>
		
		<dc:creator><![CDATA[comincse_devlogiupskill]]></dc:creator>
		<pubDate>Mon, 27 Oct 2025 08:28:04 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://devlogiupskill.comingsolutions.com/?p=1</guid>

					<description><![CDATA[Welcome to WordPress. This is your first post. Edit or delete it, then start writing!]]></description>
										<content:encoded><![CDATA[
<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://devlogiupskill.comingsolutions.com/hello-world/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
