Post-Processing Manager for Users in non-LDAP User ImportIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; text-decoration: underline; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } --> For LDAP integrations, ServiceNow provides the LDAPUtil script include and its process manager function to populate managers that may be missing when a user is inserted or updated. There does not appear to be a stock equivalent for users who are loaded from a non-LDAP source, such as a flat file or database. The LDAPUtil script include further leverages Java classes that cannot be modified or modeled to support a similar process on non-LDAP loads. Since these types of user loads could also insert or update a user that references a manager who does not yet exist, there is a need for a similar solution. ResolutionOption 1: Create a second transform map that is ordered higher that transforms the same import set after the initial load to update the manager field. This is a very simple solution, but causes the entire import set to be reprocessed when the condition probably only exists on a small handful of records. Depending on the population of users in your system, this may or may not be acceptable. Option 2: Map the manager and set the map to create the missing record. If the key that is used to identify the manager is the same key field used to coalesce the user transform map, the manager record will be created with minimal information (just the key) and the subsequent update will populate the remaining information when the manager record is ultimately found. This avoids multiple passes and post processing, but could potentially result in skeletal records because there is a possibility that the referenced manager will never be loaded. This should not be the case, but it is possible. It does require that you coalesce on the same value that you are using to identify the manager. This is probably usually the case, but there has been at least one case where it was not. Option 3: This option involves a script include and several transform map scripts but has the advantage of only firing on the records that need to be updated. If you have 100k records, you won't have to process 100k records twice the same way you would in the first solution. It doesn't require that customers use the same key for the manager as they do for the map coalesce or that they create skeletal user records for users that were never created. Map the manager field using whatever key is appropriate and set the choice action to create. While this sounds counterintuitive, it will later allow you to leverage an onForeignInsert script to identify failed mappings.Create an onStart transform map script for the sole purpose of declaring and initializing an array with adequate scope://Setup array of records to have managers reprocessed.var reprocessManagers = []; Create an onForeignInsert script that checks to see if the insert is for the manager field and pushes the value into our array. Setting ignore equal to true in this context causes the reference insert to be skipped, which is what you always want to do. Our user import should ultimately bring this record in its entirety into the system. However, you will have managed to capture the failed insert in the array. //Collect missing managers for post-processingif (name == 'manager') { reprocessManagers.push(source.sys_id + ''); ignore=true; }Create a script include that can be called from the transform map upon completion in order to process the array of source records that were not available during the initial transform. Note: This script include is very specific to the customer for which it was implemented. It can be modified or generalized to suit other customers, but it is listed here to demonstrate the approach. var UserImportUtil = Class.create();UserImportUtil.prototype = { initialize: function() { }, processManagers: function(reprocessArray, table) { //Get all rows that resolved to a target var importRows = new GlideRecord(table); importRows.addQuery('sys_id','IN',reprocessArray); importRows.addNotNullQuery('sys_target_sys_id'); importRows.query(); while (importRows.next()) { if (!JSUtil.nil(importRows.u_manager_employee_nbr)) { //Get the manager var managerGR = new GlideRecord('sys_user'); if (managerGR.get('email',importRows.u_manager_employee_nbr)) { //Get record to update var targetGR = new GlideRecord(importRows.sys_target_table); if (!JSUtil.nil(importRows.sys_target_sys_id) && targetGR.get(importRows.sys_target_sys_id)) { targetGR.manager = managerGR.sys_id; targetGR.update(); } } } } }, type: 'UserImportUtil'};Finally, add an onComplete script to the transform map to call the script include and process the array of values that were accumulated in the onForeignInsertscript: //Handles the cases where the manager is not present when updatingvar userImportUtil = new UserImportUtil(); userImportUtil.processManagers(reprocessManagers, 'u_import_users'); Conclusion: This approach will now only perform database operations and loop through the records for which this condition exists, significantly reducing the overhead of post-processing.