Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X
Hi Friends,
I have started learning customizations and wasabout to create a Customized Object however it failing with message the "Domain administered Object is not assigned with the Domain"
You can turn off the access control:
boolean accessEnforced = SessionServerHelper.manager.setAccessEnforced(false);
try {
....
} finally {
SessionServerHelper.manager.setAccessEnforced(accessEnforced);
}
