热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

WIP完工入库及完工退回的几个重要问题

1.必须向CST_COMP_SNAP_INTERFACE表中插入此工单全部工序的数据(也就是说相同的工单插入多条,仅仅是工序号不一样)标准文档:Note:Iftherearemultiple

1.必须向CST_COMP_SNAP_INTERFACE表中插入此工单全部工序的数据(也就是说相同的工单插入多条,仅仅是工序号不一样)

标准文档:

Note: If there are multiple operation sequences then,

Insert multiple records in CST_COMP_SNAP_INTERFACE, one record for each
OPERATION_SEQ_NUM in WIP_OPERATIONS for the appropriate WIP_ENTITY_ID (with the
same transaction_interface_id).


否则会出现故障:

(1)工单通过mtl_transactions_interface接口表,完工入库了。可是没有扣减最后一站移动站(to move站)数量
“接口表提交后,没有错误信息,数据成功提交了。;  查询物料交易事务处理表,此工单已有完工入库记录(库存也有添加)。但就是没有扣减最后一站移动站(to move站)数量(同一时候工单已完工量也没有对应添加)。

   CST_COMP_SNAP_INTERFACE 表中的数据一点都不动(成本管理器正常)”

(2)报错:

CSTPACMS:validate_snap_interface 30 : OPERATION_SEQ_NUM in CST_COMP_SNAP_INTERFACE is missing or incorrect.应为 不须要投料的工序也是要计算成本的,所以工单全部工序都必须插值。工序来自wip_operations


2.完工入库之前先移动工单至最后一道工序的move状态


3.完工退回之前先移动工单至第一道工序的排队状态


报错信息:

Serial number &TOKEN does not exist for the given item; and you cannot dynamically create a new one for this item.


解决:


metalink上的一些解决的方法

Wip Assembly Completion For A Job Through MTL_TRANSACTIONS_INTERFACE Is Not Updating Job Completed Quantity [ID 745112.1]
          改动时间 11-SEP-2010     类型 PROBLEM     状态 MODERATED         

In this Document
  Symptoms
  Cause
  Solution
  References

Platforms: 1-914CU;

This document is being delivered to you via Oracle Support's Rapid Visibility (RaV) process and therefore has not been subject to an independent technical review.

Applies to:
Oracle Work in Process - Version: 11.5.9 to 12.0.4 - Release: 11.5 to 12
Information in this document applies to any platform.
Checked for relevance 11-SEP-2010
Symptoms
On 12.0.4 in Production:
Find that when WIP Assembly Completion transaction is performed for a Discrete job through
mtl_transaction_interface, the transaction is getting processed successfully but the completed
quantity is not getting updated in the Discrete job also quantity still remaining in To Move of
last operation.

EXPECTED BEHAVIOR
Expect that the quantity should get updated in the discrete jobs.

STEPS
The issue can be reproduced at will with the following steps:
1. Create a discrete job, release it
2. Perform Move transaction to the last operation to move step.
3. Perform WIP Assembly Completion through the MTI, it gets processed successfully
4. Verify the job header infoformation, still the quantity is not completed.

BUSINESS IMPACT
The issue has the following business impact:
Due to this issue, there is lot of discrepancy in the job.


.
Cause

The cause of the issue is invalid / incorrect data in cst_comp_snap_interface table.


The cause for this invalid data has been determined as the data in cst_comp_snap_interface corresponding
to completion record in MTI (linked with transaction_interface_id) was not populated with the correct op_seq_num.

This has explained in the following bug.
Bug 5746008  'CSTPACMS:VALIDATE_SNAP_INTERFACE 30' ERROR IN TRANSACTION OPEN INTERFACE

Customer was incorrectly populating the interface data.
cst_comp_snap_interface corresponding to completion record in MTI (linked with
transaction_interface_id) was not populated with the op_seq_num.

In the current scenario, user populated the op_seq_num but it is wrong value.

For any reference related to WIP Assembly Completion through MTI, can refer  Note 458801.1




Solution

To implement the solution, please execute the following steps:

1. Insert the correct operation sequence number in to cst_comp_snap_interface table which corresponds
to the operation sequence of that particular job.

Note: If there are multiple operation sequences then,

Insert multiple records in CST_COMP_SNAP_INTERFACE, one record for each
OPERATION_SEQ_NUM in WIP_OPERATIONS for the appropriate WIP_ENTITY_ID (with the
same transaction_interface_id).

2. Retest the issue.






References
NOTE:458801.1 - Standard API/Interface Needed to Perform Work Order Completion: WIP Assembly Completion Transaction For Discrete Jobs Can Be Performed Through Mtl_Transactions_Interface Table
SR 7174967.993

显示相关信息 相关的
产品

    * Oracle E-Business Suite > Manufacturing > Discrete Manufacturing > Oracle Work in Process

keyword
CST_COMP_SNAP_INTERFACE; DISCRETE JOB; OPEN INTERFACES; COMPLETION TRANSACTIONS
错误
30 ERROR



