Prerequisites
- The custom field must already be defined in Siemens Polarion ALM (under Administration > Work Items > Custom Fields)
- Access to the domain model and sheet configuration YAML files via Administration > Nextedy POWERSHEET
Step 1: Add the Property to the Domain Model
Open your domain model YAML and add the custom field under the appropriate entity type’sproperties section. Use the Polarion custom field ID as the property name:
c_priority) must match the Polarion custom field ID exactly. Polarion custom fields typically use the c_ prefix.
Step 2: Configure Permissions
Control field visibility and editability with thereadable and updatable properties:
| Property | Default | Effect |
|---|---|---|
readable | true | Controls whether the field is visible in the sheet |
updatable | true | Controls whether the field can be edited |
Built-in fields like
id and outlineNumber are automatically read-only regardless of the updatable setting.Step 3: Add the Column to the Sheet Configuration
Reference the property in your sheet configuration’scolumns section:
Step 4: Configure the Field Type (Optional)
Powersheet automatically detects the field type from Polarion metadata. The following type mappings are handled automatically:| Polarion Type | Behavior in Powersheet |
|---|---|
| String / Text | Inline text editor |
| Integer | Numeric editor |
| Float / Currency | Numeric editor with decimal |
| Boolean | Checkbox |
| Date | Date picker |
| Enum | Dropdown with options |
Step 5: Verify
Reload the powersheet document. You should now see the custom field column displayed with the title you specified. Edit a cell value, save, and confirm the value persists in Polarion.Open the work item in Polarion’s standard form view to confirm the custom field value matches what you entered in Powersheet.
See Also
- Add a Custom Property — detailed domain model property configuration
- Configure an Enum Field — set up enum dropdown pickers
- Add a Column — general column configuration guide
- Set Entity Permissions — control
readableandupdatableat entity level - Debug Custom Field Issues — troubleshoot field display problems
Sources
Sources
Source Code
Property.javaSaveTest.javaMetadataTest.javaprod-powersheet-src/com.nextedy.powersheet.client/cypress/fixtures/models/permissions.yamlDataPropertyFactory.java