IanaiERP
Log InGet Started

The AI Driven ERP Solution

IanaiERP

IanaiERP is not just another ERP system. It is an AI-driven operational platform designed for modern manufacturing, wholesale, and eCommerce businesses.

Platform

  • Platform Overview
  • Inventory
  • Manufacturing
  • Sales & Fulfillment
  • Procurement
  • Finance
  • CRM
  • Integrations
  • Reporting

Industries

  • Manufacturing
  • Wholesale & Distribution
  • Food & Beverage
  • Cosmetics & Skincare
  • Biopharmaceutical
  • Fashion & Apparel

Resources

  • About Us
  • Case Studies
  • Blog
  • FAQ
  • User Guide
  • Contact

Contact

  • Address

    1440 N Lakeview Ave
    Anaheim, CA 92807

    Get Directions
  • Emailinfo@ianaierp.com

© 2026 IanaiERP. IanaiERP. All rights reserved.

Privacy PolicyTerms of ServiceLicense
Work Centers for CAPA

Guides

⌘K

getting-started

  • Intro - ianai Total ERP SolutionPopular
  • Settings / Preferences
  • Dashboard (List View) & Reports
  • Data Import/Export

inventory

  • ItemPopular
  • Inventory Adjustment
  • Inventory Transfer
  • Lot Tracking
  • Bin Tracking
  • Item Options and Dynamic Templates
  • Serial Tracking

manufacturing

  • Bill of Materials (BOM)
  • Build
  • Routing
  • Work Orders
  • Work Plan
  • BOM Rule
  • Advanced Manufacturing

purchase

  • Procurement Workflow
  • Vendor
  • Purchase Order
  • Item Receipt
  • Blanket Purchase Order

sales

  • Sales Workflow
  • Customer
  • Estimate
  • Sales Order / Payment
  • Price Rule
  • Blanket Sales Order
  • Work Centers

shipping

  • Shipment
  • Shipping, Label Printing, and Tracking
  • Carrier Integrations
  • Ship Method Mapping
  • Rule-Based Automation
  • International Shipping
  • Third-Party Billing
  • ianaiERP Bridge
  • Troubleshooting Shipping Issues
  • USPS Cubic Rates in ianaiERP
  • USPS Pricing

return

  • Returns

miscellaneous-setup

  • Miscellaneous

customization

  • Custom Field
  • Custom Script
  • Vendor-Item Catalog
  • Units of Measure (UOM)

integration

  • Quickbooks Online Integration
  • Bigcommerce Integration
  • Shopify Integration

accounting

  • Journal
  • Transfer Funds
  • Bank Deposit
  • Expense
  • Chart of Accounts

equipment

  • Introduction
  • Equipment Hub
  • Work Centers for CAPA
  • Asset Management
  • Preventive Maintenance
  • Maintenance Events
  • Spare Parts & Consumables
  • Capacity Planner
  • Runtime Status
  • Permissions & Modules
DocsWork Centers for CAPA

Work Centers for CAPA

A Work Center is the physical place (or logical grouping) where work happens — a press line, a folder station, a cutting bench. ianaiERP's original Work Center already powered routings and work orders. The EMS + CAPA suite extends it with the parameters needed to compute realistic capacity, model planned and unplanned downtime, and decide which work centers belong in the nightly capacity snapshot.

This page covers the new CAPA-specific fields added to Work Centers. For the original Work Center fields (name, cost rates, location, line items, calendars), see the advanced Work Center docs.

Where it lives

  • List + create: /workcenter
  • Edit: click any row to open the drawer.
  • Permission: needs support_read to view and support_write to edit (same as the original Work Center page).

The CAPA fields

When you open the Work Center form (+ New Work Center), you'll see a Capacity Parameters section. These five fields are the inputs the nightly CAPA cron uses to project utilization, ETAs, and overload.

Machine Speed (machine_speed_per_hour)

The work center's nameplate throughput per hour, in the WC's natural production unit (sheets/hr, kg/hr, units/hr — your call). Used as a sanity check against routing operations and as a fallback when a routing operation doesn't define a runtime_per_unit.

  • Leave blank if the WC's output varies wildly by product (rare).
  • Use the nameplate — efficiency is modeled separately via OEE.

Rated Hours / Day (rated_hours_per_day)

The number of hours per day this WC is physically able to run, independent of staffing. A 24-hour press has 24. A bench used during one shift has 8. Combined with Shift Pattern below to compute calendar minutes.

Shift Pattern (shift_pattern)

A canonical operating cadence:

ValueMeansEffective hours/day
1-SHIFT-5D1 shift, 5 days/week8
1-SHIFT-7D1 shift, 7 days/week8
2-SHIFT-5D2 shifts, 5 days/week16
2-SHIFT-7D2 shifts, 7 days/week16
3-SHIFT-5D3 shifts, 5 days/week24
3-SHIFT-7D3 shifts, 7 days/week (continuous)24

