Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. 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);
}
