additional comments are not captured when update filed values via business rules
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-12-2024 04:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-12-2024 05:10 AM
There is another Business Rule that is adding the field changes to the activity log. Your Business Rule shown above has
current.setWorkflow(false);
Which instructs that no other Business Rules should run when this record is updated. Remove this line and re-test.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-12-2024 06:54 AM
When i removed this line (current.setWorkflow(false);
comments got updated.. Thank you
But current.update(); is good practice to update record?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-12-2024 11:54 AM
Based on your Business Rule script, it looks like this should be running before insert/update, then you can remove the current.update(); line. If you must run the Business Rule after update for whatever reason, then current.update() is fine to save the changes to the fields.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-12-2024 08:44 PM
I written after business rules
comments got updated multiple times..