Steps To Reproduce:
1. Go to Classic UI > Administration Menu, Project Management, Risk Settings
and configure as per following example:
2. Compare the Project > Risk Settings to the
stock Jaspersoft report (Project Storyboard)
Expected: The corresponding diamond colors should match was was configured in Steps 1 and 2.
Actual:The corresponding diamond colors do not match what was configured.
Example:
Compare the 'Probability'. Instead of color(Purple), it shows blank.
Compare the 'Impact'. Instead of color(Brown), it shows blank.
All
The reason for the discrepancy is because the Jaspersoft reports are hardcoded and do not have any reference to the updated risk settings.
<imageExpression><![CDATA[$F{RIM_PROBABILITY_KEY} == 1 ?
"repo:/ca_ppm/resources/images/stoplightGreen" : $F{RIM_PROBABILITY_KEY} == 2 ?
"repo:/ca_ppm/resources/images/stoplightYellow" : $F{RIM_PROBABILITY_KEY} == 3 ?
"repo:/ca_ppm/resources/images/stoplightRed" : "repo:/ca_ppm/resources/images/stoplightWhite"]]>
</imageExpression>
Tthe stock and custom reports can be modified to reflect what is needed, however requires a customization of the report(s).