- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2020 06:00 PM
The following call works fine in Global scope but not in scoped applicatoin:
(new SNC.AssessmentCreation()).createAssessments("dc8394ad07dadc10b02bf61d7c1ed0aa", "", contactList);
There must be a way to call SNC.AssessmentCreation()).createAssessments in scoped application?
Solved! Go to Solution.
- Labels:
-
Scoped App Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2020 10:31 AM
new global.AssessmentUtils().createAssessments('dc8394ad07dadc10b02bf61d7c1ed0aa','',contactList);
works for me
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2020 06:01 PM
Thanks for the solution! new global.AssessmentUtils().createAssessments('dc8394ad07dadc10b02bf61d7c1ed0aa','',contactList);
indeed successfully created survey instances in scoped app.