- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2023 06:23 AM
I am not sure what's happening but this reference qualifier isn't triggering my script include. The only output in the SI is the log print and I can't get anything to show up in the logs.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2023 06:33 AM - edited 07-20-2023 06:34 AM
Hi @e_wilber ,
Change it to
javascript: new global.getPartners().partners();
Thanks and Regards,
Rahul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2023 06:31 AM - edited 07-20-2023 06:32 AM
Hi @e_wilber ,
Hope you are doing well.
Please note that the script include should be non client callable
And you can call in the reference qualifier as
javascript : new scriptIncludeName().functionName()
Please mark this response as correct or helpful if it assisted you with your question.
Regards,
Harshal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2023 06:33 AM - edited 07-20-2023 06:34 AM
Hi @e_wilber ,
Change it to
javascript: new global.getPartners().partners();
Thanks and Regards,
Rahul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2023 06:35 AM
Hi Rahul,
You're right! I am an idiot and forgot the () around getPartners.
Thank you!