Task Dependencies
Define relationships between tasks in YAPL plans.
Task Dependencies
Dependencies define relationships between tasks, controlling when tasks can start or finish based on other tasks.
Understanding Dependencies
Dependencies provide:
- Sequence Control - Define task order
- Schedule Calculation - Automatic date updates
- Critical Path - Identify important sequences
- Realistic Planning - Model real constraints
Dependency Types
Finish-to-Start (FS)
The most common type. Successor starts after predecessor finishes.
Task A ────────┐
└─→ Task BExample: "Excavation must finish before Foundation can start"
Start-to-Start (SS)
Successor can start when predecessor starts.
Task A ────────
└─→ Task B ────────Example: "Inspection can start when Construction starts"
Finish-to-Finish (FF)
Successor finishes when predecessor finishes.
Task A ────────
Task B ──────┘Example: "Documentation finishes when Development finishes"
Start-to-Finish (SF)
Successor finishes when predecessor starts. (Rare)
Task A ────────
Task B ──────┘Example: "Old system shutdown finishes when new system starts"
Dependency Summary
| Type | Abbreviation | Relationship |
|---|---|---|
| Finish-to-Start | FS | Successor starts after predecessor finishes |
| Start-to-Start | SS | Both can start together |
| Finish-to-Finish | FF | Both must finish together |
| Start-to-Finish | SF | Successor finishes when predecessor starts |
Creating Dependencies
From Task Details
- Open task detail view
- Find dependencies section
- Click Add Dependency
- Select predecessor task
- Choose dependency type
- Set lag (optional)
- Save
From Gantt View
- Open timeline view
- Hover over task bar
- Drag from connection point
- Drop on successor task
- Dependency created (FS default)
From Task List
- Select task
- Open dependencies panel
- Add predecessor(s)
- Configure type and lag
Editing Dependencies
Change Dependency Type
- Find dependency in task details
- Click type dropdown
- Select new type
- Save changes
Change Lag Time
- Find dependency
- Edit lag value
- Positive = delay after
- Negative = overlap allowed
Remove Dependency
- Find dependency
- Click delete/remove
- Confirm removal
Lag and Lead Time
Positive Lag (Delay)
Wait time between linked tasks.
Task A ────────┐
╌╌╌ (2 day lag)
└─→ Task BExample: "Concrete pour + 7 day lag (cure time) + Framing"
Negative Lag (Lead/Overlap)
Start successor before predecessor finishes.
Task A ────────┐
└─→ Task B ────
(2 day lead)Example: "Rough plumbing can start 2 days before framing completes"
Viewing Dependencies
In Gantt Chart
- Lines connect related tasks
- Arrow shows direction
- Line style may indicate type
- Critical dependencies highlighted
In Task Details
- List of predecessors
- List of successors
- Type and lag for each
In Task List
- Dependency column (if shown)
- Predecessor/successor counts
Dependency Chains
Simple Chain
A → B → C → DSequential tasks in order.
Parallel Chains
A → B → C
A → D → E
B → EMultiple paths through project.
Critical Path
Longest chain determines project duration. See Critical Path.
Dependency Validation
Circular Dependencies
Not allowed - tasks cannot depend on themselves (directly or indirectly).
A → B → C → A (INVALID)YAPL prevents circular dependencies.
Constraint Conflicts
Dependencies may conflict with constraints:
- "Must Start On" date conflicts with predecessor
- System warns or prevents invalid configurations
Impact of Dependencies
Date Calculation
When dependencies exist:
- Successor dates calculate from predecessor
- Changes to predecessor affect successor
- Chain reaction through network
Schedule Changes
| When Predecessor Changes | Successor Effect |
|---|---|
| Finishes later | Starts later |
| Finishes earlier | Can start earlier |
| Duration increases | May delay successor |
Best Practices
Only Necessary Dependencies
- Don't over-constrain schedule
- Only add real dependencies
- Avoid "just in case" links
Prefer FS Dependencies
- Most intuitive
- Easiest to maintain
- Use other types only when needed
Document Why
- Note reason for unusual dependencies
- Explain business logic
- Help future editors understand
Review Regularly
- Check dependencies still valid
- Remove outdated links
- Update lag times as needed
Bulk Dependency Management
Adding Multiple
- Select multiple tasks (if supported)
- Add common predecessors
- Apply to all selected
Dependency Matrix
Some views show dependency matrix:
- All tasks in rows and columns
- Marks show relationships
- Quick overview of network
Troubleshooting
Cannot Add Dependency
"Circular dependency detected"
- Task already depends on successor
- Review dependency chain
- Remove conflicting link
"Invalid dependency"
- Check task exists
- Verify same plan
Dates Not Updating
- Check scheduling mode
- Verify dependency saved
- Review constraint conflicts
Dependencies Not Showing
- Check view settings
- Verify Gantt lines enabled
- Refresh the view
Unexpected Schedule Impact
- Trace dependency chain
- Check lag values
- Review critical path
Related Topics
- Task Properties - Task configuration
- Critical Path - Schedule analysis
- Gantt Charts - Timeline visualization
Was this page helpful?