Make-to-Order Production (20)

Make-to-Order Production (20) 

面向订单生产(20)

Purpose

In make-to-order production, a product is produced specifically for an individual sales order. This planning strategy is used when planning of the (parent) product is not required or not possible. Neither Demand Management is involved in this process, nor is there an allocation mechanism. Orders are taken as they come. This strategy represents a production procedure in which each product is only produced once, although over time the same or similar production processes are repeated. Each product is specifically produced for an individual customer so that the finished product is rarely placed in stock.

在面向订单生产中,产品是专门为单个销售订单生产的。当产品的计划不需要或不能做的时候,使用这个策略。无论是这个进程涉及的需求管理,还是分配机制。订单被执行当它们来临。这个策略描绘了一个每件产品仅仅被生产一次的生产过程。尽管随着时间的推移,相同或类似的生产过程被重复进行。因为每件产品专门为个别客户生产,所以很少有成品库存。

 

Prerequisites 前提条件

 

You have the following two options. 你有下面的两个选项。

Be able to do the following:能够做到下面几点:

    • Procure all necessary components within the total replenishment lead time 采购总补货时间内所有必需的组件
    • Plan on component level 在部件层计划
    • Use consumption-based components or Kanban-based components使用基于消耗的的物料或者基于看板的物料
  • Receive the sales orders at a very early stage with regard to the replenishment lead time.相对于补货提前期较早的阶段收到销售订单。

You also must maintain the following master data settings for the finished product:你也必需为成品维护下面的数据配置

  • Strategy group 20 on the MRP screen 在MRP视图设置策略组为20
  • Item category group (such as NORM) on the Sales Organization screen 销售组织视图中的项目分类组(例如NORM)

No specific product structure is required. This means it does not matter if the material has a BOM (internal production) or not (and is procured externally). The material is, however, usually produced in-house as in the subsequent sample scenario.没有具体的产品结构是必需的。这意味着它并不重要,如果物料有一个BOM(内部生产)或没有(外部采购)。然而,在随后的示例场景中,物料通常在内部生产。

Process Flow 业务流程

 

For a detailed example of the entire process, see Sample Scenario: Strategy 20.整个过程的详细示例,见示例场景:20策略。

  1. The sales order quantities are planned for production using the sales order number. The quantities produced for the individual sales orders cannot be changed. Each quantity is maintained specifically for the individual sales order. A separate segment is created in the MRP list for make-to-order production. 销售订单的数量为生产被计划使用用销售订单号。为个别销售订单的生产数量不能更改。每个数量专门为单个销售订单保持。在MRP清单中,为了面向订单生产,一个单独的段被创建。
  2. Starting from the sales order, you can apply this type of planning to as many levels of the BOM as you want. Assemblies and components are produced or procured specifically for the pegged order and stock is managed separately for this sales order. 从销售订单开始,你能运用这个类型的计划到你想要的尽可能多的BOM层次,组件和部件专门为这个固定的订单生产或采购,而且库存也是为这个销售订单单独管理的。

The production and procurement costs are maintained for each sales order in either a settlement order or in a project at sales order item level. This ensures a detailed analysis of the planned and actual costs. 每个销售订单的生产和采购成本记录在一个结算订单里面或在一个项目中在销售订单项目层次。这确保了详细的计划和实际成本分析。

You can also use this production technique to create "assembly orders." The assembly order triggers the creation of a production order or of a planned order and provides you with a precise delivery schedule. The delivery schedule is based on availability and the production requirements of the relevant assemblies and components.你也可以使用这种生产技术创建“装配订单”,装配订单触发生产订单和计划订单的创建,并提供给你一个准确的交货计划,交货计划是基于相关组件和部件的可用性和生产需求上的。

Other Areas 其它区域

Stocking Level 库存层级

See Stockkeeping at Different BOM Levels for more information.更多的信息,见不同BOM层级的存货

Availability Check 可用性检查

There are no major factors to consider when maintaining the material master of the finished product. See Availability Check. 维护成品物料主数据的时候没有主要的因素需要考虑,见可用性检查。

时间: 2024-10-02 17:18:23

Make-to-Order Production (20)的相关文章

大型.NET ERP系统的20条数据库设计规范

数据库设计规范是个技术含量相对低的话题,只需要对标准和规范的坚持即可做到.当系统越来越庞大,严格控制数据库的设计人员,并且有一份规范书供执行参考.在程序框架中,也有一份强制性的约定,当不遵守规范时报错误. 以下20个条款是我从一个超过1000个数据库表的大型ERP系统中提炼出来的设计约定,供参考. 1 所有的表的第一个字段是记录编号Recnum,用于数据维护 [Recnum] [decimal] (8, 0) NOT NULL IDENTITY(1, 1) 在进行数据维护的时候,我们可以直接这样

