In business rules on the Location [cmn_location] table, previous is the same as currentIssue <!-- div.margin{ padding: 10px 40px 5px 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: 8px; border-collapse: separate; } table.internalTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:0; } .sp td{ border-bottom: 1px solid; border-right: 1px solid; border-color:#E0E0E0; background-color: #ffffff; height: 20px; padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; } .sphr td{ border-right: 1px solid; border-bottom: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; height: 20px; } .title { color: #D1232B; font-weight:; font-size:25px; } .hd1{ color: #D1232B; font-weight:; font-size:18px; } .hd2{ color: #646464; font-weight:bold; font-size:16px; } .hd3{ color: #7a7a7a; font-weight:; font-size:16 px; text-decoration:; } .hd4{ color: #000000; font-weight:bold; font-size:14 px; text-decoration:; } --> In business rules on the Location table, previous is the same as current ProblemFor After business rules on the Location table [cmn_location] table with an order of 100 or higher, "previous" is the same as "current." Steps to reproduce Log in to a Fuji instance.Create a business rule: Table: Location [cmn_location]When: AfterUpdate: trueOrder: 100Condition: current.contact.changes()Script: gs.log("Contact field has been updated"); Navigate to a Location record.Update the Contact field.Navigate to the system log.Note that the message was not recorded. SolutionThe business rule fails to run because "previous" is the same as "current" and therefore the condition is not satisfied. The problem seems to be caused by the base system business rule named Location - generate full name. As a workaround, change the order of the custom business rule to a value lower than 100 (for example, 90). The business rule Location - generate full name also calls HierarchicalReference to generate the full_name on Locations. This performs an update (to generate the full_name for hierarchy location) so previous = current on contract change. For more information, see Defining Locations in the product documentation.