---
sourceDocument: Australia ServiceNow AI Platform Capabilities
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/de-DE/servicenow-platform

 Release :

    - australia

ft:locale :

    - de-DE

ft:publication_title :

    - Australia ServiceNow AI Platform Capabilities

ft:clusterId :

    - platcap

bundleId :

    - platcap

workflow :

    - Platform


---

# Assessment administrator tasks

# Assessment administrator tasks {#ariaid-title1}

* Freigeben Version: Australia
* 
* Aktualisiert 12. März 2026
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 5 Minuten Lesedauer

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 {#c_AssessmentProcess__section_d5j_zg2_fcb}

Assessment admins use several terms when working with assessments.  
{#c_AssessmentProcess__table_eg1_3yr_np__entry__2}

| 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: * The assessment generation scheduled job runs. * An assessment administrator creates an on-demand assessment. {#c_AssessmentProcess__ul_bpz_ryr_np} |
| 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. |
[ ]

{#c_AssessmentProcess__table_eg1_3yr_np}

## Assessment roles {#c_AssessmentProcess__section_ovj_ch2_fcb}

The Assessments application requires certain roles to perform assessment tasks. No role is
required to take assessment questionnaires that are assigned to you.  
{#c_AssessmentProcess__table_ivw_1zk_v4__entry__3}

| 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. Hinweis: 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](https://www.servicenow.com/docs/access?context=r_BaseSystemRoles&version=australia&pubname=australia-platform-administration&ft:locale=en-US) | 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](https://www.servicenow.com/docs/access?context=r_BaseSystemRoles&version=australia&pubname=australia-platform-administration&ft:locale=en-US) | Administrators have access to all aspects of the assessment process. Only administrators can set up assessment schedules. |
[ ]

{#c_AssessmentProcess__table_ivw_1zk_v4}

## Assessment methods {#c_AssessmentProcess__section_dtd_3h2_fcb}

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 {#c_AssessmentProcess__section_m2r_nh2_fcb}

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.  
You can use the Assessment method with these Data type values:

* Attachment
* Checkbox
* Choice
* Date
* Date/Time
* Likert Scale
* Number
* Percentage
* String
* Template
* Yes/No
{#c_AssessmentProcess__ul_qft_rpr_z4}

## Script method {#c_AssessmentProcess__section_cqf_4h2_fcb}

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.  
You can use the Script method with these Data type values:

* Duration
* Number
* Percentage
{#c_AssessmentProcess__ul_m13_cqr_z4}

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:  
You must use the following variables in your script:

* <var class="keyword varname">primary</var>: Input variable used to access the sys_id of the record being assessed.
* <var class="keyword varname">string_result</var>: Output variable that contains the display string value for this metric
* <var class="keyword varname">actual_result</var>: 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 <var class="keyword varname">actual_result,</var> you must specify a corresponding scaled_result value.
* <var class="keyword varname">scaled_result</var>: 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.
{#c_AssessmentProcess__ul_r42_hrr_z4}

## Script example {#c_AssessmentProcess__section_jvy_4h2_fcb}

The metric Number of active devices uses the script pictured below. The <var class="keyword varname">primary</var> variable is used to find CIs that are associated to the vendor record being assessed. The script retrieves the actual_result, the number of CIs associated to the vendor, then calculates the correct scaled_result. The script uses a series of scaled values, from the Min to the Max value, to represent actual values. Because the Scale definition is set to High, the greatest scaled values are best, meaning a vendor associated to the most CIs scores highest. The system stores the actual and scaled values in a metric result record for the vendor.Abbildung : 1. Scripted metric example
* **[Configure an assessment](https://servicenow-prod.fluidtopics.net/tK~ze7BXrGAOXyTRQp4n2g)**   
  You can create a new assessment on a selected assessable records to evaluate, score, and rank records from any table in the system. Then create a metric category and assessment metrics for the assessment, publish the assessment, and assign it to the selected users.
* **[Assessment generation](https://servicenow-prod.fluidtopics.net/jtXxPoUb3BXKsDI7Exo_7Q)**   
  In the Assessments application, administrators or assessment administrators can trigger the system to generate scheduled assessments or on-demand assessments when all the prerequisite steps are completed.
* **[Assessment groups](https://servicenow-prod.fluidtopics.net/NzPU4pj23vY3FN520VmsTw)**   
  An assessment group is a container for assessment instances and assessment results generated in a single occurrence.
* **[View an assessment metric category](https://servicenow-prod.fluidtopics.net/qMUezY2iEB5YS8k5qDjsnQ)**   
  View assessment metric categories that are used with assessment metric types and assessment metrics in generating the bubble charts on the Demand Workbench. The bubble charts help the demand managers to assess the demands visually.
* **[Assessment metrics](https://servicenow-prod.fluidtopics.net/MFPRf1_1e2JgOrXEWERHog)**   
  In the Assessments application, a metric is a trait or value used to evaluate assessable records.
* **[Add a metric category and metric in the question bank for assessments](https://servicenow-prod.fluidtopics.net/EoB8BT1pctpH6qGgOc~AyA)**   
  Reuse the question categories (metric categories) and questions (metrics) added in the question bank for assessments. You can add metric categories or metrics from the question bank to an assessment, or from the assessment to a question bank.
* **[Copy an assessment](https://servicenow-prod.fluidtopics.net/Icn04Uf9y7rL3LthSFfFOQ)**   
  Create a copy of an assessment with at least one category to reduce the effort of creating another assessment with similar data.
* **[Create a metric template](https://servicenow-prod.fluidtopics.net/IZMjKanaAXFxsiBTOH1EYw)**   
  Create a metric template to define reusable rating scales for evaluating non-scripted metrics.
* **[Category users and stakeholders](https://servicenow-prod.fluidtopics.net/1tQdraQTlucHTDeWyjWXEg)**   
  Users who take assessments are individuals in your organization who have specific knowledge of the assessment categories and the records being assessed.
* **[On-demand assessments](https://servicenow-prod.fluidtopics.net/Nra5mg8YSFx_loWb_~oy6w)**   
  On-demand assessments can be generated for metric types with the Schedule type field set to On demand.
* **[Scheduled assessments](https://servicenow-prod.fluidtopics.net/vDV8_hgrawCeuH3bcWuPMw)**   
  The system generates a unique scheduled job for each metric type with the Schedule type field set to Scheduled.
* **[Configure trigger conditions for an assessment](https://servicenow-prod.fluidtopics.net/qOXcoa720SX2puoWcmjlLQ)**   
  Trigger conditions specify when to send a particular assessment and who to send the assessment to.
* **[Enable manager notifications](https://servicenow-prod.fluidtopics.net/Zxy8K~Fjru79_9Uh7xidWQ)**   
  Users with the assessment_admin role can enable the Notify manager assessment is overdue email notification.
* **[View a metric result](https://servicenow-prod.fluidtopics.net/c~48fVR4Oq026V_valo4bg)**   
  Metric results contain values that represent an evaluated record's performance for a specific metric, based on a single evaluation from one user or from the execution of a script. Metric results contain actual values as well as calculated values. The system uses values from metric results to calculate category results.
* **[View an assessment scorecard](https://servicenow-prod.fluidtopics.net/44FB4J3ng3CYIUHU6e52BQ)**   
  The Assessments application prepares printable scorecards. A scorecard displays easy-to-interpret assessment results, in which the current calculated ratings for an assessable record are compared to previous ratings or to the ratings of other records.
* **[Create a decision matrix](https://servicenow-prod.fluidtopics.net/pAKDFUkex2U4I72NQY71eg)**   
  The name and labels on a decision matrix are closely linked to the categories you choose for the axes. For that reason, first select the metric type and define the X and Y axes before you fill in other fields on the Decision Matrix form.

**Zugehörige Konzepte**   

* [Assessment metrics](https://servicenow-prod.fluidtopics.net/MFPRf1_1e2JgOrXEWERHog "In the Assessments application, a metric is a trait or value used to evaluate assessable records.")  
**Zugehörige Tasks**   

* [Create an assessment metric for a category](https://servicenow-prod.fluidtopics.net/w~TtVMlLt1dUiNBR7j2e~w "After you create a category, create metrics you can use to evaluate the assessable records for that category.")
* [Create an assessment metric definition](https://servicenow-prod.fluidtopics.net/hBuM3xvdAIKtHcV1n4ACXg "Metrics with Choice or Likert Scale data types must have metric definitions defined to represent answer options on questionnaires.")
* [Update a metric minimum and maximum value to match a template](https://servicenow-prod.fluidtopics.net/frnIgfVxSO9p_re~rCdKcg "For assessment results to be properly calculated, the Min and Max values of a metric that uses a template must be equal to the smallest and largest template definition Value, respectively.")

