Item categories in Business Central

How to structure a Business Central catalogue with item categories — hierarchy, defaults, attributes, and the integration with templates and reporting.

Updated 2026-10-21

A Business Central tenant with 10,000 items needs structure. Item categories are the hierarchical taxonomy that organises the catalogue — for reporting, for default propagation, for catalogue navigation, for analytics. Built well, they make a large catalogue navigable and the master data consistent; built badly, they're a tangled afterthought nobody trusts.

The hierarchy. Item categories form a parent-child tree of arbitrary depth (though 3–5 levels is typical). Example for a clothing distributor:

Apparel
├── Mens
│   ├── Mens Tops
│   │   ├── Mens Shirts
│   │   └── Mens T-Shirts
│   └── Mens Bottoms
├── Womens
│   ├── Womens Tops
│   └── Womens Bottoms
└── Childrens
    ├── Boys
    └── Girls

Each item is assigned to exactly one leaf category. Reports aggregate up the tree.

Defaults from categories. Categories carry default values that propagate to items in them:

  • Posting groupsInventory Posting Group, General Product Posting Group, VAT Product Posting Group.
  • Reordering policy — replenishment defaults.
  • Item tracking — default lot / serial / expiration policy.
  • Costing method — though typically per-item.
  • Default dimensions — Product Line, Brand.

When you create a new item and assign it to a category, the system can default these from the category, dramatically reducing per-item configuration effort. Categories nest defaults so a child category inherits the parent's defaults unless explicitly overridden.

Item attributes by category. Beyond defaults, categories propagate default item attributes — descriptive key-value properties for filtering and search. A Mens T-Shirts category might default attributes for Size, Colour, Material, Fit. Every item in the category inherits the attribute slots; values are filled in per item.

Integration with templates. Item categories and item templates work together. A template handles the operational defaults (posting groups, costing); a category handles taxonomic placement and attributes. The pattern: create an item from a template, then assign to a category. The new item has the right posting setup and the right attribute structure.

Reporting by category. Categories appear in:

  • Sales by Item Category reports — revenue, margin, units across the hierarchy.
  • Inventory by Item Category — stock value per category.
  • Power BI — category as a dimension axis for any analysis.

For most reporting needs, the category hierarchy is the customer-facing analytical lens.

Search and lookup. When users search for items in the BC UI, category navigation lets them narrow down the catalogue. Mens → Mens Tops → Mens Shirts surfaces only relevant items. Combined with attribute filters (Size = L, Colour = Blue), users find items fast.

E-commerce integration. When BC connects to Shopify or another storefront, item categories translate to product collections / categories on the storefront. The category structure on the BC side aligns with what customers see online.

Common pitfalls.

  • Marketing taxonomy in categories. Categories should reflect how items are sold, stocked, and managed — not the season's marketing storyline. Marketing dimensions go in attributes.
  • Too deep — 8-level hierarchies become navigation hell. Aim for 3–5 max.
  • Category sprawl — every minor variation as a new category dilutes reporting roll-ups. Consolidate ruthlessly.
  • Items without category — orphans skip the defaults and dimension lookups. Mandate categorisation in workflow.

Renaming and restructuring. Categories can be renamed; items can be re-assigned. But large-scale restructuring of an active catalogue is invasive — re-categorisation cascades through reports and dimensions. Get the structure right early; refine carefully.

Operational reality. Spend a day designing the category tree before mass-creating items. The structure outlasts every operational decision built on top of it.

Related guides