sales-operations

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Sales Operations

销售运营

Expert-level sales operations for revenue optimization.
助力收入优化的专业级销售运营服务。

Core Competencies

核心能力

  • CRM administration
  • Sales analytics
  • Territory planning
  • Quota setting
  • Compensation design
  • Process optimization
  • Forecasting
  • Sales enablement
  • CRM管理
  • 销售分析
  • 区域规划
  • 配额制定
  • 薪酬设计
  • 流程优化
  • 预测分析
  • 销售赋能

Sales Analytics

销售分析

Key Metrics Dashboard

关键指标仪表盘

┌─────────────────────────────────────────────────────────────┐
│               Sales Performance - [Period]                   │
├─────────────────────────────────────────────────────────────┤
│  Revenue          Pipeline         Win Rate      Cycle Time  │
│  $2.4M            $8.2M            28%           45 days     │
│  vs Quota: 102%   Coverage: 3.4x   vs LQ: +3%   vs LQ: -5d  │
├─────────────────────────────────────────────────────────────┤
│  PIPELINE BY STAGE                                           │
│  Prospect:    $1.2M (15%)  ████                             │
│  Discovery:   $2.1M (26%)  ███████                          │
│  Demo:        $2.8M (34%)  █████████                        │
│  Proposal:    $1.5M (18%)  █████                            │
│  Negotiation: $0.6M (7%)   ██                               │
├─────────────────────────────────────────────────────────────┤
│  REP PERFORMANCE                                             │
│  Rep A: $520K (115%)  Rep B: $480K (107%)  Rep C: $420K (93%)│
└─────────────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────────┐
│               Sales Performance - [Period]                   │
├─────────────────────────────────────────────────────────────┤
│  Revenue          Pipeline         Win Rate      Cycle Time  │
│  $2.4M            $8.2M            28%           45 days     │
│  vs Quota: 102%   Coverage: 3.4x   vs LQ: +3%   vs LQ: -5d  │
├─────────────────────────────────────────────────────────────┤
│  PIPELINE BY STAGE                                           │
│  Prospect:    $1.2M (15%)  ████                             │
│  Discovery:   $2.1M (26%)  ███████                          │
│  Demo:        $2.8M (34%)  █████████                        │
│  Proposal:    $1.5M (18%)  █████                            │
│  Negotiation: $0.6M (7%)   ██                               │
├─────────────────────────────────────────────────────────────┤
│  REP PERFORMANCE                                             │
│  Rep A: $520K (115%)  Rep B: $480K (107%)  Rep C: $420K (93%)│
└─────────────────────────────────────────────────────────────┘

Sales Metrics Framework

销售指标框架

Activity Metrics:
MetricFormulaTarget
Calls/DayTotal calls / Days50+
Meetings/WeekTotal meetings / Weeks15+
Proposals/MonthTotal proposals / Months8+
Pipeline Metrics:
MetricFormulaTarget
Pipeline CoveragePipeline / Quota3x+
Pipeline VelocityWon Deals / Avg Cycle Time-
Stage ConversionStage N+1 / Stage NVaries
Outcome Metrics:
MetricFormulaTarget
Win RateWon / (Won + Lost)25%+
Average Deal SizeRevenue / Deals$[X]
Sales CycleAvg days to close<60
Quota AttainmentActual / Quota100%+
行为指标:
指标计算公式目标值
每日通话数Total calls / Days50+
每周会议数Total meetings / Weeks15+
每月提案数Total proposals / Months8+
销售管线指标:
指标计算公式目标值
管线覆盖率Pipeline / Quota3x+
管线流转速度Won Deals / Avg Cycle Time-
阶段转化率Stage N+1 / Stage N依阶段而定
结果指标:
指标计算公式目标值
赢单率Won / (Won + Lost)25%+
平均Deal规模Revenue / Deals$[X]
销售周期平均成交天数<60
配额完成率Actual / Quota100%+

Territory Planning

区域规划

Territory Design Principles

区域设计原则

Balance:
  • Similar opportunity potential
  • Comparable workload
  • Fair distribution
