- 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 08:53 PM
work notes field data store in sys_journal_field table . have you checked the "sys_journal_field" table record check the values there.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-09-2019 08:57 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-09-2019 09:18 PM
yes all the values are present on sys_journal_field table. but why this values are not visible on the form. Even I have increased the work not field value

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-09-2019 09:22 PM
its journal type field and this type of field does not hold the value , if you will update the field value using script then it will save into the journal table.
as well as on form if you will set it manually and save the form the entry will be available on sys_journal_field table.