Updating a field on change of other fields.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2018 12:47 PM
Create a Business Rule on Incident form such that whenever state changes from New to On Hold 'short_descrption' field needs to get updated as **********************
How to get this done.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2018 01:02 PM
You can create a simple onChange() client script to achieve the requirement.
function onChange(control, oldValue, newValue, isLoading){
if(newValue =='On hold field value'{
g-form.setValue('short_description', 'Put your text which you want to see in the Short description');
}
}
Make sure you select the state field in the variable name of the catalog client script.
Please hit correct based on impact of response.
Regards!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2018 01:07 PM
Is there any way possible that we can achieve it by using Business Rules.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2018 11:03 PM
Hi Mahesh,
If you want to achieve it from business rule you can do as follows:
In When to Run Filter condition ,
In the Script you can write as follows:
Hope it Helps. Mark it as Helpful or correct if find helpful.
Regards,
Karishma Horo