3–8%
Of annual variable comp subject to recovery
90 days
Typical lookback window for corrections
#1
Source of formal comp disputes (industry-wide)
Recovery Waterfall — Gross to Net Payout
Plan Language
Standard Overpayment Recovery Clause
In the event that incentive compensation has been paid based on data subsequently determined to be inaccurate — including but not limited to deal reversals, credit restatements, quota corrections, or system errors — the Company shall recover the overpayment by reducing future incentive payments. Recovery shall be applied in the current or subsequent measurement period. The Company shall provide the Participant with written notice specifying the overpayment amount, the cause, and the recovery schedule.
Recovery Precedence Rule
When both overpayment recovery and draw recovery obligations exist in the same period, overpayment recovery shall take precedence. Overpayment amounts shall be deducted first from the Participant's gross incentive earnings for the period. Any remaining earnings after overpayment recovery shall then be applied to outstanding draw balances. If gross earnings are insufficient to satisfy both obligations, the unrecovered balance shall roll forward to the next measurement period.
Per-Stream Protection Matrix
Draw recovery shall be limited to base commission earnings only (Measures 1-3). Acceleration uplift, cross-sell bonuses, and deal-team bonuses are protected from draw recovery. Overpayment recovery may be applied against all earning streams without restriction. This per-stream protection ensures that performance-based earnings above base commission are not consumed by draw repayment, preserving the motivational integrity of performance incentives.
Formulas & Calculations
Recovery Precedence Calculation
// Period settlement with dual recovery GROSS_EARNINGS = BASE_COMM + ACCEL_UPLIFT + CROSS_SELL + DEAL_TEAM // Step 1: Overpayment recovery (from ALL streams) OVERPAYMENT_RECOVERED = MIN(OVERPAYMENT_BALANCE, GROSS_EARNINGS) AFTER_OVERPAYMENT = GROSS_EARNINGS - OVERPAYMENT_RECOVERED // Step 2: Draw recovery (from BASE COMM only) DRAW_ELIGIBLE = MAX(0, BASE_COMM - OVERPAYMENT_RECOVERED) DRAW_RECOVERED = MIN(DRAW_BALANCE, DRAW_ELIGIBLE) // Net payout NET_PAYOUT = AFTER_OVERPAYMENT - DRAW_RECOVERED NEW_OVERPAYMENT_BAL = OVERPAYMENT_BALANCE - OVERPAYMENT_RECOVERED NEW_DRAW_BAL = DRAW_BALANCE - DRAW_RECOVERED
Recovery Impact on Effective Rate
// How recovery affects the rep's realized commission rate GROSS_RATE = GROSS_EARNINGS / CREDITED_REVENUE NET_RATE = NET_PAYOUT / CREDITED_REVENUE RECOVERY_DRAG = GROSS_RATE - NET_RATE // Warning: if RECOVERY_DRAG > 2% of gross rate, // rep perceives the plan as punitive // Review recovery timing and communication
Scenarios
Well-Designed Recovery Program
Enterprise SaaS company discovers a $5K overpayment from a deal credit correction. The system sends an automated notice to the rep with: the original deal, the correction reason, the overpayment amount, and the recovery schedule (spread over 2 months). The rep's acceleration bonus and cross-sell earnings are protected — only base commission is reduced. The rep sees the deduction on their comp statement with full transparency. No dispute filed.
Poorly-Designed Recovery Program
Company discovers $12K in overpayments across 6 months of miscalculated commissions. They deduct the full $12K from the rep's next paycheck — zeroing out a month where the rep performed at 140% attainment. The rep files a formal dispute, escalates to HR, and threatens legal action. Two other reps on the team hear about the experience and start job searching. The $12K recovery costs $180K in attrition and legal fees.
Comparison
Implementation Checklist
AI Prompt Template
Copy & paste into your AI assistant
You are a sales compensation analyst. I need to design an overpayment recovery policy for our sales compensation plan. Context: - Organization size: [NUMBER] reps - Average annual overpayment per rep: $[AMOUNT] - Current recovery approach: [DESCRIBE — e.g., ad hoc, immediate deduction, no policy] - Earning streams: [LIST — e.g., base commission, accelerator, cross-sell, deal-team bonus] - Draw program: [YES/NO and type] Please: 1. Recommend a recovery precedence rule (overpayment vs draw ordering) 2. Design a per-stream protection matrix 3. Set recovery caps and lookback window parameters 4. Draft the recovery clause for the plan document 5. Create a rep communication template for recovery notices 6. Identify state-level legal constraints on recovery