下面是我在写erp接口时的积累:
1.请购单:
po_requisition_headers_all --请购单头
po_requisition_headers_all --请购单行
2.订单和一揽子协议:
--erp标准接口表
select * from Po_Headers_Interface where attribute8=327
select * from Po_Lines_Interface
--erp最终业务表
select * from Po_Headers_All where segment1='2007074733'
select * from Po_Lines_All where po_header_id=235600
po.PO_DISTRIBUTIONS_ALL 分配行,就是订单头和订单行的唯一
po.po_line_locations_all 发运行
3.接收:
erp接口表:Rcv_Headers_Interface/Rcv_Transactions_Interface
erp业务表:po.rcv_shipment_headers/lines,po.rcv_transactions,
接收会计分录表:
Po.Rcv_Receiving_Sub_Ledger
4.交货:
erp接口表:Rcv_Transactions_Interface
erp业务表:po.rcv_transactions
交货后会写入库存:Mtl_Onhand_Quantities,apps.Mtl_Onhand_Sub_v,mtl_onhand_items_v
5.发料:
erp接口表:Mtl_Transactions_Interface
erp业务表:WIP_REQUIREMENT_OPERATIONS,apps.Mtl_Onhand_Sub_v
错误表:Mtl_Transactions_Interface[error_code,error_explanation]
6.发票:
发票标准接口表头体
select * from ap.ap_invoices_interface where invoice_num like '01685085~5095%' --01685131~5138' --06279214/06279328' --GM0009'
select * from ap.ap_invoice_lines_interface where invoice_id=26085
最终发票头体
ap.ap_invoices_all发票头
ap.ap_invoice_distributions_all发票体
发票拒绝错误信息表:select * from AP_INTERFACE_REJECTIONS
创建会计分录表:
Ap.Ap_Ae_Headers_All
Ap.Ap_Ae_Lines_All
7.付款:
付款头,对应发票头
select * from ap.ap_invoice_payments_all where invoice_id in(89991)
付款行,对应发票行
select * from ap.ap_payment_distributions_all gg where gg.invoice_payment_id =
8.总帐
gl.gl_interface总帐接收表
ERP标准接口表
select * from gl.gl_interface t where --t.accounting_date >= to_date('2006-01-01','YYYY-MM-DD') and
user_je_source_name='GMCCBMS'
ERP总帐最终业务表:
GL_JE_HEADERS
gl_je_lines
获取从应付发票导入总帐的错误发票
select * from ap.ap_invoices_all where invoice_num in(
select distinct reference25 from gl.gl_interface where status='EC12' )
会计科目表:
Gl.Gl_Code_Combinations
通过会计科目段找到对应的id
Select * From gl_code_combinations_kfv k
Where k.concatenated_segments = '3821.0.123203.0.0.0.0'
9.需求更改:
接口表:Wip_Job_Dtls_Interface
错误表:wip_interface_errors_v
10.工序移动:包括
线圈工序移动、返回
总装工序移动、返回
接口表:WIP_MOVE_TXN_INTERFACE
错误表:wip_txn_interface_errors[error_column,error_message]
11.完工入库:包括
线圈完工入库
线圈完工返回
总装完工入库
总装完工返回
库存转移
接口表:MTL_TRANSACTIONS_INTERFACE
错误表:Mtl_Transactions_Interface[error_code,error_explanation]
基础表:
po_vendors --供应商
po_vendor_sites_all --供应商地址
po_vendor_contacts --供应商联系人
Mtl_System_Items_b --物料
ap.ap_terms_lines --付款方式
per_people_f --人员
wip.wip_entities --工单
Po.Po_Agents --采购员
Apps.Fnd_User --用户
apps.fnd_currencies_vl --币种
apps.org_acct_periods_v --库存会计期
apps.gl_period_statuses --PO会计期
Gl_Period_Statuses --总帐会计期
Bom_Bill_Of_Materials --bom清单