- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-24-2022 07:47 AM
I have a transform map that transforms from a loaded CSV onto a table which has the Work Notes (journal input) and Activities sections. It works normally for regular fields, but it doesn't work with the work notes. It's supposed to take a string from the CSV and place it in as a work note. When I try to do so with a regular transform mapping, CSV column "work notes" to the table's Work Notes (u_work_notes), the notes show up when I look at work notes in the list view, but not when I actually open the form and look at the Activities. I also have tried setting via onAfter script with a few different ways like
target.comments.setJournalEntry('Testing');
and
target.setValue('u_work_notes','Testing');
but neither of these have worked. I've also made sure audit was enabled on this field as well as on the collection record for the table, and I've tried using target.update() as well as target.setWorkflow(true); as well but no luck there either. What am I missing here? Why would the work note set by the mapping show up in the list view but not in the record's activites?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-24-2022 11:59 AM
I got it You have to enable Business Rules on your transform map
Please mark answer correct/helpful based on impact
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-24-2022 11:57 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-24-2022 11:59 AM
I got it You have to enable Business Rules on your transform map
Please mark answer correct/helpful based on impact
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-24-2022 12:03 PM
Thank you so much, that was it! Not sure why as I am not using business rules in order to transform, but I really appreciate your help.