Allocation Workbench Resource Finder has dates out of order on Week ViewDescriptionAllocation Workbench Resource Finder has dates out of order on Week ViewResolutionThis was happening because the "com.snc.resource_management.first_day_of_week" System Property was changed to 7 (Sunday) when it previously was a value of 1 (Monday). Since the instance already had aggregates generated, this caused a mismatch between week start days, and the Resource Finder displays the issue as a result. We recommend not changing the property when you have existing aggregate data. If you need the change of the System Property, you will need to delete everything in the "resource_aggregate_weekly" table. Then you can regenerate with the following Script. Please make sure the above table data is deleted before running this in the "Scripts - Background" module: var startDate = '2020-01-01'; var endDate = '2021-12-31'; var aggHelper = new RMAggregateHelper(); var upgradeHelper = new RMJakartaUpgradeHelper(); var all_pps_users = upgradeHelper._getPpsResourceRoleUsers(); var categories = aggHelper.allCategories(); for (var i = 0; i < all_pps_users.length; i++) { var parm1 = all_pps_users[i] + ',' + startDate +',' + endDate +',' + 'all'; var parm2 = categories; aggHelper.onDailyHoursChanged(parm1, parm2); } Note that this may take quite a while to run depending on the users and the start/end dates entered. Make sure to change the startDate and endDate variables to match the existing aggregates range in your system.Please test this in a Sub Prod instance before moving to Prod.