- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2023 02:48 PM
Evening all.
I have a field called 'u_core' which sits on the company table the value differs for each company. I wish for this value to automatically display on a record producer when a caller is submitting an incident.
What is the best why to achieve this?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2023 04:31 AM
I'm assuming you have a company variable that you are populating, or want the u_core from the company related to the caller? For whichever field/variable is changing, you can create an onChange Catalog Client Script that uses getReference to return the u_core of the company.
If it's the company related to the caller, or another step removed like that then you'll need the script to call a Script Include via GlideAjax instead.
You could also see if the code-less approach will work in this scenario
The good news is that starting with the Utah release, there is a new feature on variables to easily populate them based on the value of another variable.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2023 04:31 AM
I'm assuming you have a company variable that you are populating, or want the u_core from the company related to the caller? For whichever field/variable is changing, you can create an onChange Catalog Client Script that uses getReference to return the u_core of the company.
If it's the company related to the caller, or another step removed like that then you'll need the script to call a Script Include via GlideAjax instead.
You could also see if the code-less approach will work in this scenario
The good news is that starting with the Utah release, there is a new feature on variables to easily populate them based on the value of another variable.