We're reclaiming inactive PDIs to keep them available foractive builders.Learn what's changing, who's affected, and how to protect your work. Read More
I have searched but couldn’t find a clear answer. How are duplicate vulnerable items assigned to a remediation task? Is there any OOB functionality for this? Any insights would be appreciated!Thankyou
Hi CheEski , I’m facing the same issue after changing my ServiceNow user ID from my corporate email to a personal email.I’m unable to log in to ServiceNow Learning but I can still access Community and my PDI.I sent an email to web_support@servicenow....
Hi, var ga = new GlideAggregate('incident');ga.addAggregate('COUNT','state');ga.query();while (ga.next()){ gs.info(ga.state.getDisplayValue() + " " +ga.getAggregate('COUNT','state'));} Regards
Hi,To revert the fix script, you first need to check the record for rollback for the respective script so that when you run the script, it will be updated in rollback contexts, and it is possible to revert back; if not, it is not possible, I think. B...
Hi Mishrarakes, To populate the 'Assigned to' field when the 'View' is changed:Uncheck the 'Global' option and specify the view name you created.Then, write an onLoad() Client Script as per your requirement.For reference, I have provided the attachme...
Hi Madhusudhan,Option 1: Use an onChange() client script instead of onLoad() to update the field value. This prevents duplicate execution since onchange() runs both on field change and form load.Option 2: Use only an onLoad() client script to update...