Advance Reference Qualifier not Working
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2024 02:57 AM - edited 04-24-2024 03:02 AM
Hi,
In the service catlog I have a reference variable named as account, but I'm applying filter to according to the requirement in which i have used script include and calling it by reference qualifier.
I have checked my script include by calling it on bg script and it is working fine.
I have only doubt on advance reference qualifier can you please check and confirm this.
javascript: new scriptIncludeName().functionName();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2024 03:28 AM
Hello @nowitsvashu ,
Check if 'Client callable' check is set to true and also if there's any scooped problem.
Try this:
javascript : new scope.ScriptIncludeName().ScriptIncludeFunction();
☆ Community Rising Star 22, 23 & 24 ☆
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2024 03:30 AM
Yes it is true also tried this syntax also with application scope name but nothing works

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2024 03:33 AM
Hi,
Try below syntax in your reference qualifier.
javascript:new myScriptIncludeName().my_functionName()
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2024 03:41 AM
tried but not resolved