How to prevent Microsoft Project Import from overriding/clearing out the "Description" fieldSummaryAfter importing a Microsoft Project (.mpp) file using the 'Update an existing project' option, the 'Description' field is cleared or modified unexpectedly on the Project record. This occurs because the 'Description' field for Project and Project Tasks gets set to the value in the 'Notes' field in the Microsoft Project. This is expected behavior.InstructionsBesides simply checking that the Notes field in MS Project is populated as expected before your import, you can block this behavior by performing the following steps: 1. Navigate to System Extension Points > Scripted Extension Points 2. Search for the API Name of "global.MSProjectImportTaskFormatter" and go to the record 3. Click the "Create implementation" related link. A new Script Include is generated 4. In the new script include, replace the code within the "taskFormatter" function with the following: taskRawProperties = JSON.parse(taskRawProperties);plannedTask = JSON.parse(plannedTask);var sysId = plannedTask['sys_id'];var gr = new GlideRecord(plannedTask['sys_class_name']);gr.get(sysId);var description = gr.getValue('description');var keyValueMap = {};if (description) {keyValueMap['description'] = description;}/* Append or format the values and add them to keyValueMap to be added to the project task.Key will be a field in the ServiceNow project task table, and value can be respective formatted value. */return JSON.stringify(keyValueMap); 5. Save the Script Include Doing so should prevent the Notes field on MS Project from overriding the Description in ServiceNow if it's already populated.