Risk Assessment not updating risk field after completionDescription<!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Symptoms When using Change Risk Assessment, after filling all the values in the assessment the Risk field on the change form does not get updated with the result of the assessment calculations. Release London Patch 1 Environment Using Change Management with optional plugin Change Risk Assessment enabled. Cause The dictionary entry for the Risk field does not have a default value properly set. When the change risk assessment is submitted, as part of the calculations, the _calculateConditionRisk method (on script include ChangeRiskAsmtSNC) evaluates the assessment conditions for the current record: _calculateConditionRisk: function(changeRequestGr) { var risk = new RiskCalculator(changeRequestGr).calculateRisk(); risk.risk = risk.risk + ""; Since there is no default value for the Risk, it returns a risk of 0 (zero) which, for risk evaluation purposes, is higher than 1,2,3, etc since the lower the numeric value, the higher the risk is. For that reason, the change record does not get updated. Resolution Setting a valid default value for the Risk field will get the issue fixed. On a change request form: Right-click on the Risk label and select "Configure Dictionary";Check the available choices on the Choices related list;On the same form, on the "Default Value" tab, set it to one of the available choices;