FAQ

How should aerospace suppliers structure data flows between ERP, MES, and execution platforms?

In aerospace supply chains, ERP, MES, and execution platforms should be structured as a coordinated stack, not a single monolithic system. The key is to assign clear data ownership, minimize duplication, and design integrations that can survive long equipment lifecycles, validation constraints, and mixed-vendor environments.

1. Clarify roles before designing data flows

In most aerospace suppliers, a practical split looks like:

  • ERP: Commercial and financial backbone.
    • Owns: customer POs, sales orders, purchase orders, item master and pricing, high-level BOM, demand plan, MRP, inventory values.
    • Primary flows: release of demand to operations, material movements for finance, shipment confirmation, cost capture.
  • MES (if present): Manufacturing orchestration.
    • Owns: routings, work centers, high-level process sequences, WIP states, basic traceability, some quality events.
    • Primary flows: work order dispatch, operation status, basic as-built / genealogy, scrap reporting.
  • Execution platform (e.g., digital travelers, work instructions, NCR execution): Shopfloor detail and evidence.
    • Owns: operator task execution records, step-level data, actual parameters and readings, inspection evidence, photos, signatures, detailed traceability links.
    • Primary flows: step-by-step execution, data collection, nonconformance capture, operator guidance.

Not every plant has a full MES. In many tier-2/tier-3 suppliers, the execution platform fills part of the MES role. The data-flow design must reflect the actual system landscape, not a textbook diagram.

2. Define system-of-record boundaries

To avoid conflicting data and audit issues, explicitly define which system is the system of record for each data category:

  • Order and customer commitments: ERP is system of record. MES and execution platforms consume order data but should not change customer POs or delivery terms.
  • Part master and revision: ERP or PLM typically own this. Execution platforms and MES should reference these values and enforce revision correctness, not redefine them.
  • Process definition: MES or PLM for routing and operations; execution platform for step-level instructions and checks linked to those operations.
  • Actual execution & traceability: Execution platform is usually the detailed system of record; MES may store summarized as-built data; ERP receives only key status and quantities.
  • Quality records (NCR, MRB, CAPA): QMS is system of record. Execution and MES feed data and links (lot, serial, work order, operator, inspection results) into QMS.

Regulated customers will often expect you to show which system holds the authoritative record for a given piece of evidence. Designing data flows without this clarity leads directly to traceability gaps and painful audits.

3. Core data flows: from planning to shipment

A robust but pragmatic pattern for aerospace suppliers looks like this:

3.1 From ERP to MES and execution

  • Demand and work orders (ERP → MES/execution):
    • Transmit: part number, revision, quantity, due date, customer/program, priority, routing reference, required certs/FAI flag, lot/serial strategy.
    • Design choice: either ERP issues work orders and MES/execution consumes them, or MES generates shop orders from ERP demand. Pick one and document it.
  • Item master and BOM (ERP/PLM → MES/execution):
    • Transmit: part structure, key characteristics, special characteristics flags, controlled materials, alternates where allowed.
    • Keep one system as the master; avoid maintaining independent BOMs in multiple places unless validated and tightly controlled.
  • Customer and program constraints (ERP/PLM → MES/execution):
    • Transmit: customer-specific inspection plans, source inspection flags, FAI requirements, export control attributes, special processes.
    • Execution platform uses these to conditionally branch workflows (e.g. AS9102 FAI steps, extra sign-offs).

3.2 Within operations: MES and execution platform

  • Routing and operation structure (MES/PLM → execution):
    • Transmit: operation list, work centers, standard times, required skills or certifications, major inspection points.
    • Execution platform assigns detailed instructions, checks, and data capture forms to each operation.
  • Execution status (execution → MES):
    • Transmit: operation start/complete, quantities good/scrap, key timestamps, blocking issues (e.g. NCR raised).
    • MES uses this for WIP visibility and to drive simple dashboards; detailed evidence stays in the execution platform.
  • Nonconformance triggers (execution → QMS/MES/ERP):
    • Transmit: NCR event, affected lots/serials, operation, defect codes, attachments reference.
    • Downstream systems need pointers back to the detailed record for traceability; avoid duplicating full NCR content in every system.

3.3 Back to ERP: completion, inventory, and shipment

  • Production completion (MES/execution → ERP):
    • Transmit: work order complete/partial complete, good/scrap quantity, backflush signals for material, basic timestamps.
    • Do not push every parameter reading into ERP; ERP needs summarized outcomes, not raw process data.
  • Inventory and genealogy hooks (MES/execution → ERP):
    • Transmit: finished lot/serial IDs, location, high-level genealogy link IDs to enable later lookup in execution/MES systems.
    • ERP should hold references, not the full as-built graph.
  • Shipment (ERP ↔ MES/execution):
    • ERP drives shipment and ASN; execution/MES provide which serialized units, inspection statuses, and release approvals are eligible to ship.
    • Some plants keep shipping in ERP only; others use MES or WMS. Structure the flow so that ship status is unambiguous.

