Skip to main content

Overview

Purpose The Process Steps Sheet enables process-to-system traceability by connecting ProcessStep work items to their associated SystemElement entities through RTM model expansion. This supports ISO 26262 and IATF 16949 workflows where manufacturing process steps must map to system architecture elements. Configuration File Location:
.polarion/nextedy/sheet-configurations/Process Steps.yaml

Query and Data Source

PropertyValueDescription
Entity TypeProcessStepPowerSheet queries ProcessStep work items from the RTM domain model
Sort OrderascDefault alphabetical sort by Process Step title
Document ScopeCurrent LiveDocSheet displays only process steps from the currently open Polarion document

RTM Expansion Path

The PowerSheet traverses the RTM domain model from ProcessStep through the systemElements relationship to retrieve linked SystemElement entities: This one-to-many expansion creates denormalized rows where each process step row can display multiple linked system elements in a single cell or expanded view.

Column Groups and Layout

The PowerSheet uses a two-section color-coded layout for semantic clarity:
Column GroupColor ThemePurposeCollapse Target
Process StepsDark Green (#388e3c)Left section: process step metadata (ID, Title, Description)Title field
System ElementsDark Green (#388e3c)Right section: linked system element entitiesN/A (read-write section)

Process Steps Column Group

This read-only section displays ProcessStep entity fields with visual emphasis on the title:
ColumnTypeDefaultFormatterFocusNotes
IDWork Item IDobjectIdStandardProcess step unique identifier; read-only
TitleTexttitleboldTitletruePrimary navigation field; keyboard entry point; emphasized in bold; sorted ascending
DescriptionText AreadescriptionStandardProcess step details; serves as collapse target when group is minimized
The hasFocus: true property on the Title column designates it as the keyboard entry point. Users can navigate to this sheet and begin editing or reviewing process step titles immediately without clicking.

System Elements Column Group

This section displays linked SystemElement entities expanded through the systemElements relationship:
ColumnTypeSource PathMulti-ItemEditableNotes
System Element IDWork Item IDsystemElements.systemElement.objectIdYesNoDisplays all linked system element IDs in this cell
System Element TitleTextsystemElements.systemElement.titleYesNoSystem element name; multiple items rendered stacked or comma-separated
System Element ClassificationEnumsystemElements.systemElement.classificationYesNoSystem element type or status classification from RTM model
When a ProcessStep is linked to multiple SystemElements through the systemElements relationship, all linked items are displayed in the same cell. The rendering strategy (comma-separated, line breaks, or stacked display) is determined by PowerSheet’s multi-item column renderer.

Configuration Properties

Entity Factory (Inline Creation)

PropertyValueDescription
Entity TypeSystemElementCreating new system elements from this sheet
Target ModuleDesign/SystemElementStructureNew system elements are placed in the Design space folder
Auto-LinksystemElementsNew elements are automatically linked to the parent ProcessStep
Enable users to create new system elements directly from the Process Steps Sheet without manual navigation. The entity factory:
  1. Creates a new SystemElement work item in the Design/SystemElementStructure module
  2. Automatically establishes the systemElements relationship to the current ProcessStep row
  3. Returns focus to the new element for immediate editing

Column Group Collapse Behavior

PropertyProcess StepsSystem Elements
collapseTotitleN/A
Minimized ViewShows only Title columnFull view maintained
Use CaseScreen space optimization for wide RTM gridsAlways visible for relationship review
When users minimize the Process Steps column group, only the Title column remains visible, maximizing horizontal space for reviewing system element associations. The System Elements section stays expanded to maintain visibility of the traceability relationships.

Property-Level Details

Read-Only Formatting

All Process Steps fields use read-only styling to prevent accidental modification during process-to-system traceability review:
- name: objectId
  formatter:
    expression: "true"
    style: "background-color: #f5f5f5; color: #555;"
- name: title
  formatter:
    expression: "true"
    bold: true
    style: "background-color: #f5f5f5;"
- name: description
  formatter:
    expression: "true"
    style: "background-color: #f5f5f5;"
Process steps are defined and maintained in manufacturing planning documents outside this sheet. This PowerSheet is for traceability verification only. To modify process step details, open the source Process Flow document directly.

Bold Title Formatting

The title field uses the boldTitle formatter with an unconditional expression ('true'), meaning bold styling applies to all rows:
- name: title
  formatter:
    expression: "true"
    bold: true
    defaultWidth: "300px"
This creates visual hierarchy in the process step list, making title scanning faster during process review workflows.

Sort Order

Rows are sorted alphabetically by ProcessStep title in ascending order:
sort:
  field: "title"
  direction: "asc"
This predictable ordering aids navigation and supports cross-team communication about process step sequences (e.g., “Review the steps from ‘Assembly’ through ‘Testing’”).

Traceability Workflow

Use Case: Linking Process Steps to System Elements

  1. Open Process Steps Sheet — Navigate to the Process Flow document and select the Process Steps Sheet PowerSheet
  2. Identify Process Step Row — Find the manufacturing step requiring system element association (e.g., “Sensor Calibration”)
  3. Add System Element Link — Use the System Elements section to link existing SystemElement work items or create new ones via entity factory
  4. Verify Relationship — Confirm the process-to-system mapping in the traceability grid
  5. Review for Gaps — Use coverage reporting to identify process steps without system element associations

Integration with Manufacturing Workflow

The Process Steps Sheet supports IATF 16949 APQP workflows: diagram Each process step must map to at least one system element to establish responsibility and enable failure mode analysis (PFMEA links to process steps; design failures originate from system elements).
Related DocumentPurposeLink Type
Use Steps SheetUser need to process step traceabilitySee also
Characteristics SheetProcess step characteristics for control plansDownstream
Subsystem Functions SheetSystem element functional decompositionRelated
System Verification SheetSystem element verification evidenceCross-reference
The Process Steps Sheet depends on the ProcessStep and SystemElement entity types defined in the RTM domain model (.polarion/nextedy/models/rtm-model.yaml). Changes to entity definitions or the systemElements relationship cardinality may require sheet reconfiguration.

Best Practices

Do’s
  • Use the Process Steps Sheet for reviewing and validating process-to-system traceability
  • Create new system elements inline via entity factory when identifying missing architecture associations
  • Sort interactively to reorganize step sequences during process planning reviews
  • Collapse Process Steps group to focus on system element relationships in wide layouts
Don’ts
  • Do not edit process step titles or descriptions in this sheet — update the source Process Flow document instead
  • Do not delete process steps from this view (deletion is not supported in read-only sections)
  • Do not use this sheet to create ProcessStep entities — use the Process Flow document for process definition

Configuration Customization

To adapt the Process Steps Sheet for custom workflows:

Add Process Metadata Columns

- name: "processCategory"
  label: "Category"
  type: "enum"
  source: "processCategory"
  width: "150px"

- name: "riskLevel"
  label: "Risk Level"
  type: "enum"
  source: "riskLevel"
  formatter:
    expression: "riskLevel == 'HIGH'"
    style: "background-color: #ffcdd2;"

Expand to Multiple System Element Levels

Traverse deeper into the system hierarchy:
expand:
  - relationship: "systemElements"
    nestedExpand:
      - relationship: "subsystems"
        targetFields: ["objectId", "title", "status"]

Add Document Grouping

Group process steps by their source manufacturing specification:
groupBy: "sourceDocument.title"
collapsible: true

Troubleshooting

IssueCauseSolution
System Elements column shows no dataProcessStep not linked to SystemElementUse entity factory to create missing links; verify systemElements relationship defined in RTM model
Title column not sortedSort configuration missing or incorrectCheck sort.field and sort.direction in sheet YAML
Read-only styling not appliedFormatter expression incompleteEnsure formatter has expression: "true" and background-color style property
Entity factory button not visibleModule path incorrect or insufficient permissionsVerify entityFactory.targetModule path exists; check user role permissions for Design space
For additional configuration support, see PowerSheet Configurations and RTM Model Configuration.