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:45 AM
Hello @Priya75
Please use below format to call script include in reference qualifier
javascript new ScriptIncludeName.FunctionName(current.variables.u_bcd);
javascript : new nameofyourscrptinclude().FunctionName(current.variables.u_bcd);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2024 05:50 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2024 07:02 AM
that is already there , i forgot it here.