Location of the CIs discovered from SCCM is emptyIssue <!-- div.margin { padding: 10px 40px 40px 30px; } table.tocTable { border: 1px solid; border-color: #e0e0e0; background-color: #fff; } .title { color: #d1232b; font-weight: normal; font-size: 28px; } h1 { color: #d1232b; font-weight: normal; font-size: 21px; margin-bottom: 5px; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #cccccc; } h2 { color: #646464; font-weight: bold; font-size: 18px; } h3 { color: #000000; font-weight: bold; font-size: 16px; } h4 { color: #666666; font-weight: bold; font-size: 15px; } h5 { color: #000000; font-weight: bold; font-size: 13px; } h6 { color: #000000; font-weight: bold; font-size:14px; } ul, ol { margin-left: 0; list-style-position: outside; } --> Symptoms Location Field on some CIs imported from SCCM is empty Release Issue occurs irrespective of version being used Cause When CI records from SCCM are imported on import set table, it populates the data in u_username field of on import set table. Transform Map - SCCM 2012 v2 Computer Identity is responsible for populating the computer CIs from Import Set table to target table - cmdb_ci_computer. The Transform Map holds a script to validate data in u_username field with data on sys_user table and the sys id of correct record on sys_user table is added in assigned_to field on the target table. Location of user who is selected in assgined_to field is populated in location field on target table - cmdb_ci_computer. In Case if u_username in import set table field doesn't have value, system doesn't populate value in assigned_to and location field on target table. Below is the script used - function setAssignedTo() { var userName = source.u_username; if (JSUtil.nil(userName)) return; var x = userName.indexOf("\\"); if (x > -1) userName = userName.substring(x + 1); var nameField = gs.getProperty('glide.discovery.assigned_user_match_field', "user_name"); var userSysID = GlideUser.getSysId(nameField, userName); target.assigned_to = userSysID; var gr = new GlideRecord('sys_user'); gr.addQuery('sys_id',userSysID); gr.query(); if(gr.next()){ target.location = gr.location.getUniqueValue(); target.department = gr.department.getUniqueValue(); }}Note - System property - glide.discovery.assigned_user_match_field holds a value of column name on sys_user table.The script mentioned above verifies the value in u_username field to the field mentioned as value in property - glide.discovery.assigned_user_match_field.Another contributor for location to be set on target record is a business rule - Update location as neededhttps://<instance_name>.service-now.com/nav_to.do?uri=sys_script.do?sys_id=b8f3b061933202002f217a75e57ffb2e Resolution This is a data issue in SCCM. Ask customer to correct data in SCCM so that it pushes correct value in u_username column on import set table.