解析大型.NET ERP系统 20条数据库设计规范

数据库设计规范是个技术含量相对低的话题,只需要对标准和规范的坚持即可做到.当系统越来越庞大,严格控制数据库的设计人员,并且有一份规范书供执行参考.在程序框架中,也有一份强制性的约定,当不遵守规范时报错误. 以下20个条款是我从一个超过1000个数据库表的大型ERP系统中提炼出来的设计约定,供参考. 1  所有的表的第一个字段是记录编号Recnum,用于数据维护 [Recnum] [decimal] (8, 0) NOT NULL IDENTITY(1, 1) 在进行数据维护的时候,我们可以直接这

大型.net ERP高质量代码设计模式及数据库设计规范

大型.NET ERP系统高质量代码设计模式 1 缓存 Cache 系统中大量的用到缓存设计模式,对系统登入之后不变的数据进行缓存,不从数据库中直接读取.耗费一些内存,相比从SQL Server中再次读取数据要划算得多.缓存的基本设计模式参考下面代码: private static ConcurrentDictionary<string, LookupDialogEntity> _cachedLookupDialogEntities = new ConcurrentDictionary<s

PHP的SQL注入

今天从网上学习了有关SQL注入的基本技能.SQL注入的重点就是构造SQL语句,只有灵活的运用SQL 语句才能构造出牛比的注入字符串.学完之后写了点笔记,已备随时使用.希望你在看下面内容时先了 解SQL的基本原理.笔记中的代码来自网络. ===基础部分=== 本表查询: http://127.0.0.1/injection/user.php?username=angel' and LENGTH(password)='6 http://127.0.0.1/injection/user.php?use

Asp.net实现向上向下排序的例子

  工作中一些常用到的代码记录下来,方便自己查找也方便其他需要人士参考. 废话不多说,这是一个向上向下排序的功能,首先使用存储过程 整好 如下: SQL: -- ============================================= -- Author: -- Create date: -- Description: -- ============================================= ALTER PROCEDURE [dbo].[sp_Banne

《Spring 5官方文档》电子邮件

29. 电子邮件 29.1 介绍 依赖库:使用Spring框架的邮件功能需要将JavaMail的Jar包添加到依赖中.这个库可以Maven中心找到:com.sun.mail:javax.mail. Spring提供了一个实用的发送电子邮件库,它为使用者屏蔽了邮件系统的底层细节和客户端的底层资源处理. Spring邮件相关功能在org.springframework.mail包下,其中MailSender是发送邮件的核心接口:SimpleMailMessage类是对邮件属性(发件人.收件人以等)进

序列化和反序列化的几种方式(DataContractSerializer)(二)

DataContractSerializer 类      使用提供的数据协定,将类型实例序列化和反序列化为 XML 流或文档. 无法继承此类. 命名空间: System.Runtime.Serialization程序集:  System.Runtime.Serialization(在 System.Runtime.Serialization.dll 中) 备注      使用 DataContractSerializer 类可以将类型实例序列化和反序列化为 XML 流或文档. 通过将 Data

WCF版的PetShop之二:模块中的层次划分[提供源代码下载]

上一篇文章主要讨论的是PetShop的模块划分,在这一篇文章中我们来讨论在一个模块中如何进行层次划分.模块划分应该是基于功能的,一个模块可以看成是服务于某项功能的所有资源的集合:层次划分侧重于关注点分离(SoC:Separation of Concern ),让某一层专注于某项单一的操作,以实现重用性.可维护性.可测试性等相应的目的.Source Code从这里下载. 一.基本的层次结构 我们接下来将目光聚焦到模块内部,看看每一个模块具体又有怎样的层次划分.我们将Infrastructures.

[Python]新手写爬虫全过程(转)

今天早上起来,第一件事情就是理一理今天该做的事情,瞬间get到任务,写一个只用python字符串内建函数的爬虫,定义为v1.0,开发中的版本号定义为v0.x.数据存放?这个是一个练手的玩具,就写在txt文本里吧.其实主要的不是学习爬虫,而是依照这个需求锻炼下自己的编程能力,最重要的是要有一个清晰的思路(我在以这个目标努力着).ok,主旨已经订好了,开始'撸串'了.   目标网站:http://bohaishibei.com/post/category/main/(一个很有趣的网站,一段话配一个图