Can scoped script includes be extended to other scoped apps?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-25-2017 01:36 PM
Can a script include in scoped app B extend a script include in scoped app A?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-25-2017 01:40 PM
Try setting "Accessible from" to "All application scopes" in scoped app A. Refer to x_acme_a.scriptName from B.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-25-2017 01:40 PM
I think you can using the format, application_name.script_include_name.
ex, if application name is A
A.myscriptincludename
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-25-2017 01:50 PM
Yeah, I've already set the script include in app A to be accessible from all scopes and I'm extending it in app B using the full name. But when I call a function from the script include in app B, I'm getting a very vague error message: TypeError: Method "toString" called on incompatible object. And I'm not calling "toString" in any of my code.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-25-2017 01:53 PM
Hi David,
I would suggest adding few gs.log in each step in the function you are calling. You will know, whether you are able to enter the code and till where you are reaching.
Please mark this response as correct or helpful if it assisted you with your question.