
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2023 08:19 AM
Hi guys.
Not sure if this is doable but in a template is it possible to e.g copy the "opened by" field value and then put that value into e.g the description value?
Not sure where to start here as I doubt it would by e client script or BR on the template table so I'm not entirely sure how to do this before jus trying another method I thought might work.
Just wanted to know if this is possible and if so, how?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2023 09:14 AM
@Markell If you wish to copy the opened by value in description, then instead of doing it from the HR Template you should be using an onBefore Insert business rule script to copy values.
Here are the steps to achieve this functionality.
Create an onBefore Insert business rule on your table.
Here is the script which you need to user to copy the values from opened_by.
current.rich_description = current.opened_by.first_name+ '' + current.opened_by.last_name;
Hope this helps.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2023 09:14 AM
@Markell If you wish to copy the opened by value in description, then instead of doing it from the HR Template you should be using an onBefore Insert business rule script to copy values.
Here are the steps to achieve this functionality.
Create an onBefore Insert business rule on your table.
Here is the script which you need to user to copy the values from opened_by.
current.rich_description = current.opened_by.first_name+ '' + current.opened_by.last_name;
Hope this helps.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2023 12:55 AM
Thanks. This is what I would try in general but was checking if it was possible from a template