Reference qualifier with catalog item
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2024 05:11 AM - edited 03-11-2024 05:26 AM
Hi All,
I have a variable. name "ABC" it's a choice list, and another variable which is a List collector name "BCD". So variable BCD depends on ABC variable.
So I have used a reference qualifier in BCD variable.
javascript new ScriptIncludeName.FunctionName(current.variables.u_bcd);
The script include is client callable and when i checked it is coming as empty. any idea how can get desired values..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2024 05:43 AM
variable name is correct.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2024 07:03 AM
Are you getting anything in the log on script include?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2024 09:26 PM - edited 03-11-2024 09:28 PM
yes , i am getting the value text. but the value is empty.
Also the choice's are coming from the table, is that could be a problem?
the choice of variable ABC is coming from the table, when I checked onChange client script on ABC it is giving me the correct choice. but that value is not getting passed to script include.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2024 10:41 PM
Hi @Priya75 I see the issue now, the below line is incorrect
ga.addQuery("value", value); // there is no value field in incident.
change this to
ga.addQuery("state", value); // now you can compare state with value
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2024 11:59 PM
I have just given the example, as i can't share the proper details.