Coverage:
  • Geographic proximity
  • Industry alignment
  • Account relationships
Growth:
  • Room for expansion
  • Career progression
  • Market potential
平衡性:
  • 相似的机会潜力
  • 相当的工作负载
  • 公平分配
覆盖性:
  • 地理邻近性
  • 行业匹配度
  • 客户关系
成长性:
  • 拓展空间
  • 职业发展
  • 市场潜力

Territory Model

区域模型

markdown
undefined
markdown
undefined

Territory Plan: [Region/Segment]

Territory Plan: [Region/Segment]

Overview

Overview

  • Total accounts: [Number]
  • Total ARR potential: $[Amount]
  • Rep count: [Number]
  • Total accounts: [Number]
  • Total ARR potential: $[Amount]
  • Rep count: [Number]

Territory Assignment

Territory Assignment

Territory 1: [Name]

Territory 1: [Name]

  • Rep: [Name]
  • Accounts: [Number]
  • ARR Potential: $[Amount]
  • Named accounts: [List]
  • Geographic coverage: [Area]
  • Rep: [Name]
  • Accounts: [Number]
  • ARR Potential: $[Amount]
  • Named accounts: [List]
  • Geographic coverage: [Area]

Territory 2: [Name]

Territory 2: [Name]

...
...

Metrics by Territory

Metrics by Territory

TerritoryAccountsPotentialQuotaCoverage
[T1]X$Y$ZW%
TerritoryAccountsPotentialQuotaCoverage
[T1]X$Y$ZW%

Rules of Engagement

Rules of Engagement

  • Account ownership: [Rules]
  • Lead routing: [Rules]
  • Splits: [Rules]
undefined
  • Account ownership: [Rules]
  • Lead routing: [Rules]
  • Splits: [Rules]
undefined

Account Scoring

客户评分

python
def score_account(account):
    """
    Score accounts for territory assignment and prioritization
    """
    score = 0

    # Company size (0-30 points)
    if account['employees'] > 5000:
        score += 30
    elif account['employees'] > 1000:
        score += 20
    elif account['employees'] > 200:
        score += 10

    # Industry fit (0-25 points)
    if account['industry'] in ['Technology', 'Finance']:
        score += 25
    elif account['industry'] in ['Healthcare', 'Manufacturing']:
        score += 15

    # Engagement (0-25 points)
    if account['website_visits'] > 10:
        score += 15
    if account['content_downloads'] > 0:
        score += 10

    # Intent signals (0-20 points)
    if account['intent_score'] > 80:
        score += 20
    elif account['intent_score'] > 50:
        score += 10

    return score
python
def score_account(account):
    """
    Score accounts for territory assignment and prioritization
    """
    score = 0

    # Company size (0-30 points)
    if account['employees'] > 5000:
        score += 30
    elif account['employees'] > 1000:
        score += 20
    elif account['employees'] > 200:
        score += 10

    # Industry fit (0-25 points)
    if account['industry'] in ['Technology', 'Finance']:
        score += 25
    elif account['industry'] in ['Healthcare', 'Manufacturing']:
        score += 15

    # Engagement (0-25 points)
    if account['website_visits'] > 10:
        score += 15
    if account['content_downloads'] > 0:
        score += 10

    # Intent signals (0-20 points)
    if account['intent_score'] > 80:
        score += 20
    elif account['intent_score'] > 50:
        score += 10

    return score

Quota Setting

配额制定

Quota Methodology

配额制定方法

Top-Down:
Company Revenue Target: $50M
├── Growth Rate: 30%
├── Team Capacity: 20 reps
├── Average Quota: $2.5M
└── Adjustments: ±20% based on territory
Bottom-Up:
Account Potential Analysis:
├── Existing accounts: $30M
├── Pipeline value: $15M
├── New logo potential: $10M
├── Total: $55M
└── Risk adjustment: -10%
Final: $49.5M
自上而下法:
Company Revenue Target: $50M
├── Growth Rate: 30%
├── Team Capacity: 20 reps
├── Average Quota: $2.5M
└── Adjustments: ±20% based on territory
自下而上法:
Account Potential Analysis:
├── Existing accounts: $30M
├── Pipeline value: $15M
├── New logo potential: $10M
├── Total: $55M
└── Risk adjustment: -10%
Final: $49.5M

Quota Allocation

配额分配

RepTerritory PotentialHistoricalRampFinal Quota
Rep A$3M110%Full$2.7M
Rep B$2.8M95%Full$2.4M
Rep C$2.5MN/A50%$1.2M
销售代表区域潜力历史表现成长阶段最终配额
Rep A$3M110%成熟$2.7M
Rep B$2.8M95%成熟$2.4M
Rep C$2.5M50%成长$1.2M

Compensation Design

薪酬设计

Compensation Structure

薪酬结构

TOTAL ON-TARGET EARNINGS (OTE)
├── Base Salary: 50-60%
└── Variable: 40-50%
    ├── Commission: 80%
    │   ├── New Business: 60%
    │   └── Expansion: 40%
    └── Bonus: 20%
        ├── Quarterly accelerators
        └── SPIFs

COMMISSION RATE
├── 0-50% quota: 0.5x rate
├── 50-100% quota: 1x rate
├── 100-150% quota: 1.5x rate
└── 150%+ quota: 2x rate
TOTAL ON-TARGET EARNINGS (OTE)
├── Base Salary: 50-60%
└── Variable: 40-50%
    ├── Commission: 80%
    │   ├── New Business: 60%
    │   └── Expansion: 40%
    └── Bonus: 20%
        ├── Quarterly accelerators
        └── SPIFs

COMMISSION RATE
├── 0-50% quota: 0.5x rate
├── 50-100% quota: 1x rate
├── 100-150% quota: 1.5x rate
└── 150%+ quota: 2x rate

Comp Plan Template

薪酬计划模板

markdown
undefined
markdown
undefined

Sales Compensation Plan: [Role]

Sales Compensation Plan: [Role]

Plan Overview

Plan Overview

  • Role: [Role Name]
  • OTE: $[Amount]
  • Base/Variable Split: [X/Y]%
  • Pay Period: [Frequency]
  • Role: [Role Name]
  • OTE: $[Amount]
  • Base/Variable Split: [X/Y]%
  • Pay Period: [Frequency]

Commission Structure

Commission Structure

New Business

New Business

  • Rate: [X]% of ACV
  • Accelerators:
    • 100-120%: 1.2x multiplier
    • 120%+: 1.5x multiplier
  • Rate: [X]% of ACV
  • Accelerators:
    • 100-120%: 1.2x multiplier
    • 120%+: 1.5x multiplier

Renewal/Expansion

Renewal/Expansion

  • Rate: [Y]% of ACV
  • Expansion: Same as new business
  • Renewal: Reduced rate
  • Rate: [Y]% of ACV
  • Expansion: Same as new business
  • Renewal: Reduced rate

Quota

Quota

  • Annual: $[Amount]
  • Quarterly: $[Amount]
  • Ramped: [If applicable]
  • Annual: $[Amount]
  • Quarterly: $[Amount]
  • Ramped: [If applicable]

Payment Terms

Payment Terms

  • Commission paid: [Timing]
  • Clawback period: [Duration]
  • Draw: [If applicable]
  • Commission paid: [Timing]
  • Clawback period: [Duration]
  • Draw: [If applicable]

Special Incentives

Special Incentives

undefined
undefined

Forecasting

预测分析

Forecast Categories

预测分类

CategoryDefinitionWeighting
ClosedSigned contract100%
CommitVerbal commit, high confidence90%
Best CaseStrong opportunity, likely to close50%
PipelineActive opportunity20%
UpsideEarly stage5%
分类定义权重
已成交签署合同100%
承诺成交口头承诺,高置信度90%
最佳情况优质机会,大概率成交50%
管线机会活跃机会20%
潜在机会早期阶段5%

Forecast Report

预测报告

┌─────────────────────────────────────────────────────────────┐
│                  Q4 Forecast - Week 8                        │
├─────────────────────────────────────────────────────────────┤
│  Quota: $10M                                                 │
│                                                              │
│  Category       Deals    Amount     Weighted                 │
│  Closed         12       $2.4M      $2.4M                   │
│  Commit         8        $1.8M      $1.6M                   │
│  Best Case      15       $3.2M      $1.6M                   │
│  Pipeline       22       $4.5M      $0.9M                   │
│  ─────────────────────────────────────────────              │
│  Weighted Total          $11.9M     $6.5M                   │
├─────────────────────────────────────────────────────────────┤
│  Forecast: $4.0M (Closed + Commit)                          │
│  Upside: $5.6M (with Best Case)                             │
│  Gap to Quota: $6.0M                                        │
│  Required Win Rate on Pipeline: 35%                         │
└─────────────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────────┐
│                  Q4 Forecast - Week 8                        │
├─────────────────────────────────────────────────────────────┤
│  Quota: $10M                                                 │
│                                                              │
│  Category       Deals    Amount     Weighted                 │
│  Closed         12       $2.4M      $2.4M                   │
│  Commit         8        $1.8M      $1.6M                   │
│  Best Case      15       $3.2M      $1.6M                   │
│  Pipeline       22       $4.5M      $0.9M                   │
│  ─────────────────────────────────────────────              │
│  Weighted Total          $11.9M     $6.5M                   │
├─────────────────────────────────────────────────────────────┤
│  Forecast: $4.0M (Closed + Commit)                          │
│  Upside: $5.6M (with Best Case)                             │
│  Gap to Quota: $6.0M                                        │
│  Required Win Rate on Pipeline: 35%                         │
└─────────────────────────────────────────────────────────────┘

Process Optimization

流程优化

Sales Process Audit

销售流程审计

STAGE ANALYSIS
├── Average time in stage
├── Conversion rate
├── Drop-off reasons
└── Bottleneck identification

ACTIVITY ANALYSIS
├── Activities per stage
├── Activity to outcome ratio
├── Time allocation
└── Best rep practices

TOOL UTILIZATION
├── CRM adoption
├── Feature usage
├── Data quality
└── Automation opportunities
STAGE ANALYSIS
├── Average time in stage
├── Conversion rate
├── Drop-off reasons
└── Bottleneck identification

ACTIVITY ANALYSIS
├── Activities per stage
├── Activity to outcome ratio
├── Time allocation
└── Best rep practices

TOOL UTILIZATION
├── CRM adoption
├── Feature usage
├── Data quality
└── Automation opportunities

CRM Hygiene

CRM 数据维护

Data Quality Checks:
  • Required fields populated
  • Stage dates updated
  • Close dates realistic
  • Deal amounts accurate
  • Contact roles assigned
  • Next steps documented
数据质量检查项:
  • 必填字段已填写
  • 阶段日期已更新
  • 成交日期符合实际
  • 交易金额准确
  • 联系人角色已分配
  • 下一步计划已记录

Reference Materials

参考资料

  • references/analytics.md
    - Sales analytics guide
  • references/territory.md
    - Territory planning
  • references/compensation.md
    - Comp design principles
  • references/forecasting.md
    - Forecasting methodology
  • references/analytics.md
    - 销售分析指南
  • references/territory.md
    - 区域规划指南
  • references/compensation.md
    - 薪酬设计原则
  • references/forecasting.md
    - 预测分析方法

Scripts

脚本工具

bash
undefined
bash
undefined

Pipeline analyzer

Pipeline analyzer

python scripts/pipeline_analyzer.py --data opportunities.csv
python scripts/pipeline_analyzer.py --data opportunities.csv

Territory optimizer

Territory optimizer

python scripts/territory_optimizer.py --accounts accounts.csv --reps 10
python scripts/territory_optimizer.py --accounts accounts.csv --reps 10

Quota calculator

Quota calculator

python scripts/quota_calculator.py --target 50000000 --reps team.csv
python scripts/quota_calculator.py --target 50000000 --reps team.csv

Forecast reporter

Forecast reporter

python scripts/forecast_report.py --quarter Q4 --output report.html
undefined
python scripts/forecast_report.py --quarter Q4 --output report.html
undefined