
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-28-2016 06:35 AM
I have a request to include either the last work note or last additional comment on a list report. I know how to include the last journal entry within notifications but I am not seeing a way to do this on a report. Any advice would be appreciated.
Thanks
-Chris
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-05-2016 03:30 AM
Thank you for the clarification. I was able to reproduce this (given some more sample data.)
The only way I can see that you can do this is to have a secondary u_comments (string) field and a business rule that maintains it. Something like
current.u_comments = current.comments.getJournalEntry(1);
This gets the latest entry and overwrites what ever is in the u_comments field. Use that on your report and you should be good.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-04-2016 01:06 PM
Fuji Patch 12 Hot Fix 1
Yes - Incident. Do you think this needs a call to HI?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-05-2016 02:59 AM
I have also checked on Helsinki (PDI) and the same is true.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-05-2016 03:15 AM
I'm still only seeing the last comment (Helsinki.) We're clearly doing something differently. Here's what I did:
- Reports> View / Run
- Create a list report on the incident table
- Adding the Additional Comments field
- Click Run
Share the steps you are doing to produce all additional comments please.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-05-2016 03:21 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-05-2016 03:30 AM
Thank you for the clarification. I was able to reproduce this (given some more sample data.)
The only way I can see that you can do this is to have a secondary u_comments (string) field and a business rule that maintains it. Something like
current.u_comments = current.comments.getJournalEntry(1);
This gets the latest entry and overwrites what ever is in the u_comments field. Use that on your report and you should be good.