Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2024 09:22 AM
I have an SI to populate a JSON string in a drop-down. However, I am unsure where and how to code the input for the variable string.
SI
var Test = Class.create();
Test.prototype = Object.extendsObject(AbstractAjaxProcessor, {
CourseUtils: function()
{
try {
var r = new sn_ws.RESTMessageV2('Banner Courses', 'get');
var response = r.execute();
var responseBody = response.getBody();
var httpStatus = response.getStatusCode();
return responseBody;
}
catch(ex) {
var message = ex.getMessage();
return "";
}
},
type: 'Test'
});
CS
Solved! Go to Solution.
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2024 09:13 PM
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2024 09:13 PM