Identify the Error
Validation errors appear when saving changes in the sheet. The error dialog displays one or more numbered error messages describing what failed. Common symptoms include:- A save error dialog with numbered messages (e.g., “1. Error saving item…”)
- Partial saves where some rows succeed but others fail
- Entity dependency errors when creating linked work items
1
Understand the Save Process
Powersheet saves entities one by one in dependency order. Parent entities are saved before their children to ensure references are valid. This means:
- Entity errors are collected across all items and reported as a single aggregated list after the save cycle completes
- Application errors (server exceptions) interrupt the save immediately
- Dependency sort failures (e.g., circular dependencies) prevent any saves from starting
2
Use Review Mode to Find Problems
Before saving, use review mode to identify items with validation problems. For how review mode tracks pending changes, see Working Sessions.
- Click the Review button in the toolbar (or use the review filter)
- Select the Problems filter to show only rows with validation errors
- Fix the highlighted issues before attempting to save
3
Common Validation Error Patterns
Missing Required Fields
If a required Polarion field is empty, the save will fail for that entity:- Check if mandatory custom fields have values
- Verify that
titleis set for new work items - Ensure enum fields have valid values from the allowed list
Type Name Mismatches
The data modeldomainModelTypes keys must match exactly what the server expects. Errors referencing unknown types indicate a naming mismatch:Constraint Violations
If constraints are configured on entity types (load, create, or pick constraints), saving may fail when data violates those constraints:- Document constraints: New items must be created in the specified document
- Type constraints: Work items must match the expected document type
- Component constraints: Items must belong to the correct component
4
Check Server Error Details
When the on-screen message is not enough, look in two places:
- Browser DevTools (Network tab) — open your browser’s developer tools (
F12), select Network, retry the save, and inspect the failing request’s response. Powersheet returns a structured error with amessagefield and an HTTPstatusCode. - Polarion server log — server-side failures (HTTP
500) are recorded in the Polarion application log on the server. Ask your Polarion administrator for the log location if you do not have server access.
5
Fix and Retry
After identifying the error source:
- Correct the data in the affected cells
- Use the Problems review filter to verify no remaining issues
- Save again
Verification
After resolving all validation errors:- Click the Review button and select Problems — the list should be empty
- Save the changes
- You should now see a success notification with no error dialog
- Verify the saved data in Polarion to confirm persistence
See Also
- Handle Validation Errors — validation handling in save operations
- Create a Work Item — creating items with required fields
- Fix Type Name Errors — type naming issues
- Fix Relationship Errors — relationship configuration errors