Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2023-08-17 04:11 AM
Hello All,
I am trying to populate the current user's information in a text field using the Custom object. Any suggestions are highly appreciated. Thank you.
2023-08-17 11:53 AM
Maybe u can use calculation for EDITOR of a record instead?
2023-08-17 12:35 PM
@galendar_aws what type of user information?
If you're users are synched with the Contacts application you can have a calculated cross-reference field pull that user information into the record via calculated fields.
Advisory Consultant
2023-08-18 03:23 AM
Our contacts application is not in sync with the users. We need user's first and last name information to populate in a text field.
2023-08-18 03:37 AM
Calculation is as good as it goes for your use case.
2023-09-26 02:05 AM
you can use the below in your CO
var currentuser = parent.parent.ArcherApp.globals.displayName;
document.getElementById('fldid').value=currentuser;
fldid is the text field id to which you want to set the value