Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2024 11:25 PM
Hi @shibasou
Use insert business rule, simple script for copying variable value into additional comment--->
var theVariableValue = current.your_variable_name.toString();
// Check if the variable has value
if (theVariableValue) {
// Adding the variable’s value as an additional comment
current.comments = "Additional Comment: " + theVariableValue;
}Please Mark this Helpful and Accepted Solution. If this Helps you to understand. This will help both the community and me..
- Keep Learning
Thanks & Regards
Deepak Sharma