Portfolio supported fields

Looking for the documentation on the newest versions of Power Scripts for Jira 8 for Server/Data Center? Click here !

Power Scripts™ for Jira enriches the SIL™ language by enabling you to directly access custom fields created by Portfolio just like any other Jira custom fields.

Supported custom fields

Custom FieldRead/WriteSIL TypeValueNotes
Parent LinkRead/WritestringIssue key of the portfolio parentIf set to an empty value, the issue will be removed from the Portfolio parent
Target startRead/WritedateThe date and time of the "Target start" Portfolio custom fieldAvailable since Power Scripts v. 4.8.0.10
Target endRead/WritedateThe date and time of the "Target end" Portfolio custom fieldAvailable since Power Scripts v. 4.8.0.10

Back to basics

This custom field contains a blank space in its name, therefore remember to use #{ and } if you'd like to use the name instead of id/alias.

Examples

#{Parent Link} = "TEST-123";
#{TEST-1.Parent Link} = "TEST-123";
print(#{TEST-1.Parent Link});