- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-05-2023 08:26 AM - edited ‎10-05-2023 08:28 AM
Hi,
I have a use case where we need to auto-populate the change number onto a new custom-created field which is on the same record. How could I do it?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-05-2023 08:31 AM
Why do you need to do this? You already have the number in the number field. Trying to understand the use case.
If you need to do it you can create a before insert BR on the change request table and just add a script
current.<custom field> = current.number;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-05-2023 08:31 AM
Why do you need to do this? You already have the number in the number field. Trying to understand the use case.
If you need to do it you can create a before insert BR on the change request table and just add a script
current.<custom field> = current.number;