Skip to content

Try the Demo Factory in Tier0

Available inCloud

A demo factory that already works on Tier0 shows you how the factory data is modeled, managed and used in a smart and smooth way.

The factory in Tier0 receives orders from ERP, splits them, schedules production, sends the schedule to production, and receives production progress data as work proceeds.

%%{init: {"themeVariables": {"fontSize": "18px"}, "themeCSS": ".nodeLabel, .edgeLabel, .cluster-label { font-size: 18px !important; } .nodeLabel b, .nodeLabel strong { font-size: 19px !important; }"}}%%
flowchart TB
  uns["<span style='font-size:18px;font-weight:700'>UNS order data</span><br/><span style='font-size:16px'>Orders from ERP</span>"]
  production["<span style='font-size:18px'>Production Department</span>"]

  subgraph app["Work Order Management app"]
    direction TB
    appSpacer[" "]
    subgraph appPages[" "]
      direction LR
      orders["<span style='font-size:18px;font-weight:700'>Production Orders</span><br/><span style='font-size:16px'>(Optional) Create orders</span>"]
      plans["<span style='font-size:18px;font-weight:700'>Plans</span><br/><span style='font-size:16px'>Split order<br/>Production schedule</span>"]
      details["<span style='font-size:18px;font-weight:700'>Plan Details</span><br/><span style='font-size:16px;white-space:nowrap'>Production progress details</span>"]
    end
  end

  uns -- "order data" --> orders
  orders --> plans
  plans --> details
  plans --> planLabel["production plan"]
  planLabel --> production
  production --> progressLabel["production progress"]
  progressLabel --> details

  classDef external fill:#f8fafc,stroke:#b8c4d5,color:#171a22,stroke-width:1px,font-size:18px
  classDef optional fill:#fbfdf4,stroke:#cfe8a3,color:#171a22,stroke-width:1px,font-size:18px
  classDef appNode fill:#f4f8e9,stroke:#9adf11,color:#171a22,stroke-width:1px,font-size:18px
  classDef labelNode fill:transparent,stroke:transparent,color:#4b5563,font-size:17px
  classDef invisible fill:transparent,stroke:transparent,color:transparent
  class uns,production external
  class orders optional
  class plans,details appNode
  class planLabel,progressLabel labelNode
  class appSpacer invisible
  style appPages fill:transparent,stroke:transparent
  1. Go to UNS and check the details of orders that came from ERP.

    • DemoFactory/ERP/ProductionOrders/State/UpsertProductionOrder: Orders.
    • DemoFactory/ERP/ProductionOrders/State/OrderList: Current order list snapshot.
  2. (optional) Go to Launchpad, access the Work Order Management application, and create orders on the Production Orders page.

  3. In Work Order Management, split orders and schedule production plans for the split work orders on the Plans page.

  4. Send the plan to production, and check the plan details on the following topics on UNS.

    • DemoFactory/ERP/WorkOrderPlan/Metric/SplitCount: The number of work orders after splitting.
    • DemoFactory/ERP/WorkOrderPlan/State/PlanStatus: Current plan status.
    • DemoFactory/ERP/WorkOrderPlan/State/WorkOrderList: The work order list after the production plan is scheduled.
  5. Check the production progress data on the Plan Details page in the application.