Auto Population of a field on Change form

Shwetha Shenoy
Tera Expert

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?

1 ACCEPTED SOLUTION

Anurag Tripathi
Mega Patron
Mega Patron

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;

 

 

-Anurag

View solution in original post

1 REPLY 1

Anurag Tripathi
Mega Patron
Mega Patron

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;

 

 

-Anurag