For standard fields an alias has already been created and is ready for use. For
more information about using standard fields see: Variable resolution
NOTE: This information only applies to standard fields. For more information on custom fields
see Working with Custom Fields.
Getting Values
NOTE: This script assumes that it is running in the context of an issue. Like in a workflow script or listener for example. If you would like to test this script from the SIL Manager, add an issue key to test with under the Run Configuration setting (Run > Run Configuration > Context).Example 1
string oldSummary = summary;
Example 2
string oldDescription = description;
Setting Values
NOTE: This script assumes that it is running in the context of an issue. Like in a workflow script or listener for example. If you would like to test this script from the SIL Manager, add an issue key to test with under the Run Configuration setting (Run > Run Configuration > Context).Example 1
summary = "This was easy to set with SIL!";
Example 2
description = "This was easy to set with SIL!";