/
Can I change the custom field values?

Can I change the custom field values?

This page applies to Risk Register for Jira Data Center and Jira Server

Yes, with the following caveats:

a) It's best to modify impacts, probabilities, and risk levels (exposures) by clicking in the Risk Model view. That ensures that the residual variants of those values are kept in sync; and

b) You can rename the options for the Treatment custom field, but if you rename "Avoid", or "Mitigate", or "Transfer" to something else, then you won't see warnings in the Issue View about missing treatment plans. That's because of this bit of code:

/** * Determines whether this treatment must be accompanied by a treatment plan. * <p> * A treatment plan is required if the treatment is to Avoid, Mitigate, or Transfer the risk. * * @return true if this treatment requires a plan; false otherwise */ public boolean requiresPlan() { return displayName.equalsIgnoreCase("avoid") || displayName.equalsIgnoreCase("mitigate") || displayName.equalsIgnoreCase("transfer"); }

 

Related content

Can I rename custom fields?
Can I rename custom fields?
More like this
Frequently Asked Questions
Frequently Asked Questions
Read with this
Why am I having trouble moving my project from one risk model to another?
Why am I having trouble moving my project from one risk model to another?
More like this
How do I design my own report?
How do I design my own report?
Read with this
How do I repair unhealthy risk models?
How do I repair unhealthy risk models?
More like this
Creating and Editing Risks (Data Center)
Creating and Editing Risks (Data Center)
More like this