4. Keep integrations narrow and version-aware

In aerospace, every interface change can trigger revalidation, disruption risk, and stakeholder concern. Data flows should therefore:

  • Expose only necessary fields: Start with the minimum set of fields required for the process. Add more only when justified by a concrete use case.
  • Include revision and configuration context: Always transmit part revision, routing revision, and, where relevant, effectivity dates and configuration baselines.
  • Preserve identifiers end-to-end: Consistent keys for work orders, lots, serials, and NCRs are critical for traceability. Avoid system-specific re-numbering without robust mapping.
  • Support forward-compatible schemas: Use explicit versioning of interfaces or payloads so you can evolve fields without breaking validated processes.

5. Brownfield and coexistence considerations

Most aerospace suppliers have a brownfield stack with legacy ERP, partial MES modules, and manual or spreadsheet-based work instructions. Full replacement is rarely feasible due to qualification burden, downtime risk, and integration complexity.

  • Layer execution on top of existing ERP/MES: Treat the execution platform as the detail layer. Integrate via stable touchpoints (orders in, completions/NCR flags out) instead of trying to replace ERP or deeply rewire MES.
  • Respect constrained downtime: Prefer integrations that can be rolled out per-cell or per-product line, not big-bang cutovers affecting all orders at once.
  • Plan for partial digital coverage: Data flows must handle cases where some work centers or processes are still paper-based for a time. Ensure the model doesn’t assume 100% digital coverage from day one.
  • Document and control mappings: Field mappings, business rules, and exception handling need to be under change control with clear ownership, or they become invisible failure points.

6. Traceability and audit expectations

Customers and auditors will focus less on which system you use and more on whether you can:

  • Trace from a shipped serial number back to material lots, processes, tools, and operators.
  • Show who changed which routing or work instruction, when, and under which approval.
  • Demonstrate that the ERP/MES data (e.g. part revision, special process flags) matches what the operator actually executed.
  • Produce consistent records when the same work order appears in multiple systems.

Data flows should therefore prioritize:

  • Stable IDs and strong linking (work order, part, lot, serial, NCR, FAI report).
  • Immutable execution logs with timestamps and user IDs in the execution platform.
  • Change-control alignment between ERP, MES, PLM, and execution when revising routings or work instructions.

7. Practical starting pattern

For many tier-2/tier-3 aerospace suppliers, a staged, low-risk pattern is:

  1. Phase 1: One-way ERP → execution
    • Pass order, part, revision, due date, and basic routing reference to the execution platform.
    • Keep completions and inventory movements in ERP; avoid immediate bi-directional complexity.
  2. Phase 2: Add structured completions back to ERP
    • Execution platform reports operation complete and quantities good/scrap back to ERP (or via MES where present).
    • Use this to clean up WIP visibility without moving detailed records into ERP.
  3. Phase 3: Integrate quality events and traceability hooks
    • Integrate NCR triggers, FAI status, and serial/lot identifiers between execution, QMS, and ERP.
    • Ensure that serialized units in ERP are reliably linked back to execution records.
  4. Phase 4: Refine MES role
    • If a MES is present, clarify its orchestration vs. evidence role. Let it coordinate WIP while the execution platform remains the primary source for detailed records.
    • Rationalize any overlapping functionality (e.g. duplicate data collection) instead of letting both systems diverge.

8. Dependencies and constraints to recognize

The right structure for your data flows depends on:

  • Existing ERP and MES capabilities: Some MES modules or customizations may constrain which system can practically own routing or WIP.
  • Validation and qualification requirements: Changing where certain records live (e.g. moving inspection evidence from paper to digital) can require revalidation and customer notification in some programs.
  • Integration maturity: Plants with minimal IT support may need simpler, file-based integrations initially, with clear operational fallbacks for outages.
  • Data quality and governance: Poor item master or routing data in ERP/PLM will propagate into MES and execution; sometimes the first step is cleaning and governing the upstream data.

There is no single “correct” architecture across aerospace suppliers. What matters is explicit data ownership, tightly scoped and version-aware interfaces, and a traceability model that holds up when you need to investigate a field issue or support an audit years after production.

Get Started

Built for Speed, Trusted by Experts

Whether you're managing 1 site or 100, Connect 981 adapts to your environment and scales with your needs—without the complexity of traditional systems.

Get Started

Built for Speed, Trusted by Experts

Whether you're managing 1 site or 100, C-981 adapts to your environment and scales with your needs—without the complexity of traditional systems.