Can the System.User entity be changed

0
So if i want to add some specific attributes to the user or identifiers , I can change the entiry ? Or no 
asked
2 answers
3

no, use the entity Administration.Account instead. This one is especially available for these kind situations.

 

Also; if you want to extend it with data which is used in the app process by other users; PLEASE create your own entity “Employee, customer, WhatTypeOfPersonItRepresents” and adda a 1-1 association between them. Never use your Account(User) object in your business process.

answered
2

Hi Ali,

 

It’s not possible to edit the System.User entity.

But you can edit the Administration.Account entity (specialization of User) of you can create your own entity that is a specialization of System.User.

answered