Assessment administrator tasks
Summarize
Summary of Assessment administrator tasks
Assessment administrators in ServiceNow are responsible for setting up and managing assessments that evaluate sets of records (such as vendors or employees) based on defined criteria. Before creating assessments, assign theassessmentadminrole to appropriate users and clarify assessment objectives, including which record sets, themes, and traits to measure. Administrators must also determine who will provide input for assessment questionnaires.
Show less
Key Concepts and Terminology
- Metric type: Defines the set of records to evaluate (e.g., vendors, projects).
- Assessable record: Links a specific record to a metric type for evaluation.
- Metric category: Represents an evaluation theme containing multiple metrics.
- Metric: A specific trait or value used to assess records, either via questionnaire or scripted data queries.
- Category user: Person knowledgeable about a metric category.
- Stakeholder: Category user familiar with a specific assessable record.
- Assessment instance: A questionnaire assigned to a user for evaluation.
- Scorecard: Visual summary of an assessable record’s performance over time or against peers.
- Decision matrix and bubble chart: Graphical tools to compare multiple records across metrics, helping identify relative standings.
Roles and Permissions
- Assessment administrator (assessmentadmin): Sets up assessments, defines evaluation criteria, and assigns assessments. May require additional roles (e.g., vendormanager) for access to relevant data.
- ITIL user: Has read access to assessable records.
- Administrator: Full access to assessment setup and scheduling.
Assessment Methods
- Assessment method (non-scripted): Defines subjective metrics via questionnaires using various data types (e.g., Likert scales, choice fields).
- Script method (scripted): Defines metrics calculated by custom JavaScript querying system data for objective values (e.g., number of active devices). Scripts must assign actual, scaled, and string result variables within defined min/max scale ranges.
Configuring and Managing Assessments
- Create assessments by selecting assessable records, defining metric categories and metrics, publishing, and assigning to users.
- Assessment generation can be scheduled or on-demand depending on metric type settings.
- Use assessment groups to organize related assessment instances and results.
- Metric categories and metrics can be reused across assessments via a question bank.
- Copy existing assessments to streamline creation of similar assessments.
- Create metric templates to standardize rating scales for non-scripted metrics.
User Participation and Notifications
- Category users and stakeholders are the participants providing input based on their knowledge of categories and records.
- Enable manager notifications to alert managers when assessments are overdue.
- Trigger conditions control when and to whom assessments are sent.
Reviewing Assessment Results
- Metric results store both actual and scaled values from evaluations or scripted calculations.
- Scorecards offer printable, comparative views of record performance over time or against peers.
- Decision matrices and bubble charts visualize assessment results across multiple records and categories to aid decision-making.
Before you create assessments, assign the assessment_admin role to the appropriate users in your organization and determine your objectives for the assessment.
Decide which sets of records in the system to assess, which themes you are interested in, and which traits to measure. Consider your organization's options for obtaining the data to compare. If you intend to use assessment questionnaires, consider which people can answer the questions.
Assessment terminology
Assessment admins use several terms when working with assessments.
| Term | Description |
|---|---|
| Metric type | A metric type defines a set of records to evaluate, such as vendors, projects, or employees. |
| Assessable record | An assessable record links a record to evaluate, such as the company record for Amazon or the user record for a sales representative, to a metric type, such as vendors or employees. You define sets of assessable records when you create metric types. |
| Metric category | A metric category represents a theme for evaluating assessable records. Categories contain one or more individual metrics, which define specific traits or values that comprise the theme. Examples of categories include overall vendor performance or quality of delivery services. You can also set filter conditions that control which assessable records to evaluate for the metrics in a category. |
| Metric | A metric is a trait or value used to evaluate assessable records. A metric can measure subjective values in an assessment questionnaire, or gather objective values in a database query run by a script. Examples of metrics include perceived courtesy of sales representatives or number of incidents per vendor. |
| Category user | A category user is a person who knows about a specific category. One person can be a category user for multiple categories. Examples of category users include a vendor manager who oversees all purchasing operations or a supervisor of a sales team. |
| Stakeholder | A stakeholder is a category user who knows about a specific assessable record. Examples of stakeholders include a vendor manager who coordinates purchases from Amazon or a supervisor of a sales team who manages a specific employee. |
| Assessment instance | An assessment instance represents one assessment questionnaire assigned
to one user. The system generates a new assessment instance for each assigned user when:
|
| Scorecard | A scorecard provides a visual illustration of an assessable record's performance, based on assessment results. Use scorecards to view a variety of data summaries for one assessable record and to compare the ratings with other assessable records. |
| Decision matrix | A decision matrix is a graph with two axes that plots the assessment results for multiple assessable records. Use decision matrixes to determine the relative standing of assessable records in selected categories. |
| Bubble chart | A bubble chart is a graph with three axes that plots the assessment results for multiple assessable records. Use bubble charts to determine the relative standing of assessable records in selected categories, with an emphasis on one category. |
Assessment roles
The Assessments application requires certain roles to perform assessment tasks. No role is required to take assessment questionnaires that are assigned to you.
| Role Title | Role Name | Description |
|---|---|---|
| Assessment administrator | assessment_admin | Assessment administrators set up assessments. They know which records to evaluate,
the criteria on which to evaluate the records, and who to assign assessments to. Note: By default, users with the assessment_admin role have limited system rights
and might not have access to all source records to assess. When planning assessments,
grant additional roles to assessment administrators as needed. For example, to create and
manage vendor assessments, the assessment administrator must also have the vendor_manager
role, which grants access to the Company table and other relevant tables. |
| ITIL user | Base system roles | ITIL users perform basic technician operations in the system. In the Assessments application, they have read access to the Assessable Record table. |
| Administrator | Base system roles | Administrators have access to all aspects of the assessment process. Only administrators can set up assessment schedules. |
Assessment methods
The available methods are Assessment, for non-scripted metrics, and Script, for scripted metrics. Each method serves a different function and can be used with certain data types.
Use the Method field to specify how to use the metric.
Assessment method
Metrics with the Method set to Assessment are called non-scripted metrics. Use each non-scripted metric to define a question for assessment questionnaires. Non-scripted metrics are useful if you want to obtain subjective data like personal opinions.
- Attachment
- Checkbox
- Choice
- Date
- Date/Time
- Likert Scale
- Number
- Percentage
- String
- Template
- Yes/No
Script method
Metrics with the Method set to Script are called scripted metrics. Use each scripted metric to define a custom script for database queries. Scripted metrics are useful if your system contains reliable data for the traits you want to evaluate.
- Duration
- Number
- Percentage
Use the Script field to write JavaScript code. By default, the field contains information about available variables and an example, which you can use as the basis of your script or replace entirely:
- primary: Input variable used to access the sys_id of the record being assessed.
- string_result: Output variable that contains the display string value for this metric
- actual_result: Output variable that contains the actual value for this metric. The system uses this variable to populate the Actual value field on the Metric Result form. For each actual_result, you must specify a corresponding scaled_result value.
- scaled_result: Output variable that contains a numerical scaled value to represent an actual value. The system uses this variable to populate the Scaled value field on the Metric Result form. Ensure the scaled values you specify are between or equal to the Min and Max values for the metric. The Scale definition field determines how the system uses the scaled value. A scale definition of Low means smaller numbers are better, such as for a metric that measures the number of incidents for a vendor. High means larger numbers are better, such as for a metric that measures user satisfaction on a scale of one to five.