- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2025 03:32 AM
I am uploading the data via transform map, how can i add the value on the close notes according to the excel ,as close filed is not available in the mapping assist.
Any help or suggestion will be helpful.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2025 01:49 AM
If my response helped please mark it correct and close the thread so that it benefits future readers.
The discussion can continue on your question as well.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2025 04:24 AM
To populate the Close Notes field during a Transform Map import, you can use a Transform Script since it may not be directly available in the Mapping Assist. Open your Transform Map, navigate to the Transform Scripts section, and add an onBefore script. In this script, map the Close Notes field manually by using the field name from your Excel file. For example, you can write a script like
if (source.u_close_notes) {
target.close_notes = source.u_close_notes;
}
, where u_close_notes is the column name in your Excel file, and close_notes is the field in the target table. Save the script, test the Transform Map, and verify that the Close Notes field is populated correctly during the import.