Skip to end of banner
Go to start of banner

Portfolio supported fields

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

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});
  • No labels