Overview

Inventory Transaction Manager用于处理库存接口表(MTL_TRANSACTION_INTERFACE或者MTL_MATERIAL_TRANSACTIONS_TEMP)中的记录,处理之后最终产生库存事务(MTL_MATERIAL_TRANSACTIONS)。

(补:MTL_MATERIAL_TRANSACTIONS里记录了所有库存事务的历史,是Inventory的最核心的表)

Oracle R12 Inventory有两套接口表:

1.MTL_TRANSACTIONS_INTERFACE (MTI) :主要用于第三方模块(产品)数据的导入,如Order Management, WIP。对应的Form为Transaction Open Interface。

2.MTL_MATERIAL_TRANSACTIONS_TEMP(MMTT):Inventory,Purchasing,WIP,Move Order等相关模块的数据可以绕过MTI,直接写到MMTT中,最终Inventory Transaction Mannager会把这个临时表数据导入到库存事务表(MTL_MATERIAL_TRANSACTIONS)中。

对应的Form为,Pending Transactions Form。

What's Inventory Transaction Manager?

Transaction Manager processes all the material and financial movements into, within and out of an organization

Example: PO receipt into an organization or, subinventory transfer from one physical location to another or, sales order issue to a customer

The main function of the inventory module is to track, manage and control the flow of material within, coming from and going out of an organization.

Transaction manager is the core component of the inventory module and is used to process all the transactions for material handling.

Table Flow

Basic Flow: MTI -> MMTT -> MMT

Table Values

Refer: TRANSACTION_MODE,LOCK_FLAG,PROCESS_FLAG,TRANSACTION_STATUS in MTI or MMTT,
http://blog.csdn.net/pan_tian/article/details/7899178

Inv Manager Code Flow

Refer: INV_TXN_MANAGER_PUB.PROCESS_TRANSACTIONS:http://blog.csdn.net/pan_tian/article/details/8289958

INV Transaction Manager Related Files

INV Transaction Manager is the set of procedures(JAVA files and PLS files), which process the variable Inventory transactions like Misc Issue/Receipt, Inter-Org Transfer, and so on.

How to launch Inventory Interface Manager Manually

Material Transaction一般为定时运行,比如每隔五分钟运行一次。如果需要手工运行,可以参照下面的路径

路径: Inventory > Setup > Transactions > Interface Managers

How to schedule Inventory Interface Manager

Refer:http://blog.csdn.net/pan_tian/article/details/8637819

How to restart Inventory Manager

1.) Login as System Administrator

2.) Concurrent > Manager > Administer

3.) Check/Re-start Inventory Manager,Inventory Remote Procedure Manager

Number of Processes(Workers) for Concurrent Manager

Refer:http://blog.csdn.net/pan_tian/article/details/8287861

Inventory Transaction Scripts

Refer: Using script to submit INV Manager to process MTI/MMTT:http://blog.csdn.net/pan_tian/article/details/7711155

最新文章

  1. 85 megacli-查看raid信息
  2. 安装spy-debugger
  3. 泛函编程(11)-延后计算-lazy evaluation
  4. ZigBee profile
  5. 开发者工具console
  6. Linux系统管理员:不要害怕升级内核
  7. 取文件的大小 (KB,MB,GB...)
  8. 大一C语言结课设计之《简单计算器》
  9. ( ̄y▽ ̄)~ 智能手机II
  10. python WEB接口自动化测试之requests库详解
  11. 时间同步方法及几个可用的NTP服务器地址
  12. SQL Server数据库基础笔记
  13. volume.go
  14. 【安富莱TCPnet网络教程】HTTP通信实例
  15. dataTables 插件学习整理
  16. 2018.5.11 B树总结
  17. Visual Studio进行Web性能测试- Part III
  18. Java 基础系列合集
  19. MongoDB与关系型数据库 区别
  20. Mybatlis SQL 注入与防范

热门文章

  1. c语言3种链接属性: 外部(external), 内部(internal),无设置(none)
  2. decode-ways(动态规划)
  3. 好久没用IJ写Java 之 《求输入的一个数中包含奇数、偶数、零的个数》
  4. async/await 的一些知识
  5. 转:函数signal()
  6. Hibernate异常之命名查询节点未找到
  7. Go 语言Map(集合)
  8. API得到Windows版本
  9. Mongo 整体架构介绍(1)-------分片集群
  10. 使用redis构建文章投票系统