- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-21-2016 08:19 AM
Dear all,
I have created a custom field called "Activity History" into incident table, this is a string field and I'd like to use it to store all updates performed on an incident, something like the following:
<date/time> - <user>:
<comment>
<date/time> - <user>:
<comment>
...
Since, as far as I understood, the "Post" button near the comments field doesn't submit the form, I assume can't use Business Rules to achieve my goal... so, is there a way to catch comments value when Post button is clicked and add its content to my custom field?
Thanks in advance.
Cheers
Ernesto
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-21-2016 10:41 AM
In an out of box instance, all your additional comments and worknotes will be stored in table : "sys_journal_field"
For each entry it creates a new record in sys_journal_field table and you can retrieve the values back from the table.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-21-2016 10:41 AM
In an out of box instance, all your additional comments and worknotes will be stored in table : "sys_journal_field"
For each entry it creates a new record in sys_journal_field table and you can retrieve the values back from the table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-23-2016 04:14 AM
Hi Nireesha,
thanks for your feedback, I'll try your solution, I suppose it will work
Tnx again
Ernesto