get currentuser

0
I have a scenario, in which i want to show currentuser name in the form field. I have a dataview in which there is a field called full name, in which i want to show current user name which can be editablebut default it shold be populated with currentuser. I have tried it using microflow, what i have done is in domain model entity i stored its value as calculated by microflow. it is working but if i do so then there will not be any option in dataview to make that field editable is there any way to give default value in field of dataview
asked
1 answers
1

Use the Dataview’s entity’s AfterCreate event to call the microflow and the ChangeObject-activity for the new Object to fill the attribute ‘full name’ with the microflow’s result.

answered