The New Change Request page (Documentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/it/changes/new) provides a three-tab form for creating an IT change request: Basic Info, Risk Assessment, and Planning. The request can be saved as a draft or submitted immediately for approval.
Overview
The page usesuseChangeRequestMutations for creation and useChangeTemplates to populate the optional template selector. Selecting a template pre-fills category, implementation_plan, rollback_plan, and test_plan. Risk assessment uses RiskAssessmentForm collecting impact_score, likelihood_score, and rollback_complexity_score (each 1–N scale; SME: confirm scale range).
Change types (code-defined): standard, normal, emergency.Categories (code-defined):
infrastructure, application, security, network, database, other.
Saving as draft sets status: 'draft'. Submitting for approval sets status: 'submitted'.
Who it’s for
No explicit secondary permission gate beyond the outerITViewGuard (it.view). Creating changes requires it.changes.create.
Before you start
- Have a clear description of the change, its purpose, and a rollback plan before starting.
- Check if an existing change template applies to your scenario.
Steps
Open the new change request form
Navigate to
/it/changes/new or click New Request from My Change Requests or the Changes list.Select a template (optional)
In the Basic Info tab, optionally select a template from the dropdown. This pre-fills the Category, Implementation Plan, Rollback Plan, and Test Plan fields.
Fill in basic information
Enter a title (required), description, change type (
standard, normal, or emergency), and category.Complete the risk assessment
Click the Risk Assessment tab. Fill in impact score, likelihood score, and rollback complexity score using the
RiskAssessmentForm.Fill in planning details
Click the Planning tab. Fill in the implementation plan, rollback plan, and test plan.
Key concepts
| Concept | Description |
|---|---|
change_type | standard (pre-approved), normal (requires approval), emergency (expedited) |
status: 'draft' | Saved but not submitted; only the creator can see and edit |
status: 'submitted' | Submitted for approval review |
RiskAssessmentForm | Collects three numeric scores that contribute to computed risk level |
Related
IT Service Management
IT Service Management overview.
Governance & parity
This page documents shipped product behavior. It is not medical, legal, or
billing advice. Verify against your organization’s policies and applicable
regulations before using it for clinical, compliance, or billing decisions.
Protected health information (PHI) shown in the product is governed by your
tenant’s access controls and is never exposed in this documentation.
Documentation sources
Documentation sources
- src/routes/it.tsx
- src/cores/it/pages/changes/NewChangeRequestPage.tsx
- src/cores/it/hooks/useChangeRequestMutations.ts
- src/cores/it/hooks/useChangeTemplates.ts