Business Rule running "After", using previous.object is not working for Catalog Variables in RITMIssue When using the 'previous' object in the "after" Business Rule to fetch the previous value of 'variables', the Business Rule will not fetch the correct previous value. This only happens with the "after" Business Rule. Steps to Reproduce: Create a Variable in Catalog Item as booleanCreate an "after" running Business Rule (BR) to display the current value and previous value using current.variables<variable name>The "after" Business Rule will not display the previous value of variables correctlyWorks correctly with a "before" running Business Rule.ReleaseAllCauseThis is expected out-of-the-box behavior. The 'previous.variables' are expensive objects that cannot be eagerly loaded. So, it is loaded lazily (formatted). When the 'previous.variables' are called the first time from the "after" Business Rule, it fetches from the updated record which has the new values.ResolutionCreate a "before" running Business Rule that invokes 'previous.variables'. The "after" running Business Rule will have the previously saved variables on the 'previous' object.