Config Essentials Lessons Flashcards

All Essentials Lessons in PC 10.0 Configuration

1
Q

Why do you need revisioned fields on contacts or locations?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

True or false?

Contact data is always synced to the account during submission and issuance.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

True or false?

During a back dated policy change, contact data is copied from policy to account.

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How does PolicyCenter handle back dated changes on contact data?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a system permission?

A

System permissions are permissions defined in the SystemPermissionType typelist.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Define static and object-based permissions. Give an example of each.

A

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 )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the three possible parent objects for an Activity?

A

Account
Job
Policy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What field is a unique internal name for an activity pattern?

A

Code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the difference between primary and secondary assignment?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

When an activity is assigned by rules, which two rule sets are typically executed? In what order?

A

Global rules, then default group rules. In that order.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Under what circumstances can an activity be assigned without assignment rules being executed?

A

When the activity is assigned to a specific user.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Why are assignment methods always inside if statements in assignment rules?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What happens if an assignment method inside an if statement succeeds? If it fails?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the Default Owner of an object?

A

Default Owner is a dummy user that objects are assigned to when global assignment rules fail to assign the object to a group.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What two classes exist for every job type?

A

The job class and the job process class.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is a branch?

A

A branch is the set of objects associated with one PolicyPeriod object.

17
Q

In what three ways can jobs be started?

A

1) By users through the UI
2) By external systems through the APIs
3) By PolicyCenter batch processes

18
Q

When does a job end?

A

When the job’s branch is promoted (bound/issued), withdrawn, or discarded (non-renewed)?

19
Q

What determines the visibility of buttons in a job’s button set?

A

“Can” methods on the job process class.