Assignment Templates
Standardize assignment patterns with templates that provide default roles, priorities, and due dates
Assignment templates standardize the assignment process by providing default settings for common scenarios. They reduce manual work and ensure consistency across similar assignments by automatically applying standard roles, priorities, due dates, and auto-assignment rules.
Provide Defaults
Set standard role, priority, and due date calculations automatically.
Auto-Assignment Rules
Define who gets assigned automatically based on department, expertise, or other criteria.
Template Components
- • Name: Template identifier
- • Description: What it's for
- • Is Active: Enable/disable
- • Is Default: Use as default
- • Default Role: EXECUTOR, REVIEWER, etc.
- • Default Priority: LOW, MEDIUM, HIGH, CRITICAL
- • Default Due Days: Days from assignment
JSON rules for automatically selecting users based on department, expertise, role, and workload.
Creating an Assignment Template
Navigate to Templates
Go to Audit Instance → Team tab → Click "Templates" button.
Alternatively: Go to Audit Management → Assignment Templates
Create New Template
Click "Create Template" button to start creating a new template.
Fill in Basic Information
Enter template details:
- Name: Descriptive name (e.g., "IT Control Template")
- Description: What this template is for
- Is Active: Enable the template
- Is Default: Set as default for all assignments (optional)
Configure Default Settings
Set the default assignment values:
- Default Role: EXECUTOR, REVIEWER, APPROVER, CONTRIBUTOR, or OBSERVER
- Default Priority: LOW, MEDIUM, HIGH, or CRITICAL
- Default Due Days: Number of days from assignment (e.g., 7, 14, 21)
Configure Auto-Assignment Rules (Optional)
If you want automatic user selection, configure JSON rules for filtering users by department, expertise, role, and workload preferences.
Save Template
Review all settings and click "Save Template". The template is now available for use when creating assignments.
Template Examples
Use Case: Testing IT-related controls (access control, network security, etc.)
Use Case: Testing financial controls (SOX, PCI-DSS financial aspects)
Use Case: High-risk controls that need experienced auditors
Use Case: Creating reviewer assignments after executor completes
Auto-Assignment Rules
Simple Example (Department-based)
{
"filters": {
"department": ["IT"]
}
}Complex Example (Multiple criteria)
{
"filters": {
"department": ["IT", "Security"],
"expertise": ["Access Control", "Network Security"],
"role": ["AUDITOR", "SENIOR_AUDITOR"],
"workload": {
"maxUtilization": 80
}
},
"preferences": {
"workload": "lowest",
"completionRate": "highest",
"expertiseMatch": true
}
}How Templates Work with Assignments
Template Selection Logic
Specific Match
Template matching control type + risk level (highest priority)
Type Match
Template matching control type (IT, Financial, etc.)
Risk Match
Template matching risk level (High, Medium, Low)
Default Template
Default template (if set) - fallback option
Template and Workflow Integration
Best Practice
Workflows: Handle sequential assignment steps
Templates: Provide default values and auto-assignment rules
Workload: Determines which user gets selected
Use all three together for optimal automation.
Best Practices
Create templates for IT Controls, Financial Controls, High-Risk Controls, Review Assignments, and Approval Assignments to cover your most common use cases.
Include control type (IT, Financial, etc.) and risk level if specific (High-Risk, Standard) to make templates easy to identify.
Standard Controls: 7-14 days, Complex Controls: 14-21 days, High-Risk Controls: 3-7 days, Review Assignments: 3-5 days.
Start simple (department-based), add complexity as needed. Test rules before making default.