Config Essentials Lessons Flashcards
All Essentials Lessons in PC 10.0 Configuration
Why do you need revisioned fields on contacts or locations?
Revisioned fields are required on contacts or locations when some info is considered part of the policy contract and thus cannot be changed once the policy is bound and the contract written.
If the field is revisioned, it can be changed on the account level even after the policy is bound. The info is updated on the account and can be obtained by policies for future jobs.
True or false?
Contact data is always synced to the account during submission and issuance.
True
True or false?
During a back dated policy change, contact data is copied from policy to account.
False
How does PolicyCenter handle back dated changes on contact data?
PolicyCenter creates activities and notes on the account specifying the changes made to the policy. A user can decide whether to apply the changes or not at the account level. The changes must be applied manually.
What is a system permission?
System permissions are permissions defined in the SystemPermissionType typelist.
Define static and object-based permissions. Give an example of each.
Static permissions do not take any parameter as an argument. Example: perm.System.viewteam
Object-based permissions take an object as an argument. Example: perm.Account.edit( account )
What are the three possible parent objects for an Activity?
Account
Job
Policy
What field is a unique internal name for an activity pattern?
Code
What is the difference between primary and secondary assignment?
Primary assignment: a single user is assigned ownership of the assigned object.
Secondary assignment: one or more users are assigned to roles with respect to the assigned object.
When an activity is assigned by rules, which two rule sets are typically executed? In what order?
Global rules, then default group rules. In that order.
Under what circumstances can an activity be assigned without assignment rules being executed?
When the activity is assigned to a specific user.
Why are assignment methods always inside if statements in assignment rules?
Assignment methods are always inside if statements because they might fail.
For example, an assignGroup method may not be able to find the specified group.
What happens if an assignment method inside an if statement succeeds? If it fails?
If it succeeds, then the if statement causes control of flow to execute an actions.exit() statement, which exits execution from the rule set.
If it fails, the actions.exit() statement is skipped and execution proceeds to the next rule.
What is the Default Owner of an object?
Default Owner is a dummy user that objects are assigned to when global assignment rules fail to assign the object to a group.
What two classes exist for every job type?
The job class and the job process class.