- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-29-2023 05:03 AM
Good afternoon, I need a Reference qualifier for a dictionary entry in which only the department of the selected user is filtered. I have this code, but it is not work.
javascript: 'department=' + current.sys_id.u_department
Thanks in advance.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-29-2023 05:48 AM - edited ‎11-29-2023 05:49 AM
Hi,
Please use below:
javascript: 'department=' + current.caller_id.department;
On user table we have OOB department field with name 'department' not 'u_department'.
Thanks
Anil Lande

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-29-2023 05:48 AM - edited ‎11-29-2023 05:49 AM
Hi,
Please use below:
javascript: 'department=' + current.caller_id.department;
On user table we have OOB department field with name 'department' not 'u_department'.
Thanks
Anil Lande