The picker shows a warning if your Rated Hours / Day significantly exceeds the shift pattern's expected hours — it's not blocking (you may have overtime or unusual cadences), but it flags likely data-entry mistakes.

OEE Target (oee_target_percent)

Your planning OEE factor — the percentage of calendar time you realistically expect to convert into output, after losses for changeovers, micro-stops, quality, and minor breakdowns. This is not measured OEE — v1 doesn't compute that. It's the planning factor the capacity calculation multiplies against.

  • Typical range: 60–85 for manual operations, 85–95 for automated equipment.
  • Use 100 only if you genuinely have no historical losses (rare; the calc will be optimistic).

Availability (availability_percent)

Expected availability after planned downtime (maintenance windows, scheduled outages). Multiplied against calendar minutes before OEE.

  • Typical: 90–95.
  • This is conceptually different from OEE (which captures all losses); set it conservatively for WCs with frequent PM windows.

Default Setup (default_setup_minutes)

Default changeover used by the capacity calc when a routing operation doesn't specify its own setup time. Also used as a changeover penalty when the calc switches from one item to another in the same WC.

Critical for CAPA dashboard (critical_for_capa)

Toggle that decides whether this WC is included in:

  • The nightly CapaSnapshot cron (every 24 hours at 02:00).
  • The 5-minute rollup that recomputes the WC's current_runtime_status from its child assets.
  • The Equipment Hub's CAPA-related KPIs (Utilization, OEE, WCs at Risk).

A WC with critical_for_capa = false still appears in the Capacity Planner (you can recompute it on demand), but it doesn't drive automatic alerts or dashboard KPIs.

Read-only computed fields

These show on the form once the WC has data:

FieldSource
Runtime StatusWorst-status rollup of the WC's critical child assets (5-min cron). Shows RUNNING / SETUP / IDLE / DOWN / MAINTENANCE / READY.
Current Utilization %Latest current_utilization_pct from the most recent CapaSnapshot.

How CAPA uses these fields

calendar_min = ratedHoursPerDay × daysInPeriod × 60   (capped by shift_pattern)
calendar_min × (availability_percent / 100)            → available_minutes
available_minutes − planned_PM_overlap_minutes         → still available
available_minutes × (oee_target_percent / 100)         → effective_minutes
sum(routing_ops × runtime_per_unit × qty + setup)      → demand_minutes
demand_minutes / effective_minutes × 100               → utilization_pct
demand_minutes − effective_minutes  (if > 0)           → overload_minutes

Risk level is bucketed:

  • NONE if util < 85
  • LOW if util 85–99
  • MEDIUM if util 100–119
  • HIGH if util ≥ 120

See Capacity Planner → How utilization is computed for the full algorithm including material-bottleneck adjustments.

Setup recipe (typical paper-packaging plant)

WCSpeedRated hrsShiftOEEAvailSetupCritical
Press Line A (Heidelberg)1200 sheets/hr243-SHIFT-7D85%95%30 min✅
Folder Station 1800 pcs/hr162-SHIFT-5D80%92%15 min✅
Cutting Bench400 pcs/hr81-SHIFT-5D75%90%10 min❌

The Press Line A is the bottleneck — high speed, continuous operation, conservative-but-realistic OEE, critical-for-CAPA flagged. The bench is non-critical because it doesn't gate production.

Assigning assets to a Work Center

A Work Center is a logical grouping; its Assets are the physical machines that live inside it. From the Asset form, set work_center to the parent WC. The WC's status board on the Equipment Hub then shows all linked assets together. See Asset Management → Link to a Work Center.

Troubleshooting

SymptomLikely cause
WC doesn't show on Capacity PlannerListed but past the 200-row limit — search by name to filter. Or you have capa_read missing.
WC utilization is always 0%No open RoutingOperation rows route to this WC.
Utilization spikes after a small WC changeIf you lowered availability_percent or oee_target_percent, the same demand now consumes a larger share of effective minutes. Recompute to refresh the snapshot.
Status chip shows blankNo assets are linked to this WC. Set work_center on at least one asset, mark it critical_asset, then wait for the 5-minute rollup.
"Rated hours significantly exceeds shift pattern" warningEither your shift pattern is wrong, or you have overtime baked in. Adjust one or the other. The warning is non-blocking.

Related

  • Asset Management — link assets to work centers
  • Capacity Planner — view computed snapshots
  • Runtime Status — how the WC's current_runtime_status rolls up from assets
  • Original Work Center reference: Work Centers (advanced features)
PreviousEquipment HubNext Asset Management

Still have questions?

Our support team is just a click away.

Create a support ticketGet in touch