- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-05-2024 03:37 PM
I must be overlooking something in this script. I originally had this Catalog Client Script with UI type = All.
I now have created two CCS, one for Desktop and another one for Mobile/Service Portal. I am assuming the Mobile/Service Portal will require adjustments, just not knowing what it is I am missing.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-05-2024 07:10 PM
Without more details about the printed error it is only guessing 😞
The only thing I find suspicious is
var returneddata = answer.evalJSON(true);
Replace it with
var returneddata = JSON.parse(answer);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-05-2024 08:09 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-05-2024 07:10 PM
Without more details about the printed error it is only guessing 😞
The only thing I find suspicious is
var returneddata = answer.evalJSON(true);
Replace it with
var returneddata = JSON.parse(answer);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-06-2024 06:13 AM
Thank you so much, I will remember this going forward.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-05-2024 08:09 PM