...
Save the changes and the selected value should appear on the issue screen:
Example for
...
SIL Data Source
Get Project Versions
Code Block |
---|
string projectKey = "TEST"; string[] versionNames = admGetProjectVersions(projectKey); number[] versionId; for(string versionName in versionNames){ JVersion version = admGetProjectVersion(projectKey, versionName); versionId += version.id; } return versionId; |
This example is used to generate the pictures above.
Example for SQL Data Source
JNDI : jiraDS
SQL Initial Script
Code Block |
---|
select vname from projectversion; |
This example returns the versions names.