- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-15-2024 05:15 AM
Hi all,
I want to add a new functionality to this Business Rule script.
The script runs on the "x_cawa_metering_se_fsm_raw_meter_reads" table, which is set to run async on insert. This table has a reference field called "u_work_order_task" that links to the "wm_task" table, where there is a field named "close_notes". I would like to append the value from the "close_notes" field to another field called "readercomment" on the "x_cawa_metering_se_fsm_raw_meter_reads" table. Can anyone help? Thanks
This is the current script:
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-15-2024 06:31 AM
I wasn't clear if the posted script was an attempt to do this, or just existing functionality, so that aside this line will append the close notes of the related work order task to whatever may already be in the readercomment field:
current.readercomment += current.u_work_order_task.close_notes;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-15-2024 06:31 AM
I wasn't clear if the posted script was an attempt to do this, or just existing functionality, so that aside this line will append the close notes of the related work order task to whatever may already be in the readercomment field:
current.readercomment += current.u_work_order_task.close_notes;