This article is a supplement to the ServiceNow documentation. For full documentation please refer ServiceNow official website
Checkout our NEW Video Channel you can like and subscribe too!

Introduction

A import set helps us to pull in data from various data sources and import them into the ServiceNow table.

Ways to import data

  1. Manual import of data from a file source(CSV, XLS, or XML)
  2. Manual import of data from an online data source(HTTP, FTP, LDAP, or JDBC)
  3. Import data periodically from a data source by defining scheduled imports
  4. Import data from a web service

Role

A user must have the admin or import_admin role to import data using import set.

There are four key points that we should keep in mind while working with import set tool:

  1. External data source: The source from where the data needs to be imported. Below are the multiple sources:
    • JDBC
    • LDAP
    • HTTP
    • FTP
    • Excel
    • CSV
    • XML
  2. 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.
  3. Transform map: A transform map helps to create a relationship between fields in the import set table and the target table.
  4. Target table: A target table is the one into which the data being imported is either inserted or updated.

Below are the different modules under the System Import Sets application:

importsetln080520201.PNG importsetln080520202.PNG importsetln080520203.PNG

Best Practice

  1. Before import we need to Verify/clean our data.
  2. Data should not be imported in extremely large chunks

Importing data

Data Source

  1. Navigate to System Import Sets > Administration > Data Sources importsetln080520204.PNG
  2. Fillup fields as required. For more information please click here importsetln080520205.PNG
  3. Attach the attachment if Type is file importsetln080520206.PNG
  4. Click on Test Load 20 Records importsetln080520207.PNG

Create Transform Map

  1. Navigate to System Import Sets > Create Transform Map importsetln080520208.PNG
  2. Fillup below fields:
    • Name: Any Name
    • Source table: Select the import set table
    • Active: Checked
    • Run business rules: Unchecked (If unchecked, business rules will not get executed)
    • Enforce mandatory fields: Only Mapped Fields (The option selected here can change the way values of mandatory fields are handled)
    • Copy empty fields: Checked (When checked, the empty values from the staging table copied to the target table instead of leaving it as NULL)
    • Target table: Select table where we insert the data in ServiceNow
    • Order: 100
    • Run script: Unchecked (When checked, the transform map script executes during the transform process. Leave it unchecked for now. We have covered the topic in detail later in the chapter.) importsetln080520209.PNG
  3. Click on Submit.
  4. Click on the Mapping Assist related link. importsetln0805202010.PNG
  5. We will get below transform map assist page. importsetln0805202011.PNG
  6. The columns (fields) of the import set staging table are shown on the left.Columns of the Target table will be shown on the right side list. The center Field Map grid is used to configure mapping and map fields on the left to the fields on the right. To map a field on the left to a field on the field list, both the fields must be in the same position in the field map grid.
  7. Click on the Save button. importsetln0805202012.PNG
  8. We can define coalesce on one or more fields. When a field mapping is marked as coalesce, the field is used as a unique key. importsetln0805202013.PNG
  9. To modify a property of a field mapping, click on the info icon next to the map entry in the Field Maps list in the transform map detail form.We will open the entry for the ApproverDataMap field to change its property importsetln0805202014.PNG
  10. In the field map entry’s detail form, as shown in the following screenshot, change the value of the Choice action field to ignore: importsetln0805202020.PNG
  11. Click on the Update button importsetln0805202016.PNG
  12. To run the transform click on Transform from the related link. importsetln0805202017.PNG
  13. Verify the correct transform map is selected and select the Transform button importsetln0805202021.PNG 14.The process can take some time depending on the number of records being copied and progress will be visible importsetln0805202019.PNG

Load Data

  1. Navigate to System Import Sets >Load Data importsetln0805202022.PNG
  2. Fillup below fields:
    • Import set table: There are two option. importsetln0805202023.PNG
    1. Existing table:If you select existing table then select Import set table which you have created before) importsetln0805202024.PNG
    2. Create table: If you select create table fill the below details:
      • Label: Any Name
      • Name: This field will be automatically populated importsetln0805202025.PNG
      • Source of import: Select File/ Data Source importsetln0805202026.PNG
      • If you select File then you will get below option
      • File: Choose the file that you want to import in ServiceNow
      • Sheet number: 1
      • Header row: 1 importsetln0805202027.PNG
      • If you select Data Source then you will get below option
      • Data Source: Select data source from the dropdown. importsetln0805202028.PNG
  3. Click on Submit importsetln0805202029.PNG
  4. Once the process will complete, you will get below message importsetln0805202030.PNG
  5. 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. importsetln0805202031.PNG
  6. 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. importsetln0805202032.PNG

Transform Script

TmapScript160520201.PNG The transform scripts can be used to control the behavior of the transformation process. TmapScript160520202.PNG

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.

    Content