Change Risk Properties: glide.ui.risk_calculate_rule set to Business Rule and Change Request UI Action Update rather that Save used, View Details in Risk message link broken in list viewDescriptionChange Risk Properties: glide.ui.risk_calculate_rule set to Business Rule and Change Request UI Action Update rather that Save used, View Details in Risk message link broken in list view. When the Info message is displayed on a page that no longer has the context of the Change Request, the link to view details should no longer be displayed.Steps to Reproduce Set Change Risk Properties: glide.ui.risk_calculate_rule to Business Rule.Go a Change Request, modify a field e.g. risk and select the UI Action: Update rather that Save. The update action will take the user away from the Change Request record on update, e.g. to change list page, and the Risk will be evaluated and the Info Message displayed on that list screen, which no longer has the context of the change request, therefore the model dialog link, when clicked on cannot display data for the change_request.WorkaroundModify Script Include: ChangeRiskDetailsHelper SysId: 1f362a0ac3141010cc343f52c1d3ae0b adding following: showDetailsLink: function() { if (!this.isServicePortal() && this.getViewDetailsEnabled() === "enable") { var calcRule = gs.getProperty('glide.ui.risk_calculate_rule'); if (calcRule === 'ui_action' || calcRule === 'business_rule' && action && JSUtil.notNil(action.getRedirectURL())) return true; else return false; } return false; }, Related Problem: PRB1844331