Hello @SB ,
Welcome to Microsoft Q&A portal. Thank you for asking your question here.
In Azure DevOps, work item visibility on team backlogs is strictly controlled by Area Paths. When you change a Feature's Area Path to the Central Team (Option 1), it moves ownership entirely, causing the Feature to disappear from Team A's default backlog.
To meet your requirements giving the Central Team a consolidated intake view while allowing requesting teams to track their requests, we recommend leveraging Azure DevOps' native Portfolio Backlog hierarchy and Delivery Plans, supplemented by an inherited process customization.
Recommended Solution: The Hierarchical Portfolio & Delivery Plan Model
1. Decouple Demand from Delivery via Hierarchy (Parent/Child)
Instead of transferring the same Feature back and forth between Area Paths, separate the request from the execution:
- Requesting Team (e.g., Team A) owns the Parent Item: Team A creates an Epic (or Feature) in
ProjectName\Team A. This ensures the request remains permanently visible on Team A's backlog and Kanban board. - Central Team owns the Delivery Child Items: The Central Team creates the delivery Feature (or User Stories/Tasks) under
ProjectName\Central Team, linking it as a Child to Team A's parent item.
As highlighted in the official documentation for Managing product and portfolio backlogs:
"You can view backlog items and see their parent items, even if the parent items are owned by another team. When you turn on Show parents, the backlog displays the parent-child hierarchy across area paths."
By enabling Show parents and adding the Node Name (Area Path) column on the Central Team’s backlog, the Central Team instantly sees all incoming work and exactly which team requested it.
2. Implement an "Originating Team" Custom Field
If your operational model strictly requires managing a single Feature work item without splitting into parent/child items:
- Customize your inherited process to add a custom picklist field called
Requesting Teamon the Feature work item type. - Assign the Feature's Area Path to the Central Team (
ProjectName\Central Team) so it appears on their backlog for centralized prioritization and delivery. - Because moving the Area Path removes the item from Team A's backlog, Team A can maintain visibility by creating a shared Query (
Work Item Type = FeatureANDRequesting Team = Team A) and pinning a Query Results widget directly onto Team A's project dashboard.
3. Coordinate Timelines with Delivery Plans
For multi-team alignment without spreadsheets, use Delivery Plans. You can include backlogs from all 15+ requesting teams alongside the Central Team on a single, interactive calendar schedule.
From the official documentation on Reviewing team delivery plans in Azure Boards:
"Delivery Plans provide a highly interactive calendar schedule of multiple team backlogs. With Delivery Plans, you can gain visibility into your organization's alignment to its goals by viewing multiple team backlogs and their work items on a timeline."
Using Plan Settings → Styles, you can color-code cards based on the Requesting Team custom field or Area Path, giving stakeholders an instant visual heat map of cross-team commitments.
Please let me know your thoughts in comments.