Transform Map: How to skip Records?1.Overview A transform map is a set of field maps that determine the relationships between fields in an import set and fields in an existing ServiceNow table, such as Incident [incident] or User [sys_user]. During import how to ignore a record in the import table? 2. How to Skip Records? On transform map enable Run script and write script as follow: 1. Checking for a value if (source.u_passenger_region != 'USA'){ ignore = true;} Add and/or conditions as required. Based on the evaluation of the if condition, set the ignore= true; That record in the import table will be skipped. 2. Conditionally skipping records. In this case, ignore records, where passenger region is not USA. var EmpNo = source.u_emp_no; var Passenger = new GlideRecord('sys_user'); Passenger.addQuery('employee_number', EmpNo); Passenger.query(); if(Passenger.next()){ if(Passenger.u_region == 'USA') { target.caller_id = Passenger.sys_id; var assignmentGroup = new GlideRecord("sys_user_group"); assignmentGroup.addQuery("name", "GSO Technology Support"); assignmentGroup.query(); if(assignmentGroup.next()) { target.assignment_group = assignmentGroup.sys_id; } target.subcategory="International Travel"; target.short_description = source.u_routing; }else{ ignore=true; } } 3. Ignore field value if empty if (source.fieldname === ''){ignore = true;} 3. For better control of ignoring, use Transform Scripts? When the ignore script logic is put in main script, it runs unconditionally all the time. Instead create Transform script, choose when to run.