We're reclaiming inactive PDIs to keep them available for active builders. Learn what's changing, who's affected, and how to protect your work. Read More

ServiceNow IDE, SDK, and Fluent forum
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Forum Posts

ISO 8601 Calendar Week Configuration

Hi ServiceNow Community, We've just implemented ISO 8601 calendar week configuration on our DEV instance and ran comprehensive testing. Before rolling out to TEST and PROD, I'd like to validate with the community if we've covered everything or if the...

FlorianA by Tera Contributor
  • 6685 Views
  • 1 replies
  • 1 helpfuls

Defect record

In ServiceNow, defects are managed through defect records. While executing story-related activities on a Jira board across Development, Testing, and Production environments, which defects must be captured? If a defect is detected, what is the standar...

Community Alums by Community Alums  
  • 1020 Views
  • 2 replies
  • 1 helpfuls

Tickets resolved - Survey response

Hi Team,I checked under Assessment Instances and found that the survey due date was December 8, 2025, but the user completed it on January 6, 2026.Could you confirm how long the survey link remains active for users after it is triggered?Thank you.

Neelu Shaik by Tera Contributor
  • 616 Views
  • 3 replies
  • 0 helpfuls

onChange Client script

How to throw an alert message when a filed (Ex: test)  is empty??function onChange(control, oldValue, newValue, isLoading, isTemplate) {   if (isLoading || newValue === '') {      return;   }   if (test == '') {      alert('test cannot be empty!');  ...