- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2023 03:08 AM
Hi,
Create a reference field to the personal computer table that is filtered to only computers assigned to that user that are listed as not retired/end of life. Show the Name, Manufacturer and Model ID fields in the drop-down so it is easy to find the computer that is lost.
I have done most of it, still I have to work on 'computers assigned to that user'. Kindly help.
Regards
Suman P.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2023 03:41 AM
Hello @Community Alums
You have to put
Reference Qualifier :
javascript:"life_cycle_stage!=End of Life^life_cycle_stage_status!=Retired^assigned_to= current.variables.assigned_to"
variable attributes you have written previously was correct.
ServiceNow Developer
I know one thing, and that is that I know nothing.
- Socrates
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2023 03:16 AM - edited 09-08-2023 03:16 AM
Hello @Community Alums
Do you have any variable which refers to User table..??
if yes, then you can use Advanced reference qualifier :
javascript: "life_cycle_stage!=End of Life^life_cycle_stage_status!=Retired^assigned_to=" + current.variables.<Name of Variable refering to User table>
ServiceNow Developer
I know one thing, and that is that I know nothing.
- Socrates
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2023 03:35 AM - edited 09-08-2023 03:36 AM
Hi @Vishal Birajdar ,
Thank you so much, I think I am still doing something wrong. Kindly help.
javascript:"life_cycle_stage!=End of Life^life_cycle_stage_status!=Retired^assigned_to= current.variables.assigned_to"
Regards
Suman P.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2023 03:41 AM
Hello @Community Alums
You have to put
Reference Qualifier :
javascript:"life_cycle_stage!=End of Life^life_cycle_stage_status!=Retired^assigned_to= current.variables.assigned_to"
variable attributes you have written previously was correct.
ServiceNow Developer
I know one thing, and that is that I know nothing.
- Socrates