
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2018 05:40 PM
I have created my report for my teams. I included "work notes" and the report is in list format. The problem is that it includes all work notes for that ticket making the report very long making it several pages. I would like to only get the last work note. This is what I am getting now:
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2018 06:51 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2018 06:51 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2024 03:17 PM
Can you point me in the right direction on step 1 "Create a field bar", what is a field bar?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2021 12:48 PM
Thank you Munender
1. Created new field on Task table
Name: Last Comment
Value: u_last_comment
Type: String
Max length to 4,000 (or less if you want)
Add attribute: is_multi_text=false
2. Created Business Rule on for Tasks:
When: Before
Insert / Update
Script:
current.u_last_comment= current.work_notes.getJournalEntry(1);
3. Done