Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-01-2026 08:05 PM
Hello,
I added the following gs.info lines to check what values were captured in the className and depot variables for troubleshooting purposes:
gs.info('LoanerUtils3 className=' + className); gs.info('LoanerUtils3 depot=' + depot);
ciRefQual: function() {
var className = current.getValue('item_type');
var depot = current.getValue('depot');
var start = current.getValue('work_start');
var end = current.getValue('work_end');
// DEBUG LINE
gs.info('LoanerUtils3 className=' + className);
gs.info('LoanerUtils3 depot=' + depot);
if (!className || !depot || !start || !end)
return 'sys_idISEMPTY';
var ids = this.availableCis(className, depot, start, end);
if (!ids)
return 'sys_idISEMPTY';
return 'sys_idIN' + ids;
},
However, when I navigated to System Logs → All, I could not see these messages. Did I implement it incorrectly? Thank you
Solved! Go to Solution.