Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

Can the short description field be autosaved when its changed?

Divya Suresh
Tera Contributor

Is there a possibility to enable auto save when short description is changed while working on a case?

2 REPLIES 2

Sid_Takali
Kilo Patron

HI @Divya Suresh  specifically you cannot be able to auto save a single field. You need to save or update the whole record. You can auto save the whole record using UI Policy https://www.servicenow.com/community/developer-forum/auto-save-a-new-record-in-a-form-with-ui-policy...

 

Please mark my answer Correct/Helpful

Regards,

Siddharam

Ramz
Mega Sage

Hi @Divya Suresh ,

You can make the form to save on its own when short description field value changes:

Write a onChange Client script on short description field:

Script:

g_form.save();

 

So basically when user types something on short description and moves the cursor to next field it just auto saves without clicking a UI action.

Please mark my answer Correct/Helpful if it resolved your query