zoukankan      html  css  js  c++  java
  • Inventory Transactions Manager

    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



  • 相关阅读:
    Codeforces Round #183 (Div. 2) B. Calendar
    FZU Problem 2030 括号问题
    NEU(1262: ASCII Sequence II)动态规划
    ZOJ(1711)Sum It Up (DFS+剪枝+去重复)
    ZOJ(1004)Anagrams by Stack (DFS+stack)
    HDU(3374) (KMP + 最小表示法)
    FZU Problem 1926 填空(KMP好题一枚,确实好)
    POJ(2481)Cows 树状数组
    HOJ (1042) 整数划分
    LeetCode: Two Sum
  • 原文地址:https://www.cnblogs.com/wanghang/p/6299309.html
Copyright © 2011-2022 走看看