
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-19-2021 06:25 AM
Hi,
I have an requirement of displaying on those cases which are created by logged in user in my record producer.
Please help me as the below thing is not working:
javascript:'active=true^sys_created_by='+gs.getUserID()+'^EQ'
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-19-2021 06:50 AM
Try now
javascript:'active=true^sys_created_by='+gs.getUserName()+'^EQ'

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-19-2021 06:54 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-19-2021 06:55 AM
check the "display" field has set true on which column. might be it has set true on short description field thats why its showing you, changes it to number will show the number.
Note: Consider, the changes on "Display' field on table column will make the global changes.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-19-2021 06:57 AM
Yes got it. Thanks 🙂

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2021 12:56 AM
Is there a way showing both case number and short description without changing the display value in the case table ?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-19-2021 06:51 AM
try with
javascript:'active=true^sys_created_by='+gs.getUserID()
or
active=true^sys_created_by=gs.getUserID()