zoukankan      html  css  js  c++  java
  • 订单 入库(转)

     

    从采购到入库的全部操作好象没什么好说的,只要知道共有几步,每一步操作的入口路径,进去后的操作可以看着界面就能完成的,下面是各个环节和相关的表说明,操作步骤省略不说了:

    一、采购订单(路径:PO/采购订单/采购订单)

    1、po_headers_all 采购订单头表
    2、po_lines_all 采购订单行表
    --po_header_id=po_headers_all.po_header_id
    --此表是保存采购订单的行信息
    3、po_line_locations_all 采购订单行的发送表
    --po_line_id=po_lines_all.po_line_id
    --同一采购订单行的物料可能会发往不同的地点,此表记录物料发送情况
    4、po_distributions_all 采购订单发送行的分配表
    --line_location_id=po_line_location_all.line_location_id
    --发往同一地点的物料也可能放在不同的子库存,此表记录物料分配情况

    这几个表从上到下是一对多关系的

    二、接收(路径:INV/事务处理/接收/接收)

    1、rcv_shipment_headers 接收发送头表
    --记录采购订单的接收情况的头表
    2、rcv_shipment_lines 接收发送行表
    --shipment_header_id=rcv_shipment_headers.shipment_header_id
    --记录采购订单的发送的行的接收情况
    3、rcv_transactions 接收事务处理表
    --po_header_id=po_headers_all.po_header_id
    --po_line_id=po_lines_all.po_line_id
    --line_location_id=po_line_location_all.line_location_id
    --po_distribution_id=po_distributions_all.po_distribution_id
    --shipment_header_id=rcv_shipment_headers.shipment_header_id
    --shipment_line_id=rcv_shipment_lines.shipment_line_id
    --记录采购订单的发送行的RECEIVE的信息
    4、rcv_receiving_sub_ledger 暂记应付表
    --rcv_transaction_id=rcv_transactions.transaction_id
    --reference2=po_headers_all.po_header_id
    --reference3=po_distributions_all.po_distribution_id
    --记录采购订单接收后,产生的暂记应付信息

    三、接受(路径:INV/事务处理/接收/接收事务处理)

    1、rcv_transactions 接收事务处理表
    --记录采购订单的发送行的ACCEPT的信息

    四、入库(路径:INV/事务处理/接收/接收事务处理)

    1、rcv_transactions 接收事务处理表
    --记录采购订单的发送行的DELIVER的信息
    2、mtl_material_transactions 物料事务处理表
    --transaction_source_id=po_headers_all.po_header_id
    --记录物料的存放位置发生变化的信息
    3、mtl_onhand_quantities 物料现有量表
    --记录物料的现有数量信息表
    4、rcv_lot_transactions
    --transaction_id=rcv_transaction.transaction_id
    --lot_number=mtl_onhand_quantities.lot_number
    --shipment_line_id=rcv_shipment_lines.shipment_line_id
    --记录接收的事务所产生的批次信息表
    5、mtl_transaction_lot_numbers
    --transaction_id=mtl_material_transactions.transaction_id
    --lot_number=mtl_onhand_quantities.lot_number
    --记录物料的存放位置发生变化的所产生的批次信息表
    6、rcv_serial_transactions
    --transaction_id=rcv_transaction.transaction_id
    --shipment_line_id=rcv_shipment_lines.shipment_line_id
    --记录接收事务的所产生的物料序列号信息表
    7、mtl_serial_numbers
    --last_txn_source_id=mtl_material_transactions.transaction_source_id
    --记录物料序列号的当前状态的信息表

    当在EBS中启用批次功能才会用到rcv_lot_transactions和mtl_transaction_lot_numbers表,启用序列号功能才会用到rcv_serial_transactions和mtl_serial_numbers表

  • 相关阅读:
    ThreadPoolHelper
    微软发布架构师期刊阅读器
    The Attribute basic
    静态构造函数(Static Constructor)(It performs well in Singleton)
    【代码保留】WebService发布本地磁盘信息
    oracle sqlplus
    【代码保留】IP地址排序(字符串分隔补齐)
    [WCF]How to Hosting?
    生成Xnb文件[转]
    sqlite 中文排序
  • 原文地址:https://www.cnblogs.com/keim/p/2212730.html
Copyright © 2011-2022 走看看