- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2024 11:11 PM
Hi,
There are 2 field on INC form, 1 solution, 2. Resolution Notes(Mandatory)
I am confused how to configure below scenario,
If solution is empty and Resolution Notes is updated, I want to set solution = Resolution Notes.
If solution is not empty and Resolution Notes is updated, set Solution = Solution + Resolution Notes.
And Vice versa i.e.
If Resolution Notes is empty and Solution is updated, I want to set Resolution Notes = Resolution Notes.
If Resolution Notes is not empty and Solution is updated, set Resolution Notes = Solution + Resolution Notes.
Thank You!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2024 03:05 PM
Hi Rutuja,
I tried with below code and it looks fine to me. You can create a Business Rule.
When: after
Update: True
Script:
If the answer has helped you, please mark the answer as correct/helpful.
Regards,
Sanjeeva.Y.Reddy.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2024 11:28 PM
Hi @Rutuja K ,
When u want this to happen?
Like when some1 clicks on Resolve button that time?
Thanks,
Danish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2024 11:29 PM
Whenever someone update any of Solution or Resolution Notes field.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2024 11:56 PM
Hi @Rutuja K ,
U can create a after Update BR with condition as Resolution notes changes or solution changes.
N try below script
current.solution = current.solution + " " + current.resolution_notes;
current.resolution_notes = current.resolution_notes +" " + current.solution;
Thanks,
Danish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2024 11:38 PM
Hi @Rutuja K,
You can do this with after update business rule , did you start with the script ? were are you struck ?
☑️ Please mark responses as HELPFUL or ACCEPT SOLUTION to assist future users in finding the right solution....