HR Assignment Rules/Client Script Not Working After UpgradeDescription<!-- 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 Assignment rule does not update HR caseCustom business rule/client script does not update case record Release Kingston Environment Upgraded from Istanbul to Kingston Resolution - Custom business rule/client script does not update case record This business rule is not working due to the actions set to run. For example, when the code below was added to this business rule as a test: current.short_description = 'Beneficiary Change'; This updated as expected. However, in this case you made need to write a statement checking what the hr_service field is set to, then update the short description based on that value. This was also able to set to an after insert business rule and set a script: var test = current.hr_service.getDisplayValue(); current.short_description = test; current.update(); This also set the short description field as expected. Again, these are just a couple examples of how this can work. You will need to determine the best method of implementing for your needs. These are simply examples to show that this implementation should be possible. - Assignment rule does not update HR case This behavior was related to how the testing was conducted. Notice on the assignment rule the Table field is set to HR Case. However, users are not updating the COE field on the Case Creation UI. When User A changes the HR service field to 'Beneficiary Change' the COE field is defaulting to HR Total Rewards case. This is the table associated with the record being created. Since this table does not match the table in the assignment rule, the assignment group is not being filled in. A quick way to test this is to update the assignment rule Table field to HR Total Rewards case.