- 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-19-2020 10:42 AM
The AssessmentCreation class is defined at the platform (Java) layer and not directly accessible from scoped app. It is not a standard script include.
Regards,
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2020 12:32 PM
Try something like below?
new global.AssessmentUtils().createAssessments('dc8394ad07dadc10b02bf61d7c1ed0aa','',contactList);
Please mark my response as correct and helpful if it helped solved your question.
-Thanks
- 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-26-2020 07:21 AM
How is this different from my comment
Please mark my response as correct and helpful if it helped solved your question.
-Thanks