Need to update a Journal field
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-26-2013 11:03 PM
I need to update a journal field.
Can anyone please provide me the syntax for updating a journal field.
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-27-2013 06:05 AM
I have been able to do it in two different ways. Examples:
Comments Field:
target.comments.setJournalEntry(source.u_comments); //This will set comments with a value.
target.comments = "" + source.comments; //Also will set it.
Work Notes Field:
target.work_notes.setJournalEntry(source.u_worknotes); //This will set work_notes with a value.
target.work_notes = "" + source.work_notes; //Also will set it.