Community Tip - Learn all about PTC Community Badges. Engage with PTC and see how many you can earn! X
A user does not have access of modify identity to a part, how to override this access that user can edit part. Through the code.
Solved! Go to Solution.
Hi @AR_9920456
It is not good idea to avoid the ACL rules but you can set the code session to administrator and do any changes you need.
SessionHelper.manager.setAdministrator();
There is very important point.
Save actual user to an variable, set the admin make any changes, set the session user back to original user.
PetrH
Hi @AR_9920456
It is not good idea to avoid the ACL rules but you can set the code session to administrator and do any changes you need.
SessionHelper.manager.setAdministrator();
There is very important point.
Save actual user to an variable, set the admin make any changes, set the session user back to original user.
PetrH
Hello HelesicPetr,
it works