推荐阅读
  • 如何自行分析定位SAP BSP错误
    The“BSPtag”Imentionedintheblogtitlemeansforexamplethetagchtmlb:configCelleratorbelowwhichi ... [详细]
  • 生成式对抗网络模型综述摘要生成式对抗网络模型(GAN)是基于深度学习的一种强大的生成模型,可以应用于计算机视觉、自然语言处理、半监督学习等重要领域。生成式对抗网络 ... [详细]
  • 本文介绍了OC学习笔记中的@property和@synthesize,包括属性的定义和合成的使用方法。通过示例代码详细讲解了@property和@synthesize的作用和用法。 ... [详细]
  • 本文详细介绍了Java中vector的使用方法和相关知识,包括vector类的功能、构造方法和使用注意事项。通过使用vector类,可以方便地实现动态数组的功能,并且可以随意插入不同类型的对象,进行查找、插入和删除操作。这篇文章对于需要频繁进行查找、插入和删除操作的情况下,使用vector类是一个很好的选择。 ... [详细]
  • Linux环境变量函数getenv、putenv、setenv和unsetenv详解
    本文详细解释了Linux中的环境变量函数getenv、putenv、setenv和unsetenv的用法和功能。通过使用这些函数,可以获取、设置和删除环境变量的值。同时给出了相应的函数原型、参数说明和返回值。通过示例代码演示了如何使用getenv函数获取环境变量的值,并打印出来。 ... [详细]
  • Java自带的观察者模式及实现方法详解
    本文介绍了Java自带的观察者模式,包括Observer和Observable对象的定义和使用方法。通过添加观察者和设置内部标志位,当被观察者中的事件发生变化时,通知观察者对象并执行相应的操作。实现观察者模式非常简单,只需继承Observable类和实现Observer接口即可。详情请参考Java官方api文档。 ... [详细]
  • 先看官方文档TheJavaTutorialshavebeenwrittenforJDK8.Examplesandpracticesdescribedinthispagedontta ... [详细]
  • [大整数乘法] java代码实现
    本文介绍了使用java代码实现大整数乘法的过程,同时也涉及到大整数加法和大整数减法的计算方法。通过分治算法来提高计算效率,并对算法的时间复杂度进行了研究。详细代码实现请参考文章链接。 ... [详细]
  • Go GUIlxn/walk 学习3.菜单栏和工具栏的具体实现
    本文介绍了使用Go语言的GUI库lxn/walk实现菜单栏和工具栏的具体方法,包括消息窗口的产生、文件放置动作响应和提示框的应用。部分代码来自上一篇博客和lxn/walk官方示例。文章提供了学习GUI开发的实际案例和代码示例。 ... [详细]
  • 本文讨论了Kotlin中扩展函数的一些惯用用法以及其合理性。作者认为在某些情况下,定义扩展函数没有意义,但官方的编码约定支持这种方式。文章还介绍了在类之外定义扩展函数的具体用法,并讨论了避免使用扩展函数的边缘情况。作者提出了对于扩展函数的合理性的质疑,并给出了自己的反驳。最后,文章强调了在编写Kotlin代码时可以自由地使用扩展函数的重要性。 ... [详细]
  • Oracle seg,V$TEMPSEG_USAGE与Oracle排序的关系及使用方法
    本文介绍了Oracle seg,V$TEMPSEG_USAGE与Oracle排序之间的关系,V$TEMPSEG_USAGE是V_$SORT_USAGE的同义词,通过查询dba_objects和dba_synonyms视图可以了解到它们的详细信息。同时,还探讨了V$TEMPSEG_USAGE的使用方法。 ... [详细]
  • Day2列表、字典、集合操作详解
    本文详细介绍了列表、字典、集合的操作方法,包括定义列表、访问列表元素、字符串操作、字典操作、集合操作、文件操作、字符编码与转码等内容。内容详实,适合初学者参考。 ... [详细]
  • Java学习笔记之使用反射+泛型构建通用DAO
    本文介绍了使用反射和泛型构建通用DAO的方法,通过减少代码冗余度来提高开发效率。通过示例说明了如何使用反射和泛型来实现对不同表的相同操作,从而避免重复编写相似的代码。该方法可以在Java学习中起到较大的帮助作用。 ... [详细]
  • 本文讨论了编写可保护的代码的重要性,包括提高代码的可读性、可调试性和直观性。同时介绍了优化代码的方法,如代码格式化、解释函数和提炼函数等。还提到了一些常见的坏代码味道,如不规范的命名、重复代码、过长的函数和参数列表等。最后,介绍了如何处理数据泥团和进行函数重构,以提高代码质量和可维护性。 ... [详细]
  • 在Oracle11g以前版本中的的DataGuard物理备用数据库,可以以只读的方式打开数据库,但此时MediaRecovery利用日志进行数据同步的过 ... [详细]
author-avatar
常叽叽_655
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有