在实际的生产过程中,领料的方式可以分成计划内领料和计划外领料。 计划内领料,是指按照生产订单中组件清单所产生的预留进行发料。 计划外发料,当生产过程中发生如原材料报废等临时状况,导致无法按照订单中的组件预留进行发料,额外做的发料动作。 下面简单演示下两者在系统中的操作,我们演示使用 app “过账货物移动” (MIGO)进行操作: 计划内发料: 选择“发料” “订单” ,输入“生产订单号” 因为是计划内发料,所以系统会根据预留中的记录自动带出 物料号,数量,工厂,库存地点和订单号等信息。   计划外发料: 选择 “发货” “其他” , 移动类型选择“261” 因为是计划外发料,系统没有组件 预留中的相关信息,所以需要手工输入物料号,数量,工厂,库存地点和 生产订单号。 查看相关物料凭证: 在 app “显示生产订单” 中的,菜单 -> 转到 -> 记入账单的货物移动,可以查看上面的两个发料动作的物料凭证。其中,有一个 货物移动标识,“1” 代表 计划内发料,“2” 代表 计划外发料。   总结: 计划外发料和计划内发料,都会消耗掉相应的库存,所以从货物移动角度,两者没有实质上的区别,只是应对不同业务场景的两种发料方式。  

客户发现在业务中存在不规范的情况,有些用户对于工单并没做发料或者工序确认,就做产成品101入库。但是在实际业务中这种情况是不存在的,因为没有发料和报工,产成品不可能生产出来。因此客户想在系统中做些限制,如果没有报工或者发料,不允许做产成品的入库。 解决方案: 尝试通过自定义逻辑,写一个 BAdI 来满足需求。 分析步骤: 1. 首先,我们需要在 SAP S/4HANA Cloud 系统的应用 – 自定义逻辑里,新建增强实施。根据业务场景,选择下图中的业务上下文以及业务加载项描述,填写好实施描述以及实施标识。 新增增强措施 2. 在自定义逻辑里根据本问题涉及业务上下文以及业务加载项描述完成新建增强实施后,我们需要找到字段获取工单的状态。根据客户的需求,我们可以去前台应用 – 监控生产/计划订单里查找到未发料、未确认涉及以下几种状态: GMPS – Goods Movement Posted PCNF – Part Confirmed CNF – Confirmed 在应用“监控生产/计划订单”里查看订单状态 3. 我们尝试在 CDS View 里进行查找和检索字段来表示工单的状态。I_MfgOrderWithStatus 里存在多个字段可以表示工单的状态,其中 OrderIsPartiallyConfirmed 和 OrderIsConfirmed 可以分别表示 PCNF 和 CNF 两种涉及确认的状态。那么,我们可以写出关于确认状态的判断语句。 SELECT SINGLE FROM i_mfgorderwithstatus FIELDS OrderIsConfirmed WHERE ManufacturingOrder = @im_gr4xy_item->inbounddelivery INTO @ls_orderisconfirmed. SELECT SINGLE FROM i_mfgorderwithstatus FIELDS OrderIsPartiallyConfirmed WHERE ManufacturingOrder = @im_gr4xy_item->inbounddelivery INTO @ls_orderispartiallyconfirmed. ... if ls_orderisconfirmed <>....

This blog post describes the Two-Tier scenario of MRP Visibility between headquarters and subsidiary which run on two different instances of SAP. Headquarters are expected to gain better visibility on the MRP results generated at Subsidiary end and vice versa. With this analytics scenario the much-required capability with Two-Tier integration to check the status of....

SAP has provided an interesting option called ‘Adapt UI’ in SAP S/4HANA Cloud which is based on SAP Screen Personas. It enables classic applications to behave more like SAP Fiori apps. It simplifies the complex classic applications by redesigning the screen elements like hiding an icon/field, changing table properties, formatting the labels/fields, grouping the required....

Overview: SAP S/4HANA Cloud supports Quality Engineer to record and process the internal or external problems via Quality Notifications. In cloud, there are broadly three standard QM notifications exists to process the defects or problems like customer complaints, complaints against suppliers and company-internal problems. The framework is much comprehensive and need to initiate various actions....

For manufacturing orders producing quantity of one there is an easy way to report product and component serial numbers using analytics extensibility in SAP S/4HANA Cloud. Prerequisite is that you have posted goods receipt from production and component consumption with serial numbers. Do you want to know more? Then this is the right blog post....

Welcome to the Q2 2021 product update of the intelligent Cloud ERP series, where we share insightful information on how technologies such as robotic process automation or machine learning transform an ERP to an intelligent ERP. This series enables you to fully understand how the end-to-end integration between different SAP solutions makes you run with a....

Discrete Industries are described as the production of a discrete category of goods or items. This means goods or items can be individually or separately produced. Figure 1: Discrete Industries in SAP S/4HANA Cloud 2105 Currently, SAP S/4HANA Cloud focuses on solutions for the following two discrete industries: Industrial Machinery and Components and Automotive. For the later, specific focus is....