. How we can update record without updating system generated fieldsupdate sets
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-08-2018 08:46 PM
. How we can update record without updating system generated fields

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-08-2018 08:51 PM
Hello Siva,
You can use method autoSysFields which Enables or disables the update to the fields sys_updated_by, sys_updated_on, sys_mod_count, sys_created_by, and sys_created_on. This is often used for manually updating field values on a record while leaving historical information unchanged.
https://developer.servicenow.com/app.do#!/api_doc?v=jakarta&id=r_GlideRecord-autoSysFields_Boolean
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-08-2018 10:46 PM
inc.setWorkflow(false); // Do not run any other business rules......May i know why we kept workflows would be false...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-08-2018 10:48 PM
Is there any other way to do update records....

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-08-2018 10:55 PM
Can you provide some additional details on what you are trying to accomplish?