Identify the Error
Model connection errors typically appear when opening a powersheet document. The sheet displays a loading error or the connection status shows Failed in the administration interface. Common symptoms include:- Sheet shows a blank area or error dialog on load
- Connection status in Administration > Nextedy POWERSHEET shows “Failed” instead of “Active”
- Configuration loads but no data appears in the sheet
Step 1: Verify the Model Path in Sheet Configuration
Thesources.model property in your sheet configuration must match the name of your domain model file. Open your sheet configuration YAML and check the sources section:
Step 2: Check the Model Path Resolution
Powersheet resolves model paths using these rules:| Model Value | Resolved Path |
|---|---|
my-model | {projectId}/my-model (current project) |
otherProject/my-model | otherProject/my-model (cross-project) |
/my-model | _global/my-model (global scope) |
Step 3: Verify Connection Status
Connections go through three lifecycle states:- Active: Connection is operational and serving data
- Disabled: Connection intentionally turned off by an administrator
- Failed: Connection encountered an error during startup or restart
Step 4: Validate the Domain Model YAML
Common domain model errors that cause connection failures:- Invalid YAML syntax — Check for indentation errors, missing colons, or stray characters
- Missing
domainModelTypes— The rootdomainModelTypeskey must exist - Duplicate property names — Entity types cannot have duplicate property names within the same type
- Invalid
polarionTypereferences — EachpolarionTypemust match an existing Polarion work item type
Step 5: Verify Document Binding
Ensure the document is bound to the correct connection. Open the document settings and verify:- The source references a valid connection ID
- The
fromfield in the source query specifies a valid entity type from the domain model
Verification
After applying your fix:- Save the domain model and sheet configuration
- Navigate to Administration > Nextedy POWERSHEET and confirm the connection status shows Active
- Open the powersheet document
- You should now see data loading in the sheet without errors
See Also
- Validate Your Data Model — comprehensive model validation steps
- Configure Sources — set up source queries and expansion paths
- Creating Your First Data Model — step-by-step model creation
- Fix Type Name Errors — related entity type naming issues
Sources: admin.cy.ts, create-document-connection-and-change-status.spec.ts, ConfigProvider.tsx, model-helper.md
Sources
Sources
KB ArticlesSupport TicketsSource Code
prod-powersheet-src/com.nextedy.powersheet.client/ltc-repo/cypress/e2e/Admin/create-document-connection-and-change-status.spec.tsprod-powersheet-src/com.nextedy.powersheet.client/cypress/e2e/admin/admin.cy.tsServerRenderer.javaHttpErrorInfo.javabuild.properties