How to display the data on Close notes while importing the data from excel.

Shivani_singh
Tera Contributor

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.

1 ACCEPTED SOLUTION

@Shivani_singh 

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.

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

View solution in original post

10 REPLIES 10

sanketpatil09
Tera Guru

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.