- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-15-2023 11:49 PM
In a incident table the short description value should be copied to the description on the same record.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-15-2023 11:53 PM
You can use Business Rule
(function executeRule(current, previous /*null when async*/) {
// Check if the Short Description field is not empty
if (current.short_description) {
current.description = current.short_description;
}
})(current, previous);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-15-2023 11:53 PM
You can use Business Rule
(function executeRule(current, previous /*null when async*/) {
// Check if the Short Description field is not empty
if (current.short_description) {
current.description = current.short_description;
}
})(current, previous);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-16-2023 12:11 AM
Only a specific user incident record should seen by all other users
using script
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-15-2023 11:59 PM
Hello @keerthana
You need to write onChange Client Script :-
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if (isLoading || newValue == '') {
return;
}
var short_des = g_form.getControl('short_description');
if(short_des.changed){
g_form.setValue('description', newValue);
}
}
Plz Mark my Solution as Accept and Give me thumbs up, if you find it helpful.
Regards,
Samaksh

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-16-2023 12:01 AM
Hi @keerthana ,
You need to write any code here,
You can just create an Before Insert BR, and update action as below and try this.
Aman Kumar