- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2023 09:18 AM - edited 05-15-2023 09:19 AM
Hi All,
Thanks for checking my post.
We have reference qualifier in the incident form on a custom field service as :
javascript:new incidentServerUtils().getService(current.caller_id);
which triggers;
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2023 06:29 AM
Hi @Kaustubh k , To get the field value in Record producer, need to use variables.<Field/Variable Name>.
In your use case, It should work when you replace the "current.caller_id" to "current.variables.caller_id" in reference qualifier.
javascript:new incidentServerUtils().getService(current.variables.caller_id);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2023 06:29 AM
Hi @Kaustubh k , To get the field value in Record producer, need to use variables.<Field/Variable Name>.
In your use case, It should work when you replace the "current.caller_id" to "current.variables.caller_id" in reference qualifier.
javascript:new incidentServerUtils().getService(current.variables.caller_id);