Question
How do I set a field using the issue id?
When setting fields I generally use the db.setFieldValue(Field Name, Value). However, this only allows you to change the item that sparked the trigger as far as I know. I am looking for a method that would work like this:
var appID = db.getID();
db.setFieldValue(appID, Field Name, Value);
Where appID could potentially be any Issue Id, not just the issue the set off the trigger.

