Skip to main content

What is the difference between ERP system and MES system in intelligent manufacturing ?

ERP (Enterprise Resource Planning) is the English abbreviation for Enterprise Resource Planning. Generally, ERP includes distribution, manufacturing, and finance in enterprise applications. Therefore, the ERP system is a continuation of MRP (Manufacturing Resource Planning). More accurately, ERP is based on MRPII. At present, more are conceptual products, such as financial software plus importing, selling, and depositing to become ERP. In theory, ERP may involve modules: forecasting, order management, sales analysis, purchase management, warehouse management, inventory control, production planning (MPS), product data management (PDM), material requirement planning, capacity requirement planning (CRP) ), distribution demand planning (DRP), shop floor control (SFC), process operation management, quality management, salary management, human resources, etc. nearly 30 modules. ERP is essentially different from OA, and ERP tends to be business management.

MES (Manufacturing Execution System) is the production process execution system of the manufacturing enterprise, and it is a set of production information management systems for the execution layer of the manufacturing enterprise workshop. MES can provide companies with manufacturing data management, planning and scheduling management, production scheduling management, inventory management, quality management, human resource management, work center/equipment management, tooling management, procurement management, cost management, project kanban management, production Process control, bottom-level data integration analysis, upper-level data integration and decomposition, and other management modules, create a solid, reliable, comprehensive, and feasible manufacturing collaborative management platform for the enterprise.

Difference between ERP and MES 

 The MES system is mainly used to solve the problem of disconnection between the production plan and the production process in the overall optimization of smart factory planning. This problem has directly affected enterprises' production efficiency for a long time and has become a bottleneck restricting manufacturing enterprises from achieving intelligent manufacturing upgrades, integrating internal information of enterprises, and optimizing supply chains between enterprises.

difference between ERP system and MES system


Enterprise ERP system and MES system are an important combination for enterprises to achieve overall management planning. The former lies in the overall management and control of the entire enterprise and the group enterprise, and the latter focuses on the management of the workshop site. The two seem to be quite the same, but in reality, there are still differences in management. 


Specifically, there are the following aspects:

ERP is the management of the entire enterprise or enterprise group business, while the management of MES is aimed at the workshop or production branch. Even the most complete MES system, for the entire enterprise, only provides a relatively narrow perspective, lacking the breadth and depth of data required for management and decision-making.

ERP is the management of the entire operating resources (human, financial, and material) of an enterprise, emphasizing the unification of logistics and capital flow, which is the so-called "integration of business and finance." The management of MES is more concentrated on production site resources, namely equipment, processes, materials, etc.

ERP manages the internal value chain and supply chain of the entire enterprise, that is, sales, procurement, production, inventory, quality, finance, human resources, etc., emphasizing the integration of all these businesses, and emphasizing the planning (sales plan, production plan, purchase plan, etc.) Coordination and control; MES mainly manages the execution of production, including production quality, production operation scheduling, and production performance feedback.

ERP has a relatively wide period of time for planning and business management, taking annual, quarterly, monthly, ten-day or weekly, and daily as the unit; due to the need for production site management and control, the management of MES is more detailed and manages to days, shifts, and hours. Under the guidance of the long-term plan generated by the ERP system, MES conducts short-term production planning and scheduling, monitoring, resource allocation, and optimization of the production process based on the real-time production data collected by the underlying control system.


Summary: The above four points show that MES and the company's ERP system are different and highly related. As long as the two are highly integrated and each performs its own duties, it can bring the company's best work efficiency and economic benefits.


Comments

Popular posts from this blog

40 Redis interview questions for 2021 - 2022

  Redis interview questions 1.What is Redis?. 2. What is the data type of Redis? 3. What are the benefits of using Redis? 4. What are the advantages of Redis over Memcached? 5. What are the differences between Memcache and Redis? 6. Is Redis single-process and single-threaded? 7. What is the maximum storage capacity of a string type value? 8. What is the persistence mechanism of Redis? Their advantages and disadvantages? 9. Redis common performance problems and solutions: 10. What is the deletion strategy of redis expired keys? 11. Redis recycling strategy (elimination strategy)? 12. Why does edis need to put all data in memory? 13. Do you understand the synchronization mechanism of Redis? 14. What are the benefits of Pipeline? Why use pipeline? 15. Have you used Redis cluster? What is the principle of cluster? 16. Under what circumstances will the Redis cluster solution cause the entire cluster to be unavailable? 17. What are the Java clients supp...

Recursion-maze problem - Rat in the Maze - Game

  package com.bei.Demo01_recursion; public class MiGong {     public static void main(String[] args)  {         //First create a two-dimensional array to simulate the maze         int [][]map=new int[8][7];         //Use 1 for wall         for (int i = 0; i <7 ; i++) {             map[0][i]=1;             map[7][i]=1;         }         for (int i = 0; i <8 ; i++) {             map[i][0]=1;             map[i][6]=1;         }         //Set the bezel         map[3][1]=1;         map[3][2]=1;         //Output         for (int i = 0; i <8 ; i++) {             for (int j = 0; j ...

165 + Big Data and Artificial intelligence ( AI ) terms and terminology Glossary

  Latest and most comprehensive big data/artificial intelligence terms & terminology in English (highly recommended for collection) for years 2021 and 2022   A  1.  Apache Kafka:  named after the Czech writer Kafka, used to build real-time data pipelines and streaming media applications. The reason it is so popular is that it can store, manage, and process data streams in a fault-tolerant manner, and it is said to be very "fast". Given that the social network environment involves a lot of data stream processing, Kafka is currently very popular.