Thanks for the tip, the measurements are as follows:
1. Percentage of Total:
SUM(qty) / (SUM(qty) AGGREGATE OVER (ORDER BY status DESC ALL))
2. Cumulative Percentage SUM(qty) / (SUM(qty) AGGREGATE OVER (ORDER BY status DESC Cumulative))
Calculates the percentage of the cumulative total, sorted by status.