USING A UI ACTION TO UPDATE MULTIPLE FIELDS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-04-2016 07:17 AM
Hello, I'm new to the servicenow platform. I am going through some excercises and trying to update the 3 description fields on a table using a UI button.
Im simply trying to change the fields "Apples", "Muffins", and "Cookies" to say "Expense Report Launch Part - Expense Report Item", each items number and then what that item is. I want to be able to change them to say this when i push the "Change Description" Button
Im not sure my logic is working in this code correctly.
.
Any help would be greatly appreciated. Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-04-2016 07:29 AM
Hi Aaron,
Below code would suffice to change selected record.
current.description="Expense Report Lunch part- blah"+current.description;
current.update()
Thanks
Srini