Calculating Resource Allocations in Operational PlansSummary1. When creating an operational resource plan, using % Capacity, what is the formula the system uses? Allocation proportion = No. of hours to allocate/total capacity for that date range Units to Allocate for user = Math.floor(User capacity * Allocation proportion) The remaining units would be allocated for each date range from starting in Round-robin fashion(# of units available for each date range), and allocated 1 unit at a time to each user in order. Example below: Resource Plan Duration : 2021-04-01 to 2021-04-30Working days - 22User1 - 22*9 = 198 hoursUser2 - 22*9 = 198 hoursTotal capacity for April 2021 - 396 hours Formula to calculate Planned hours = Math.round(percent_capacity * capacity/100) = Math.round(10*396/100) = 40 Requested allocations :Planned hours = 40 hours = 2400 minsCalendar event duration = 60 (defined in resource management properties)Distribution units = 2400/60 = 40Dist units per day = 40/22 = 1.8 -> Math.floor(1.8) = 1Remaining units (from the .8 above) = 40%22 = 18 (modular of distribution units by working days) Hours = 1 * 60 =60 mins = 1 hrsWeek - 1 :: 2 * 1 = 2Week - 2 :: 5 * 1 = 5Week - 3 :: 5 * 1 = 5Week - 4 :: 5 * 1 = 5Week - 5 :: 5 * 1 = 5 *** Round robin fashion ***Remaining hours - 18 hoursWeek 1 :: 2 + 1 = 3Remaining hours - 17 hoursWeek 2 :: 5 + 1 = 6Remaining hours - 16 hoursWeek 3 :: 5 + 1 = 6Remaining hours - 15 hoursWeek 4 :: 5 + 1 = 6Remaining hours - 14 hoursWeek 5 :: 5 + 1 = 6Remaining hours - 13 hoursWeek 1 :: 3 + 1 = 4Remaining hours - 12 hoursWeek 2 :: 6 + 1 = 7Remaining hours - 11 hoursWeek 3 :: 6 + 1 = 7Remaining hours - 10 hoursWeek 4 :: 6 + 1 = 7Remaining hours - 9 hoursWeek 5 :: 6 + 1 = 7Remaining hours - 8 hoursWeek 1 :: 4 + 1 = 5Remaining hours - 7 hoursWeek 2 :: 7 + 1 = 8Remaining hours - 6 hoursWeek 3 :: 7 + 1 = 8Remaining hours - 5 hoursWeek 4 :: 7 + 1 = 8Remaining hours - 4 hoursWeek 5 :: 7 + 1 = 8Remaining hours - 3 hoursWeek 1 :: 5 + 1 = 6Remaining hours - 2 hoursWeek 2 :: 8 + 1 = 9Remaining hours - 1 hoursWeek 3 :: 8 + 1 = 9Remaining hours - 0 hours In short :Week 1 :: 2,3,4,5,6Week 2 :: 5,6,7,8,9Week 3 :: 5,6,7,8,9Week 4 :: 5,6,7,8Week 5 :: 5,6,7,8 Finally Requested allocations for each week :Week 1 = 6 hoursWeek 2 = 9 hoursWeek 3 = 9 hoursWeek 4 = 8 hoursWeek 5 = 8 hours 3. New York instance doesn't include the fix: Import script attach to fix calculation. Release after New York includes fix and shouldn't need the script provided.