Is it possible to add the function to edit user profile information to the options on the user portal screen?

​ I have a request that the logging user can update their profile information in user portal without having to go to the dev studio. How can I achieve this. For example, add it to the user icon options. ​

@PhongH25

The list gets populated from pzProfileMenu navigation rule which is final rule. The section where its called from is also a final rule. So its not recommended to customize the whole functionality.

@SohamM95

Thank you for responding. But is there any way for users to edit their name information themselves (basic function of PEGA)? I think it can be done if I write a function to update it but first I want to ask if it is possible with the basic installation of pega.

@PhongH25

You can create a section on the class of Data-Admin-Operator-ID and display the values of the operator record to the user. The user can edit and on submit write a logic to save the updated data back into the table linked to the class.

@SohamM95

Thanks, I will try that method.