- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-09-2019 08:43 PM
Hi,
I am importing data from london to madrid by transform map.All the data is imported properly except Work notes.
Issue is on the tables list view I can able to see work notes data but when I open the record then the work notes field is empty.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-09-2019 10:19 PM
try it by onBefore transform script.
eg:
var gr= new GlideRecord('your target table');
gr.addQuery('number',source.<field name>); // here you will add filter so you can identify the record
gr.query();
if(gr.next()){
gr.work_notes= source.<work note field >;
gr.update();
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-09-2019 09:23 PM
kindly refer the doc link for further details.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-09-2019 09:35 PM
thank you but in LONDON PROD instance all entries on work notes are visible on the Activity field.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-09-2019 09:39 PM
journal field entry will be visible on activity formatter .
just confirming in your scenario it is not visible even on activity formatter ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-09-2019 09:50 PM
no it is not visible on activity formatter

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-09-2019 10:03 PM
seems like in transform map you have to update the record then it will be visible.
how are you setting the value in work notes field ? by using script or direct field mapping ?