References qualifier Dictionary entry

Tomas Linde
Tera Expert

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.

1 ACCEPTED SOLUTION

Hi,

Please use below:

javascript: 'department=' + current.caller_id.department;  

On user table we have OOB department field with name 'department' not 'u_department'.

Please appreciate the efforts of community contributors by marking appropriate response as correct answer and helpful, this may help other community users to follow correct solution in future.
Thanks
Anil Lande

View solution in original post

5 REPLIES 5

Hi,

Please use below:

javascript: 'department=' + current.caller_id.department;  

On user table we have OOB department field with name 'department' not 'u_department'.

Please appreciate the efforts of community contributors by marking appropriate response as correct answer and helpful, this may help other community users to follow correct solution in future.
Thanks
Anil Lande