<?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>Shubhangi Huske &#8211; LogiUpSkill</title>
	<atom:link href="https://logiupskills.com/author/shubhangihuske/feed/" rel="self" type="application/rss+xml" />
	<link>https://logiupskills.com</link>
	<description></description>
	<lastBuildDate>Mon, 09 Feb 2026 11:11:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://logiupskills.com/wp-content/uploads/2025/11/cropped-Untitled-design-37-32x32.png</url>
	<title>Shubhangi Huske &#8211; LogiUpSkill</title>
	<link>https://logiupskills.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Import set and Transform map </title>
		<link>https://logiupskills.com/import-set-and-transform-map/</link>
					<comments>https://logiupskills.com/import-set-and-transform-map/#respond</comments>
		
		<dc:creator><![CDATA[Shubhangi Huske]]></dc:creator>
		<pubDate>Fri, 06 Feb 2026 06:43:33 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://logiupskills.com/?p=14885</guid>

					<description><![CDATA[<p>Import set and Transform map Introduction  An import set helps us to pull in data from various data sources and import them into the ServiceNow table.  Ways to import data  Manual import of data from a file source (CSV, XLS, or XML)  Manual import of data from an online data source (HTTP, FTP, LDAP, or JDBC)  Import data periodically from a data source by defining scheduled imports  Import data from a web service  There are four key points that we should keep in mind while working with import set tool: External data source: The source from where the data needs to be imported. Below are the multiple sources:   a. JDBC   b. LDAP  c. HTTP   d. FTP    e. Excel  f. CSV   g. X   Import set table: An import set table is a temporary staging table used to store raw data imported from an external source. It consists of sets of columns and rows imported from external sources. The system also adds a few columns that are used to identify the status of the import process.  Transform map: A transform map helps to create a relationship between fields in the import set table and the target table.  Target table: A target table is the one into which the data being imported is either inserted or updated. Best Practice  Before import we need to Verify/clean our data.  Data should not be imported in extremely large chunks  Load Data  Navigate to System Import Sets &#62;Load Data     2. Fill-up below fields: Import set table: There are two options.  Create Table  Existing table  Create Table      3. Once import set created it will redirect you to following screen   4.  5. Now we need to create transform map  6. 7. Field mapping &#8211;  Field mappings are rules that are used to map the fields of stagging or import set table with target table fields.  Field maps establish a relationship between a field in an import set table and a field in the target table.  8. Mapping assist &#8211;  To map the fields of import set table with target table manually, click the Mapping Assist Related Link.  9. 10. Auto Map:  Click the Auto Map Matching Fields Related Link for ServiceNow to attempt to match the staging table columns to the target table columns based on column name. The auto mapped fields appear in the Field Maps section (tab). 11. 12. 13. Transform map is ready to transform data from import set to target table14. 15. Check import set table 16. 17. Now check the main table &#8211; data is loaded 18. 2. Existing table:  If you select existing table then select Import set table which you have created before)  a. Create table: If you select create table fill the below details:        i. Label: Any Name        ii. Name: This field will be automatically populated         iii. Source of import: Select File/ Data Source       iv. If you select File then you will get below option       v. File : Choose the file that you want to import in ServiceNow     vi. Sheet number: 1     vii. Header row: 1    viii. If you select File then you will get below option    ix. Data Source: Select data source from the dropdown. b. Click on Submit 3. Once the process will complete, you will get below message 4. We have to check that the data we is inserted properly into the import set table. We will click on Import Sets links to open Import Sets module. 5. Every attempt to upload new data will create a new Import Sets entry and will be linked to at least one import set table and a source. Each Import Sets is given a unique number that begins with ISET and is followed by 7 digits. The state of the import set is used to determine the status of the import set and tell whether the data is currently loading, loaded, processed, or canceled. Transform Script  The transform scripts can be used to control the behavior of the transformation process. onStart: The onStart event script is processed at the start of an import run, before any data rows are read. onStart runs at the very beginning of the import before any of the records are processed. If you want to notify user that the import has started then you can create the onStart script to send out the message.  onBefore: The onBefore event script is processed at the start of a row transformation, before the source row is transformed into the target row. onBefore runs before every row is processed. This script runs for each individual record. If you want to set or alter values on the source table it can be done here. onBefore scripts can be used to verify that the value of a source field is valid. If the value is invalid, the script can take action.  onAfter: The onAfter runs after every row has been processed, after the source row has been transformed into the target row and saved. Fields on the target table can be accessed from this point. They contain the value that was just inserted. At the time that this script runs, the source and target field values should be the same.  onForeignInsert: The onForeignInsert runs before a new referenced record is created. Since this script only runs on an insert, the choice action “create” has to be selected for that field map. If “create” is not selected, the script will never run.  At this point, we can access values on the source table. We also have access to the fields on the target table that have already been filled in. The one being transformed, however, will not yet have a value. onForeignInsert scripts can manage what happens when a new record is added to a referenced table. When I was playing around with onForeignInserts, I couldn’t find a way to change values on the referenced table from my script. There might be a way to do this, but I haven’t figured it out yet. An onAfter script might be a better option if that’s what you’re going for.  onChoiceCreate: he onChoiceCreate event script is processed at the start of a choice value creation, before the new choice value is created.   onComplete: The onComplete event script is processed at the end of an import run, after all data rows are read and transformed. onReject:The onReject event script is processed during the occurrence of a foreign record or choice creation, and the foreign record or choice is rejected, the entire transformation row is not saved.  Choice Action :  Choice Action is for Reference field and choice field only. It has</p>
<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/import-set-and-transform-map/">Import set and Transform map </a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="14885" class="elementor elementor-14885" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}">
				<div class="elementor-element elementor-element-d910247 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="d910247" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-5744e56 elementor-widget elementor-widget-heading" data-id="5744e56" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Import set and Transform map </h2>				</div>
				<div class="elementor-element elementor-element-0b4d2fe elementor-widget elementor-widget-text-editor" data-id="0b4d2fe" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h5><b><span data-contrast="none">Introduction</span></b><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:360,&quot;335559739&quot;:80}"> </span></h5><p><span data-contrast="none">An </span><b><span data-contrast="auto">import set</span></b><span data-contrast="none"> helps us to pull in data from various data sources and import them into the ServiceNow table.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:450}"> </span></p><h5><b><span data-contrast="none">Ways to import data</span></b><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:360,&quot;335559739&quot;:80}"> </span></h5><ol><li><span data-contrast="none">Manual import of data from a file source (CSV, XLS, or XML)</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></li><li><span data-contrast="none">Manual import of data from an online data source (HTTP, FTP, LDAP, or JDBC)</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></li><li><span data-contrast="none">Import data periodically from a data source by defining scheduled imports</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></li><li><span data-contrast="none">Import data from a web service</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> <br /></span></li></ol>								</div>
				<div class="elementor-element elementor-element-35888ba elementor-widget elementor-widget-text-editor" data-id="35888ba" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h5><strong><span class="TextRun SCXW11690464 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW11690464 BCX0" data-ccp-parastyle="heading 1">There are four key points that we should keep in mind while working with import set</span></span></strong><span class="TextRun SCXW11690464 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW11690464 BCX0" data-ccp-parastyle="heading 1"><strong> tool:</strong></span></span></h5><ol><li><b><span data-contrast="none">External data source:</span></b><span data-contrast="none"> The source from where the data needs to be imported. Below are the multiple sources:</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> <br /></span><span data-contrast="none">  a. JDBC</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> <br /></span>  b. LDAP<br /><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:0}">  c. <span class="TextRun SCXW195676176 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW195676176 BCX0">HTTP</span></span><span class="EOP SCXW195676176 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span><br />  d. <span class="TextRun SCXW42980315 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW42980315 BCX0">FTP</span></span><span class="EOP SCXW42980315 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span> <br />  e. Excel<br />  f. CSV <br />  g. X  </span></li><li><b><span data-contrast="none">Import set table:</span></b><b><span data-contrast="none"> </span></b><span data-contrast="none">An import set table is a temporary staging table used to store raw data imported from an external source. It consists of sets of columns and rows imported from external sources. The system also adds a few columns that are used to identify the status of the import process.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></li><li><b><span data-contrast="none">Transform map:</span></b><b><span data-contrast="none"> </span></b><span data-contrast="none">A transform map helps to create a relationship between fields in the import set table and the target table.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></li><li><b><span data-contrast="none">Target table:</span></b><b><span data-contrast="none"> </span></b><span data-contrast="none">A target table is the one into which the data being imported is either inserted or updated.</span></li></ol>								</div>
				<div class="elementor-element elementor-element-7a45036 elementor-widget elementor-widget-text-editor" data-id="7a45036" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h5><b><span data-contrast="none">Best Practice</span></b><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:360,&quot;335559739&quot;:80}"> </span></h5><ol><li data-leveltext="%1." data-font="Open Sans" data-listid="3" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="none">Before import we need to Verify/clean our data.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></li></ol><ol><li data-leveltext="%1." data-font="Open Sans" data-listid="3" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="2" data-aria-level="1"><span data-contrast="none">Data should not be imported in extremely large chunks</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></li></ol><h5><b><span data-contrast="none">Load Da</span></b><b style="font-size: 16px"><span data-contrast="none">ta</span></b><span style="font-size: 16px" data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:360,&quot;335559739&quot;:80}"> </span></h5><ol><li data-leveltext="%1." data-font="Open Sans" data-listid="6" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="none"><span data-contrast="none">Navigate to System Impor</span></span>t Sets &gt;Load Data </li></ol>								</div>
				<div class="elementor-element elementor-element-73cc399 elementor-widget elementor-widget-image" data-id="73cc399" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img decoding="async" width="282" height="89" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture1.png" class="attachment-large size-large wp-image-14915" alt="" />															</div>
				<div class="elementor-element elementor-element-633cecd elementor-widget elementor-widget-text-editor" data-id="633cecd" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW146766562 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW146766562 BCX0">   2. Fill-up</span><span class="NormalTextRun SCXW146766562 BCX0"> below fields:<br /></span></span></p><p><span data-contrast="none"><strong>Import set table</strong>:</span><span data-contrast="none"> </span><span data-contrast="auto">There are two options.</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></p><ol><li><span data-contrast="auto">Create Table</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></li><li><span data-contrast="auto">Existing table</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></li></ol>								</div>
				<div class="elementor-element elementor-element-ac82592 elementor-widget elementor-widget-text-editor" data-id="ac82592" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<ol><li><h5><strong><span class="TextRun Highlight SCXW224346917 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW224346917 BCX0" data-ccp-parastyle="heading 2">Create Table</span></span><span class="EOP SCXW224346917 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215}"> </span></strong></h5></li><li> </li></ol>								</div>
				<div class="elementor-element elementor-element-a406e99 elementor-widget elementor-widget-image" data-id="a406e99" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img fetchpriority="high" decoding="async" width="624" height="348" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture2.png" class="attachment-large size-large wp-image-14937" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture2.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/Picture2-300x167.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-136db6f elementor-widget elementor-widget-text-editor" data-id="136db6f" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW150597428 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW150597428 BCX0">  3. Once import set created it will redirect you to following screen</span></span><span class="EOP SCXW150597428 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> <br />  4.</span></p>								</div>
				<div class="elementor-element elementor-element-fd63c0a elementor-widget elementor-widget-image" data-id="fd63c0a" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img decoding="async" width="624" height="192" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture3.png" class="attachment-large size-large wp-image-14944" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture3.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/Picture3-300x92.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-18fea0c elementor-widget elementor-widget-text-editor" data-id="18fea0c" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW246712902 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW246712902 BCX0"> 5. Now we need to create transform map</span></span><span class="EOP SCXW246712902 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> <br /> 6.</span></p>								</div>
				<div class="elementor-element elementor-element-6f5cd20 elementor-widget elementor-widget-image" data-id="6f5cd20" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="224" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture4.png" class="attachment-large size-large wp-image-14951" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture4.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/Picture4-300x108.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-b301b9e elementor-widget elementor-widget-text-editor" data-id="b301b9e" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW246712902 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW246712902 BCX0">7. </span></span><b><span data-contrast="none">Field mapping &#8211;</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="none">Field mappings are rules that are used to map the fields of stagging or import set table with target table fields.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559685&quot;:720,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p><p><span data-contrast="none">Field maps establish a relationship between a field in an import set table and a field in the target table.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559685&quot;:720,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p><p><span class="EOP SCXW246712902 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"><br />8. </span><b><span data-contrast="none">Mapping assist &#8211;</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="none">To map the fields of import set table with target table manually, click the Mapping Assist Related Link.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559685&quot;:720,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> <br /><br /><br />9.</span></p>								</div>
				<div class="elementor-element elementor-element-be05d35 elementor-widget elementor-widget-image" data-id="be05d35" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="302" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture5.png" class="attachment-large size-large wp-image-14961" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture5.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/Picture5-300x145.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-8dce93a elementor-widget elementor-widget-text-editor" data-id="8dce93a" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>10. <b><span data-contrast="none">Auto Map:</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><p><span data-contrast="none">Click the Auto Map Matching Fields Related Link for ServiceNow to attempt to match the staging table columns to the target table columns based on column name. The auto mapped fields appear in the Field Maps section (tab).</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559685&quot;:720,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> <br />11.</span></p>								</div>
				<div class="elementor-element elementor-element-35f46ca elementor-widget elementor-widget-image" data-id="35f46ca" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="280" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture6.png" class="attachment-large size-large wp-image-14968" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture6.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/Picture6-300x135.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-4eebb33 elementor-widget elementor-widget-text-editor" data-id="4eebb33" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559685&quot;:720,&quot;335559738&quot;:0,&quot;335559739&quot;:240}">12.</span></p>								</div>
				<div class="elementor-element elementor-element-6f6792c elementor-widget elementor-widget-image" data-id="6f6792c" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="280" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture7.png" class="attachment-large size-large wp-image-14969" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture7.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/Picture7-300x135.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-325df32 elementor-widget elementor-widget-text-editor" data-id="325df32" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559685&quot;:720,&quot;335559738&quot;:0,&quot;335559739&quot;:240}">13. <span class="TextRun SCXW84365993 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW84365993 BCX0">Transform map is ready to transform data from import set to target table</span></span><span class="EOP SCXW84365993 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"><br />14.</span></span></p>								</div>
					</div>
				</div>
		<div class="elementor-element elementor-element-8afb1e4 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent" data-id="8afb1e4" data-element_type="container" data-e-type="container" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-2dd29b0 elementor-widget elementor-widget-image" data-id="2dd29b0" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="192" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture8.png" class="attachment-large size-large wp-image-14980" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture8.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/Picture8-300x92.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-3c7f556 elementor-widget elementor-widget-text-editor" data-id="3c7f556" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559685&quot;:720,&quot;335559738&quot;:0,&quot;335559739&quot;:240}">15. <span class="TextRun SCXW27334667 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW27334667 BCX0">Check import set table</span></span><span class="EOP SCXW27334667 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span><span class="EOP SCXW84365993 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"><br />16.</span></span></p>								</div>
				<div class="elementor-element elementor-element-462e471 elementor-widget elementor-widget-image" data-id="462e471" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="345" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture9.png" class="attachment-large size-large wp-image-14984" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture9.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/Picture9-300x166.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-76452de elementor-widget elementor-widget-text-editor" data-id="76452de" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559685&quot;:720,&quot;335559738&quot;:0,&quot;335559739&quot;:240}">17. <span class="TextRun SCXW115153437 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW115153437 BCX0">Now check the main table &#8211; data is loaded</span></span><span class="EOP SCXW115153437 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> <br />18.</span></span></p>								</div>
				<div class="elementor-element elementor-element-1049e8b elementor-widget elementor-widget-image" data-id="1049e8b" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="258" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture10-1.png" class="attachment-large size-large wp-image-14994" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture10-1.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/Picture10-1-300x124.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-5887601 elementor-widget elementor-widget-text-editor" data-id="5887601" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h5><strong><span class="EOP SCXW224346917 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215}"> <span class="TextRun SCXW195678280 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW195678280 BCX0" data-ccp-charstyle="Title Char">2. </span><span class="NormalTextRun SCXW195678280 BCX0" data-ccp-charstyle="Title Char">Existing table:</span></span><span class="TextRun SCXW195678280 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW195678280 BCX0" data-ccp-parastyle="heading 3"> </span></span></span></strong></h5><p><span class="EOP SCXW224346917 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215}"><span class="TextRun SCXW195678280 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW195678280 BCX0" data-ccp-parastyle="heading 3"><span class="TextRun SCXW94190302 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW94190302 BCX0" data-ccp-parastyle="heading 3">If you select existing table then select Import set table which you have created before)</span></span></span></span></span><span class="EOP SCXW224346917 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215}"><span class="TextRun SCXW195678280 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW195678280 BCX0" data-ccp-parastyle="heading 3"><span class="EOP SCXW94190302 BCX0" data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></span></span></span><strong><span class="EOP SCXW224346917 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215}"><span class="TextRun SCXW195678280 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW195678280 BCX0" data-ccp-parastyle="heading 3"><br /></span></span></span></strong></p>								</div>
				<div class="elementor-element elementor-element-700af4d elementor-widget elementor-widget-image" data-id="700af4d" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="509" height="356" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture11.png" class="attachment-large size-large wp-image-14998" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture11.png 509w, https://logiupskills.com/wp-content/uploads/2026/02/Picture11-300x210.png 300w" sizes="(max-width: 509px) 100vw, 509px" />															</div>
				<div class="elementor-element elementor-element-b918cf9 elementor-widget elementor-widget-image" data-id="b918cf9" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="479" height="339" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture12.png" class="attachment-large size-large wp-image-14999" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture12.png 479w, https://logiupskills.com/wp-content/uploads/2026/02/Picture12-300x212.png 300w" sizes="(max-width: 479px) 100vw, 479px" />															</div>
				<div class="elementor-element elementor-element-e455b09 elementor-widget elementor-widget-text-editor" data-id="e455b09" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>a. <span data-contrast="none">Create table: If you select create table fill the below details:</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p><p>      i.<b><span data-contrast="none"> Label:</span></b><span data-contrast="none"> </span><span data-contrast="none">Any Name</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p><p>      ii.<b><span data-contrast="none"> Name:</span></b><span data-contrast="none"> </span><span data-contrast="none">This field will be automatically populated</span></p>								</div>
				<div class="elementor-element elementor-element-ffa47b4 elementor-widget elementor-widget-image" data-id="ffa47b4" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="511" height="178" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture13.png" class="attachment-large size-large wp-image-15011" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture13.png 511w, https://logiupskills.com/wp-content/uploads/2026/02/Picture13-300x105.png 300w" sizes="(max-width: 511px) 100vw, 511px" />															</div>
				<div class="elementor-element elementor-element-3705906 elementor-widget elementor-widget-text-editor" data-id="3705906" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></p><p>      iii. <b><span data-contrast="none"><span class="TextRun SCXW27312776 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW27312776 BCX0">Source of import: </span></span></span></b><span class="TextRun SCXW27312776 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW27312776 BCX0">Select File/ Data Source</span></span></p>								</div>
				<div class="elementor-element elementor-element-1ff1f50 elementor-widget elementor-widget-image" data-id="1ff1f50" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="336" height="85" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture14.png" class="attachment-large size-large wp-image-15025" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture14.png 336w, https://logiupskills.com/wp-content/uploads/2026/02/Picture14-300x76.png 300w" sizes="(max-width: 336px) 100vw, 336px" />															</div>
				<div class="elementor-element elementor-element-c54b945 elementor-widget elementor-widget-text-editor" data-id="c54b945" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>      iv. <span class="TextRun SCXW145841409 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW145841409 BCX0">If you select </span><span class="NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW145841409 BCX0">File</span><span class="NormalTextRun SCXW145841409 BCX0"> then you will get below </span><span class="NormalTextRun SCXW145841409 BCX0">option</span></span><span class="EOP SCXW145841409 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> <br />      v. <span class="TextRun SCXW11535525 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW11535525 BCX0"><strong>File </strong>:</span></span><span class="TextRun SCXW11535525 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW11535525 BCX0"> Choose the file that you want to import in ServiceNow<br />     vi. <span class="TextRun SCXW262144632 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW262144632 BCX0"><strong>Sheet number</strong>:</span></span><span class="TextRun SCXW262144632 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW262144632 BCX0"> 1</span></span><span class="EOP SCXW262144632 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> <br />    vii. <span class="TextRun SCXW101583899 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW101583899 BCX0"><strong>Header row</strong>:</span></span><span class="TextRun SCXW101583899 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW101583899 BCX0"> 1</span></span></span><br /></span></span></span></p>								</div>
				<div class="elementor-element elementor-element-c145300 elementor-widget elementor-widget-image" data-id="c145300" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="526" height="265" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture15.png" class="attachment-large size-large wp-image-15036" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture15.png 526w, https://logiupskills.com/wp-content/uploads/2026/02/Picture15-300x151.png 300w" sizes="(max-width: 526px) 100vw, 526px" />															</div>
				<div class="elementor-element elementor-element-46c4560 elementor-widget elementor-widget-text-editor" data-id="46c4560" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>   viii. <span class="TextRun SCXW145841409 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW145841409 BCX0">If you select </span><span class="NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW145841409 BCX0">File</span><span class="NormalTextRun SCXW145841409 BCX0"> then you will get below </span><span class="NormalTextRun SCXW145841409 BCX0">option</span></span><span class="EOP SCXW145841409 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> <br />   ix. <span class="TextRun SCXW186475726 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW186475726 BCX0"><strong>Data Source</strong>:</span></span><span class="TextRun SCXW186475726 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW186475726 BCX0"> Select data source from the dropdown.</span></span></span></p>								</div>
				<div class="elementor-element elementor-element-943364a elementor-widget elementor-widget-image" data-id="943364a" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="498" height="188" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture16.png" class="attachment-large size-large wp-image-15044" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture16.png 498w, https://logiupskills.com/wp-content/uploads/2026/02/Picture16-300x113.png 300w" sizes="(max-width: 498px) 100vw, 498px" />															</div>
				<div class="elementor-element elementor-element-6da97bf elementor-widget elementor-widget-image" data-id="6da97bf" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="169" height="77" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture17.png" class="attachment-large size-large wp-image-15047" alt="" />															</div>
				<div class="elementor-element elementor-element-d0a3bbd elementor-widget elementor-widget-text-editor" data-id="d0a3bbd" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p>b<strong>.</strong> <span class="TextRun SCXW24520619 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW24520619 BCX0">Click on Submit<br /></span></span></p><p><span class="TextRun SCXW24520619 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW24520619 BCX0"><br /><span class="TextRun SCXW238503429 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW238503429 BCX0">3. Once the process will complete, you will get below message</span></span><br /></span></span></p>								</div>
				<div class="elementor-element elementor-element-496729c elementor-widget elementor-widget-image" data-id="496729c" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="606" height="278" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture18.png" class="attachment-large size-large wp-image-15064" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture18.png 606w, https://logiupskills.com/wp-content/uploads/2026/02/Picture18-300x138.png 300w" sizes="(max-width: 606px) 100vw, 606px" />															</div>
				<div class="elementor-element elementor-element-9449488 elementor-widget elementor-widget-text-editor" data-id="9449488" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW24520619 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW24520619 BCX0"><span class="TextRun SCXW238503429 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW238503429 BCX0">4. <span class="NormalTextRun SCXW220702802 BCX0">We have to check that the data we </span><span class="NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW220702802 BCX0">is</span><span class="NormalTextRun SCXW220702802 BCX0"> inserted properly into the import set table. We will click on Import Sets links to open </span><span class="NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW220702802 BCX0">Import</span><span class="NormalTextRun SCXW220702802 BCX0"> Sets module.</span></span></span><br /></span></span></p>								</div>
				<div class="elementor-element elementor-element-ebe27b5 elementor-widget elementor-widget-image" data-id="ebe27b5" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="535" height="109" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture19.png" class="attachment-large size-large wp-image-15072" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture19.png 535w, https://logiupskills.com/wp-content/uploads/2026/02/Picture19-300x61.png 300w" sizes="(max-width: 535px) 100vw, 535px" />															</div>
				<div class="elementor-element elementor-element-ff82209 elementor-widget elementor-widget-text-editor" data-id="ff82209" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW24520619 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW24520619 BCX0"><span class="TextRun SCXW238503429 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW238503429 BCX0">5. <span class="NormalTextRun SCXW108416683 BCX0">Every attempt to upload new data will create a new Import Sets entry and will be linked to at least one import set table and a source. Each Import Sets is given a unique number that begins with ISET and is followed by 7 digits. The state of the import set is used to </span><span class="NormalTextRun SCXW108416683 BCX0">determine</span><span class="NormalTextRun SCXW108416683 BCX0"> the status of the import set and tell whether the data is currently loading, loaded, processed, or canceled.</span></span></span><br /></span></span></p>								</div>
				<div class="elementor-element elementor-element-74f775a elementor-widget elementor-widget-image" data-id="74f775a" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="626" height="66" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture20.png" class="attachment-large size-large wp-image-15080" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture20.png 626w, https://logiupskills.com/wp-content/uploads/2026/02/Picture20-300x32.png 300w" sizes="(max-width: 626px) 100vw, 626px" />															</div>
				<div class="elementor-element elementor-element-8be05ce elementor-widget elementor-widget-text-editor" data-id="8be05ce" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h5><strong><span class="TextRun SCXW24520619 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW24520619 BCX0"><span class="TextRun SCXW215588176 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW215588176 BCX0" data-ccp-parastyle="heading 1">Transform Script</span></span><span class="EOP SCXW215588176 BCX0" data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:360,&quot;335559739&quot;:80}"> <br /></span></span></span></strong></h5>								</div>
				<div class="elementor-element elementor-element-85b5860 elementor-widget elementor-widget-image" data-id="85b5860" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="471" height="295" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture21.png" class="attachment-large size-large wp-image-15087" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture21.png 471w, https://logiupskills.com/wp-content/uploads/2026/02/Picture21-300x188.png 300w" sizes="(max-width: 471px) 100vw, 471px" />															</div>
				<div class="elementor-element elementor-element-f3854ec elementor-widget elementor-widget-text-editor" data-id="f3854ec" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW190879912 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW190879912 BCX0">The transform scripts can be used to control the behavior of the transformation process.</span></span></p>								</div>
				<div class="elementor-element elementor-element-f84dc66 elementor-widget elementor-widget-image" data-id="f84dc66" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="123" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture22.png" class="attachment-large size-large wp-image-15090" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture22.png 836w, https://logiupskills.com/wp-content/uploads/2026/02/Picture22-300x58.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/Picture22-768x148.png 768w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-4ab9839 elementor-widget elementor-widget-text-editor" data-id="4ab9839" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span data-contrast="none">onStart:</span><span data-contrast="none"> The onStart event script is processed at the start of an import run, before any data rows are read. onStart runs at the very beginning of the import before any of the records are processed. If you want to notify user that the import has started then you can create the onStart script to send out the message.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:450}"> </span></p><p><b><span data-contrast="none">onBefore: </span></b><span data-contrast="none">The onBefore event script is processed at the start of a row transformation, before the source row is transformed into the target row. onBefore runs before every row is processed. This script runs for each individual record. If you want to set or alter values on the source table it can be done here. onBefore scripts can be used to verify that the value of a source field is valid. If the value is invalid, the script can take action.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:450}"> </span></p><p><b><span data-contrast="none">onAfter:</span></b><span data-contrast="none"> The onAfter runs after every row has been processed, after the source row has been transformed into the target row and saved. Fields on the target table can be accessed from this point. They contain the value that was just inserted. At the time that this script runs, the source and target field values should be the same.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:450}"> </span></p><p><b><span data-contrast="none">onForeignInsert:</span></b><span data-contrast="none"> The onForeignInsert runs before a new referenced record is created. Since this script only runs on an insert, the choice action “create” has to be selected for that field map. If “create” is not selected, the script will never run.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:450}"> </span></p><p><span data-contrast="none">At this point, we can access values on the source table. We also have access to the fields on the target table that have already been filled in. The one being transformed, however, will not yet have a value. onForeignInsert scripts can manage what happens when a new record is added to a referenced table. When I was playing around with onForeignInserts, I couldn’t find a way to change values on the referenced table from my script. There might be a way to do this, but I haven’t figured it out yet. An onAfter script might be a better option if that’s what you’re going for.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:450}"> </span></p><p><b><span data-contrast="none">onChoiceCreate:</span></b><span data-contrast="none"> </span><span data-contrast="none">he onChoiceCreate event script is processed at the start of a choice value creation, before the new choice value is created.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:450}"> </span></p><p><b><span data-contrast="none"> </span></b><b><span data-contrast="none">onComplete:</span></b><span data-contrast="none"> </span><span data-contrast="none">The onComplete event script is processed at the end of an import run, after all data rows are read and transformed. onReject:The onReject event script is processed during the occurrence of a foreign record or choice creation, and the foreign record or choice is rejected, the entire transformation row is not saved.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:450}"> </span></p>								</div>
				<div class="elementor-element elementor-element-4e575cc elementor-widget elementor-widget-text-editor" data-id="4e575cc" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h5><strong><span class="TextRun SCXW71310059 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW71310059 BCX0">Choice </span><span class="NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW71310059 BCX0">Action</span></span><span class="TextRun SCXW71310059 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW71310059 BCX0"> :</span></span></strong><span class="EOP SCXW71310059 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> <br /></span></h5><p><span data-contrast="none">Choice Action is for Reference field and choice field only. It has three choices i.e. create, reject, Ignore. By defult choice action is create. It is  for  unknown data transfer. We can set choice action in field maps in transform history.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="22" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><b><span data-contrast="none">Case1</span></b><span data-contrast="none">&#8211; Choice Action is </span><b><span data-contrast="none">Create</span></b><span data-contrast="none">:</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></li></ul><p><span data-contrast="none">In this case if unknown data is entered then the data value is created in respective reference field or choice field and data is transferred in Target table.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="23" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><b><span data-contrast="none">Case2</span></b><span data-contrast="none">&#8211; Choice Action is </span><b><span data-contrast="none">ignore</span></b><span data-contrast="none">:</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></li></ul><p><span data-contrast="none">In this case if unknown data is entered then the data value is ignored in respective reference field or choice field  and there will be emplty value get transfered   (or previous value remains unchanged) in Target table.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559738&quot;:0,&quot;335559739&quot;:240}"> </span></p><ul><li data-leveltext="" data-font="Symbol" data-listid="24" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><b><span data-contrast="none">Case3</span></b><span data-contrast="none">&#8211; Choice Action is </span><b><span data-contrast="none">reject</span></b><span data-contrast="none">:</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559738&quot;:0,&quot;335559739&quot;:0}"> </span></li></ul><p><span data-contrast="none">In this case if unknown data is entered the whole record is rejected and no data transfer in Target table.<br /></span></p>								</div>
				<div class="elementor-element elementor-element-9c93c13 elementor-widget elementor-widget-text-editor" data-id="9c93c13" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h5><span class="TextRun SCXW259703996 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="none"><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1">Identification Rule:</span><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1"> </span></span></h5><p><span class="TextRun SCXW259703996 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="none"><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1">An </span><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1">Identification Rule</span><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1"> in ServiceNow is a set of criteria used by the </span><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1">Identification and Reconciliation Engine (IRE)</span><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1"> to </span><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1">determine</span><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1"> whether </span><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1">an </span><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1">incoming CI (Configuration Item) already exists in the CMDB—or whether a new CI record should be created.</span></span><span class="LineBreakBlob BlobObject DragDrop SCXW259703996 BCX0"><span class="SCXW259703996 BCX0"> </span><br class="SCXW259703996 BCX0" /></span><span class="TextRun SCXW259703996 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="none"><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1">These rules help </span><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1">maintain</span><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1"> </span><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1">data accuracy</span><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1">, </span><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1">prevent duplicate CIs</span><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1">, and ensure </span><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1">consistent CI identity</span><span class="NormalTextRun SCXW259703996 BCX0" data-ccp-parastyle="heading 1"> across multiple data sources.</span></span><span class="EOP SCXW259703996 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;201341983&quot;:0,&quot;335559738&quot;:210,&quot;335559739&quot;:210,&quot;335559740&quot;:300}"> <br /></span></p>								</div>
				<div class="elementor-element elementor-element-cf66c54 elementor-widget elementor-widget-text-editor" data-id="cf66c54" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h5><b><span data-contrast="none">Why Identification Rules Matter</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335557856&quot;:16777215,&quot;335559685&quot;:0,&quot;335559991&quot;:360}"> </span></h5><p><span data-contrast="auto">Prevent duplicate CI entries</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true}"> </span></p><p><span data-contrast="auto">Avoid merging unrelated CI into one </span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true}"> </span></p><p><span data-contrast="auto">Ensure consistent identification across Discovery, SCCM, Import set, service mapping.</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true}"> </span></p>								</div>
				<div class="elementor-element elementor-element-f50416a elementor-widget elementor-widget-text-editor" data-id="f50416a" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<h5><strong><span class="TextRun SCXW109108615 BCX0" lang="EN-GB" xml:lang="EN-GB" data-contrast="none"><span class="NormalTextRun SCXW109108615 BCX0" data-ccp-parastyle="heading 1">How Identification Rules Work with Import Sets in ServiceNow</span></span><span class="EOP SCXW109108615 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;201341983&quot;:0,&quot;335559738&quot;:281,&quot;335559739&quot;:281,&quot;335559740&quot;:300}"> </span></strong></h5><p><span class="TextRun SCXW120374923 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW120374923 BCX0">Create Import set </span><span class="NormalTextRun SCXW120374923 BCX0">or </span><span class="NormalTextRun SCXW120374923 BCX0">load the data</span></span><span class="EOP SCXW120374923 BCX0" data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}"> </span></p>								</div>
				<div class="elementor-element elementor-element-137082f elementor-widget elementor-widget-image" data-id="137082f" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="242" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture23.png" class="attachment-large size-large wp-image-15119" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture23.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/Picture23-300x116.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-4d230b6 elementor-widget elementor-widget-text-editor" data-id="4d230b6" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW51264815 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW51264815 BCX0">Create a </span></span><strong><span class="TextRun SCXW51264815 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW51264815 BCX0">Transform Map</span></span></strong><span class="TextRun SCXW51264815 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW51264815 BCX0">.</span></span><span class="EOP SCXW51264815 BCX0" data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true}"> </span></p>								</div>
				<div class="elementor-element elementor-element-51d3658 elementor-widget elementor-widget-image" data-id="51d3658" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="189" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture24-1024x302.png" class="attachment-large size-large wp-image-15127" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture24-1024x302.png 1024w, https://logiupskills.com/wp-content/uploads/2026/02/Picture24-300x89.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/Picture24-768x227.png 768w, https://logiupskills.com/wp-content/uploads/2026/02/Picture24-1536x453.png 1536w, https://logiupskills.com/wp-content/uploads/2026/02/Picture24-2048x604.png 2048w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-9aae45a elementor-widget elementor-widget-text-editor" data-id="9aae45a" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW162571701 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW162571701 BCX0">Click on </span></span><strong><span class="TextRun SCXW162571701 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW162571701 BCX0">Auto-Match Fields / Mapping Assist</span></span><span class="TextRun SCXW162571701 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW162571701 BCX0">.</span></span></strong></p>								</div>
				<div class="elementor-element elementor-element-9a2a184 elementor-widget elementor-widget-image" data-id="9a2a184" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="248" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture25-1024x397.png" class="attachment-large size-large wp-image-15132" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture25-1024x397.png 1024w, https://logiupskills.com/wp-content/uploads/2026/02/Picture25-300x116.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/Picture25-768x297.png 768w, https://logiupskills.com/wp-content/uploads/2026/02/Picture25-1536x595.png 1536w, https://logiupskills.com/wp-content/uploads/2026/02/Picture25-2048x793.png 2048w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-c8427d0 elementor-widget elementor-widget-text-editor" data-id="c8427d0" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW146986983 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW146986983 BCX0">Map the fields from the </span></span><strong><span class="TextRun SCXW146986983 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW146986983 BCX0">source table</span></span></strong><span class="TextRun SCXW146986983 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW146986983 BCX0"> to the </span></span><strong><span class="TextRun SCXW146986983 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW146986983 BCX0">target table</span></span></strong><span class="TextRun SCXW146986983 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW146986983 BCX0">.</span></span><span class="EOP SCXW146986983 BCX0" data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true}"> </span></p>								</div>
				<div class="elementor-element elementor-element-7483247 elementor-widget elementor-widget-image" data-id="7483247" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="254" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture26.png" class="attachment-large size-large wp-image-15136" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture26.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/Picture26-300x122.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-7c84eb3 elementor-widget elementor-widget-image" data-id="7c84eb3" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="273" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture27-1024x436.png" class="attachment-large size-large wp-image-15140" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture27-1024x436.png 1024w, https://logiupskills.com/wp-content/uploads/2026/02/Picture27-300x128.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/Picture27-768x327.png 768w, https://logiupskills.com/wp-content/uploads/2026/02/Picture27-1536x655.png 1536w, https://logiupskills.com/wp-content/uploads/2026/02/Picture27-2048x873.png 2048w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-7ae7d34 elementor-widget elementor-widget-text-editor" data-id="7ae7d34" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW102532773 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW102532773 BCX0">Create the </span></span><strong><span class="TextRun SCXW102532773 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW102532773 BCX0">Transform Script</span></span></strong><span class="TextRun SCXW102532773 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW102532773 BCX0"> (if </span><span class="NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW102532773 BCX0">required).</span></span><span class="EOP SCXW102532773 BCX0" data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true}"> </span></p>								</div>
				<div class="elementor-element elementor-element-5f47304 elementor-widget elementor-widget-image" data-id="5f47304" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="269" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture28-1024x430.png" class="attachment-large size-large wp-image-15149" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture28-1024x430.png 1024w, https://logiupskills.com/wp-content/uploads/2026/02/Picture28-300x126.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/Picture28-768x323.png 768w, https://logiupskills.com/wp-content/uploads/2026/02/Picture28-1536x645.png 1536w, https://logiupskills.com/wp-content/uploads/2026/02/Picture28-2048x860.png 2048w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-5c6c88d elementor-widget elementor-widget-image" data-id="5c6c88d" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="272" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture29.png" class="attachment-large size-large wp-image-15156" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture29.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/Picture29-300x131.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-fb566e7 elementor-widget elementor-widget-image" data-id="fb566e7" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="378" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture30.png" class="attachment-large size-large wp-image-15157" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture30.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/Picture30-300x182.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-cc8fec4 elementor-widget elementor-widget-image" data-id="cc8fec4" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="291" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture31.png" class="attachment-large size-large wp-image-15162" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture31.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/Picture31-300x140.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-0c7c2cc elementor-widget elementor-widget-text-editor" data-id="0c7c2cc" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW223805008 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW223805008 BCX0">Click on </span></span><strong><span class="TextRun SCXW223805008 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW223805008 BCX0">Transform</span></span></strong><span class="TextRun SCXW223805008 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW223805008 BCX0">.</span></span><span class="EOP SCXW223805008 BCX0" data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true}"> </span></p>								</div>
				<div class="elementor-element elementor-element-50a4297 elementor-widget elementor-widget-image" data-id="50a4297" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="640" height="252" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture32-1024x403.png" class="attachment-large size-large wp-image-15174" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture32-1024x403.png 1024w, https://logiupskills.com/wp-content/uploads/2026/02/Picture32-300x118.png 300w, https://logiupskills.com/wp-content/uploads/2026/02/Picture32-768x302.png 768w, https://logiupskills.com/wp-content/uploads/2026/02/Picture32-1536x605.png 1536w, https://logiupskills.com/wp-content/uploads/2026/02/Picture32-2048x806.png 2048w" sizes="(max-width: 640px) 100vw, 640px" />															</div>
				<div class="elementor-element elementor-element-136745d elementor-widget elementor-widget-image" data-id="136745d" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="90" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture33.png" class="attachment-large size-large wp-image-15175" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture33.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/Picture33-300x43.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
				<div class="elementor-element elementor-element-ddd8f13 elementor-widget elementor-widget-text-editor" data-id="ddd8f13" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><span class="TextRun SCXW129928025 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW129928025 BCX0">Verify the<strong> </strong></span></span><strong><span class="TextRun SCXW129928025 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW129928025 BCX0">result</span></span></strong><span class="TextRun SCXW129928025 BCX0" lang="EN-US" xml:lang="EN-US" data-contrast="auto"><span class="NormalTextRun SCXW129928025 BCX0">.</span></span><span class="EOP SCXW129928025 BCX0" data-ccp-props="{}"> </span></p>								</div>
				<div class="elementor-element elementor-element-ee82c03 elementor-widget elementor-widget-image" data-id="ee82c03" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" decoding="async" width="624" height="183" src="https://logiupskills.com/wp-content/uploads/2026/02/Picture34.png" class="attachment-large size-large wp-image-15179" alt="" srcset="https://logiupskills.com/wp-content/uploads/2026/02/Picture34.png 624w, https://logiupskills.com/wp-content/uploads/2026/02/Picture34-300x88.png 300w" sizes="(max-width: 624px) 100vw, 624px" />															</div>
					</div>
				</div>
				</div>
		<p>&lt;p&gt;The post <a rel="nofollow" href="https://logiupskills.com/import-set-and-transform-map/">Import set and Transform map </a> first appeared on <a rel="nofollow" href="https://logiupskills.com">LogiUpSkill</a>.&lt;/p&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://logiupskills.com/import-set-and-transform-map/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
