u_version_single
" is triggered after successfully populating the project field, which prevents the issue of receiving a 403 status code.Aria Automation 8.17
Aria Automation 8.18.x
The issue is resolved with Aria Automation ITSM plugin version 8.18.1
Workaround:
for (var i =0; i < values1.length; i++) {
g_form.addOption('u_project', values1[i].id, values1[i].name);
}
just below of it set the following:
g_form.setValue('u_project', values1[0].id);
g_form.addOption
only adds choice list values. We would recommend that you use the setValue function instead of relying on the g_form.addOption
to set a value when there isn't none or a default value specified.
Please find the below documentation for your reference further: