Skip to main content

Baselines

The Baselines module captures point-in-time snapshots of project schedules and provides variance analysis between the current plan and any saved baseline.

Overview​

Schedule baselines are the cornerstone of project performance measurement. By saving a snapshot of all WBS element dates, durations, and effort at a specific point in time, project managers can later compare the current schedule against the original plan. ProBeya supports up to 11 baselines per project (numbered 0–10), following the same convention as industry-standard scheduling tools like Microsoft Project.

Getting Started​

  1. Navigate to PPM > Schedules and select a project.
  2. Ensure the WBS is fully populated with planned dates and effort estimates.
  3. Click Save Baseline and choose a baseline number (0–10).
  4. Give the baseline a name (e.g., "Original Plan", "Re-baseline Q2") and optional notes.
  5. Use the Compare view to see variance between the current schedule and any saved baseline.

How It Works​

Saving a Baseline​

When a baseline is saved via saveBaseline, the system snapshots every WBS element in the project, capturing:

  • Start date (earlyStart or plannedStartDate, whichever is set)
  • End date (earlyFinish or plannedEndDate, whichever is set)
  • Duration in days (durationDays)
  • Effort in hours (plannedEffortHours)
  • Completion percentage at the time of capture

The baseline record itself stores:

FieldDescription
baselineNumberInteger 0-10, must be unique per project
nameHuman-readable label (e.g., "Original Plan")
notesOptional description of why the baseline was captured
setByIdThe user who created the baseline
setAtTimestamp of baseline creation

The snapshot data is stored in a separate ppm_baseline_data table, so it remains immutable even as the live schedule changes. Each data row links back to its baseline record and the original WBS element.

Baseline Limits and Uniqueness​

  • Each project supports a maximum of 11 baselines (numbers 0 through 10)
  • Baseline numbers must be unique per project; attempting to save a duplicate returns a CONFLICT error
  • To reuse a number, the existing baseline must be deleted first
  • The count check prevents exceeding the 11-baseline limit

Listing Baselines​

The listBaselines query returns all baselines for a project, ordered by baseline number ascending. Each result includes:

  • The baseline metadata (number, name, notes, who set it, when)
  • The creator's profile (name and email) via a relation join
  • An elementCount showing how many WBS elements were captured

Deleting Baselines​

The deleteBaseline mutation removes a baseline and cascades the deletion to all associated baseline data rows via foreign key constraints. This is a destructive operation; the baseline cannot be recovered after deletion.

Variance Analysis​

The compareBaseline query returns per-element variance data comparing the current schedule against a specific baseline number:

MetricCalculationInterpretation
Start varianceCurrent start date − baseline start date (days)Positive = delayed
End varianceCurrent end date − baseline end date (days)Positive = delayed
Duration varianceCurrent duration − baseline duration (days)Positive = longer
Effort varianceCurrent effort − baseline effort (hours)Positive = over-effort

The response includes the baseline metadata (name, number, set date) and an array of comparison objects, each containing:

{
wbsElementId: string;
wbsCode: string;
title: string;
current: { start, end, duration, effort };
baseline: { start, end, duration, effort };
variance: { startDays, endDays, durationDays, effortHours };
}

Elements that exist in the current schedule but not in the baseline (added after the snapshot) will have null baseline values. Elements in the baseline that were removed from the current schedule are not included in the comparison.

Dual-Bar Gantt Overlay​

The getBaselineGanttData query returns WBS elements formatted for dual-bar Gantt rendering. Each element includes:

  • Current bar: Start date, end date, completion percentage
  • Baseline bar: Start date, end date, and completion at time of snapshot (or null if no baseline data exists for this element)
  • Hierarchy info: Parent ID, WBS code, milestone flag, critical path flag

Elements are ordered by sortOrder to maintain the WBS structure in the Gantt view. The dual-bar rendering makes it easy to spot slippage at a glance, especially for critical path elements and milestones.

Configuration​

  • Baseline numbers — 0 through 10 (maximum 11 per project)
  • Baseline name — free-text label for identification
  • Notes — optional description of why the baseline was captured

Permissions​

ActionRequired Role
View baselines and varianceAny member with project access
Save a new baselineEditor or Admin
Delete a baselineAdmin
Compare baseline to currentAny member with project access
View Gantt overlayAny member with project access

API Reference​

ProcedureTypeDescription
ppmBaselines.saveBaselineMutationSnapshot all WBS elements into a new baseline
ppmBaselines.listBaselinesQueryList all baselines for a project with element counts
ppmBaselines.deleteBaselineMutationRemove a baseline and cascade-delete its data
ppmBaselines.compareBaselineQueryPer-element variance between current and baseline
ppmBaselines.getBaselineGanttDataQueryDual-bar Gantt data for visual comparison

Tips & Best Practices​

tip

Save Baseline 0 immediately after the schedule is approved by the steering committee. This becomes the "original" plan against which all future performance is measured. Reserve higher numbers for re-baselines after approved scope changes.

tip

Review the dual-bar Gantt overlay during weekly status meetings. Comparing current progress bars against baseline bars makes schedule slippage visible to stakeholders who may not read variance tables.

tip

Document the reason for each baseline in the notes field. When reviewing multiple baselines months later, the notes explain what triggered each re-baseline (e.g., "Re-baselined after Q2 scope change approval").

  • Schedules — The live schedule that baselines are compared against
  • WBS — Baseline data captures WBS element dates and effort
  • EVM — Earned Value metrics rely on baseline cost and schedule data
  • Gates — Re-baselining is typically triggered by gate review decisions