Identify the Symptom
Custom field issues typically present in one of these ways:1
Verify the Data Model Property
Custom fields must be declared as properties on the correct entity type in the data model YAML. If the property is missing, the column will appear blank even though work items contain values in Polarion.Open your data model file and confirm the custom field is listed under the appropriate entity type:If the custom field belongs to a different Polarion work item type than the entity’s default, make sure the
polarionType mapping is set correctly. When the data model entity name differs from the Polarion work item type ID, specify polarionType to establish the mapping:2
Verify the Sheet Configuration Column
After confirming the data model property exists, verify that a corresponding column is defined in your sheet configuration. Both the model property and the sheet column are required for the field to appear.
Add the column to the sheet configuration using the property name as the column key:For custom fields on related entities (accessed via an expansion path), use the full binding path through the relationship:
3
Verify Type Mapping
Powersheet automatically maps Polarion field types to appropriate data types through the metadata system. If your custom field appears but renders incorrectly (for example, a date showing as plain text), check that Polarion recognizes the field type correctly.The automatic type conversion supports these Polarion types:
4
Check Read-Only Status
If the column appears but cannot be edited, check these areas in order:1. Column-level 2. Entity type permissionsCheck that the entity type’s permissions in the data model allow editing. Navigate to Administration > Nextedy Powersheet > Data Models and confirm the entity type does not restrict write access for the current user’s role.3. Expansion path columnsColumns that display properties from related entities via an expansion path are read-only by default. Editing through expansion paths requires explicit configuration of the relationship’s write behavior.4. System fieldsBuilt-in fields like
isReadOnly flagVerify the column is not explicitly set to read-only in the sheet configuration:id and outlineNumber are always read-only regardless of configuration.5
Debug Save Failures
If you can edit a custom field in the sheet but changes do not persist after saving, the issue is usually a mismatch between the property name in the data model and the actual Polarion custom field ID.Check the browser console for error responses during save. Powersheet returns structured error information with a
message field describing what went wrong and an HTTP statusCode.Common save failure causes:- Property name typo — The property key in the data model must match the Polarion field ID character-for-character, including the
c_prefix and exact casing - Wrong entity type — The custom field is defined on a different Polarion work item type than the one mapped by
polarionType - Field not enabled for the project — The custom field exists globally but is not enabled for the current project’s work item type configuration
Silent blank columns from `sources.model` mismatch
Silent blank columns from `sources.model` mismatch
If all custom field columns are blank across the entire sheet, verify that the
sources.model property in your sheet configuration matches the name of your custom data model file. A common mistake is leaving the default value when you have created a model with a different name. The model name in sources must match exactly.6
Multi-Item Custom Fields
When an entity type links to multiple work item types (for example,
SystemRequirement links to both DesignOutput and DesignVerification), the second linked column must use multiItem: true in the sheet configuration.Verification
After applying your fixes, reload the Powersheet widget in Polarion and confirm:- ✅ The custom field column appears with the correct title
- ✅ Existing values from Polarion display in the column
- ✅ You can edit a value, save, and see it persisted when refreshing
- ✅ The field type renders with the appropriate control (text input, date picker, dropdown, checkbox)
See Also
- Add a Custom Property — step-by-step guide for adding properties to the data model
- Add a Column — how to define columns in sheet configurations
- Configure a Formatter — customize how field values render
- Configure Read-Only Column — control column editability
- Configure Multi-Item Column — set up columns for multi-linked entities
- Create an Entity Type — entity type to work item type mapping
- Handle Validation Errors — resolve save-time validation issues