Skip to main content
Error message text may vary between Risksheet versions. The messages listed here are representative. Always check the browser console (F12 > Console) for additional diagnostic details.

Configuration Errors

Errors that occur when loading or parsing the risksheet.json configuration file.
Error MessageCauseResolution
No type attribute is defined for dataTypeA dataTypes entry (risk or task) is missing the required type property that specifies the Polarion work item type.Add the type property to the affected dataTypes entry in risksheet.json. Example: "risk": { "type": "failureMode", "role": "relates_to" }
For input string: <value>An enum value in the configuration does not match any valid enumeration option defined in Polarion. Commonly occurs when custom work item types use enum fields with values not properly mapped.Verify that enum values in risksheet.json match the exact enum option IDs defined in Polarion’s custom field configuration XML. Check for typos and case sensitivity.
If risksheet.json contains invalid JSON syntax (missing commas, unquoted keys, trailing commas), the grid will fail to load entirely. Use a JSON validator to check syntax before uploading.

Save Operation Errors

Errors that occur when saving modified work items to the Polarion server.
Error MessageCauseResolution
RISKSHEET rollbackTxA server-side transaction rollback occurred during the save operation. One or more work item updates failed, causing the entire batch to be rolled back.Check the Polarion server log for the root cause. Common causes include workflow constraint violations, permission denials, or required field validation failures. See Save Operation Failures.
Save fails silently (no visible error)The save operation completed on the client side but the server did not persist all changes. May occur when refreshOnSave is set to false.Enable browser developer tools (F12) and check the Network tab for failed HTTP requests during save. Verify server logs for error details.

Session Errors

Errors related to session lifecycle and authentication.
Error MessageCauseResolution
Session timeout (HTTP 401/403 response)The Polarion server session has expired due to inactivity. The session timeout is configured at the server level.Reload the page to establish a new session. Unsaved changes will be lost. Save work frequently to minimize data loss risk. See Session Timeout Errors.
Save your work regularly. If you need to step away from a long editing session, save before leaving. The session timeout duration is controlled by your Polarion server administrator.

Rendering Errors

Errors that affect how cells, columns, or the grid itself are displayed.
Error MessageCauseResolution
Column displays blank or [object Object]The column type does not match the actual Polarion field type, or the binding references a field that does not exist on the work item.Verify the binding and type properties in the column configuration. Use exact Polarion field IDs. See Rendering and Display Errors.
Link column shows raw IDs instead of formatted linksThe link rendering template or cellRenderer is missing or misconfigured for an itemLink or multiItemLink column.Check that the column has a valid cellRenderer defined, or verify that the linked work item type and link role are correctly configured. See Link Rendering Issues.
Formula column shows NaN or nullThe formula function references field bindings that do not exist on the current work item, or input values are empty/undefined.Check the formula function for null/undefined handling. Add null checks: var value = info.item['field']; return value ? value : null;
Cell decorator throws JavaScript errorA cellDecorators function contains a syntax error or references undefined properties.Open the browser console (F12) to see the full JavaScript error. Fix the decorator function in risksheet.json.

Permission Errors

Errors related to user permissions and access control.
Error MessageCauseResolution
Access denied when opening RisksheetThe user does not have read permission on the LiveDoc document or the work items within it.Verify that the user has the required Polarion roles and permissions for the project and document. See Access Denied Errors.
Field is read-only unexpectedlyThe column appears editable in configuration but is read-only at runtime. Certain system fields (id, status, type, project, outlineNumber, author, resolution, created, updated) are always read-only. Columns with formula or serverRender properties are also automatically read-only.Check whether the field is a system field or has a formula/serverRender property. See Permission-Based Field Restrictions.

Work Item Operation Errors

Errors that occur when creating, deleting, or modifying work items through the grid.
Error MessageCauseResolution
no rejected action foundWhen deleting a risk item, the configured rejectedAction workflow action is not available on the work item’s current workflow state. Commonly occurs with imported work items that may be in a different workflow state than manually created items.Verify that the workflow for the work item type includes the action specified in dataTypes.risk.rejectedAction (default: reject). Check that the action is available from the work item’s current state. See Risk Deletion Errors.
Document NOT createdThe target document for new work items could not be created or accessed. May occur when the createInDocument path is invalid or the user lacks document creation permissions.Verify the createInDocument path format (folder/documentId). Ensure the target folder exists and the user has document creation permissions. See Document Creation Errors.
Duplicate mitigation tasks createdMultiple task work items are created when only one was expected. May occur due to double-click on creation button or concurrent save operations.Check for duplicate link relationships on the risk item. Remove extra tasks through the Polarion tracker. See Duplicate Mitigation Tasks.

Export Errors

Errors related to Excel and PDF export operations.
Error MessageCauseResolution
Calculated columns missing in exportFormula-based calculated columns may not appear in exported files if the export process does not evaluate client-side JavaScript formulas.Verify export settings. Server-rendered columns (using serverRender) are generally included in exports. See Calculated Columns Missing in Exports.
PDF export fails or produces empty outputThe PDF export Velocity template (risksheetPdfExport.vm) is missing or contains errors.Verify that the PDF export template file exists and has valid Velocity syntax. See Export Performance Issues.

Query Errors

Errors related to data loading and query execution.
Error MessageCauseResolution
Query parsing errorThe Lucene query syntax in a customQuery or queryFactory configuration is invalid.Check the query syntax against Polarion’s Lucene query format. Common issues include unescaped special characters and invalid field names. See Query Parsing Errors.
No items displayed in gridThe query returns no results. The document may be empty, the work item type filter may not match any items, or the document path may be incorrect.Verify that the document contains work items of the configured type. Test the query in Polarion’s tracker search to confirm it returns expected results.

Date and Time Errors

Errors specific to date and time column operations.
Error MessageCauseResolution
Date column save errorDate values are sent in an unexpected format. The expected format is yyyy-MM-dd for date columns and ISO 8601 for datetime columns.Verify the column type matches the Polarion field type (use date for date-only fields, datetime for timestamp fields). See Date Column Save Errors.

License Errors

Errors related to Risksheet licensing.
Error MessageCauseResolution
License validation errorThe Risksheet license is expired, not installed, or the user is not assigned as an active user.Contact your administrator to verify the license status. Ensure the current user is assigned in the active user list. See License Validation Errors.

Browser Console Diagnostic Steps

When encountering any error, the browser developer console provides the most detailed diagnostic information:
  1. Open developer tools with F12 or Ctrl+Shift+I (Windows/Linux) / Cmd+Option+I (macOS).
  2. Navigate to the Console tab to view JavaScript errors and warnings.
  3. Navigate to the Network tab to inspect HTTP requests and responses during save operations.
  4. Look for red error entries that include stack traces pointing to the error source.
  5. Copy the error details when reporting issues to support.
Filter console messages by typing risksheet or nextedy in the console filter box to isolate Risksheet-specific messages from other Polarion logs.

See Also