分析EBS系统的数据流:
PO:
po_requisition_headers_all
po_requisition_lines_all
po_headers_all
po_lines_all
po_line_locations_all
po_distributions_all
po DELIVER后通常会自动到gl_interface表中。如果没有可以运行“Transfer transactions to GL”请求
inv:
rcv_shipment_headers
rcv_shipment_lines
rcv_transactions
mtl_material_transactions
rcv_lot_transactions
mtl_unit_transactions
rcv_serial_transactions
INV/Request
运行“Transfer transactions to GL”请求
ap:匹配invoice
ap_batches
ap_invoices_all
ap_invoice_distributions_all
AP_INVOICE_PAYMENTS_ALL
ap_checks_all
-----------------从ap的invoice_id找相应的PO_NUMBER
SELECT DISTINCT(ph.segment1)
FROM ap_invoice_distributions aid,
po_distributions_ap_v pd,
po_headers ph
WHERE aid.invoice_id = :l_invoice_id
AND aid.po_distribution_id = pd.po_distribution_id
AND pd.po_header_id = ph.po_header_id
GROUP BY ph.po_header_id, ph.segment1
HAVING (NVL(SUM(aid.amount), 0) != 0
OR
NVL(SUM(aid.quantity_invoiced), 0) != 0);
-------------------------------------------------------------------------------------------------------------
AP:
应付款连接总账(路径:应付模块>其他>运行>请求>应付款传送至总账)
Payables Transfer to General Ledger
-----------------------------------------------------------------------------------------------------------
WIP:
WIP_SCHEDULE_GROUPS
WIP_ENTITIES
WIP_DISCRETE_JOBS
WIP_OPERATIONS
WIP_OPERATION_RESOURCES
oe:
so_headers_all
so_lines_all
so_picking_headers_all
so_picking_lines_all
so_picking_line_details
wsh_deliveries
wsh_departures
mtl_material_transactions
mtl_unit_transactions
.----------------------------
自动开票后过到AR(autoinvoice)
ar:
ra_customer_trx_all
ra_customer_trx_lines_all
ar_distributions_all
ar_payment_schedules_all
ar_receiveable_applications_all
ar_cash_receipts_all
ar_cash_receipt_histroy_all
ra_cust_trx_line_gl_dist_all
自动开票接口导入程序接口表。
应收款管理系统使用以下表,临时存储由其它系统传送的数据:
RA_INTERFACE_LINES_ALL
RA_INTERFACE_SALESCREDITS_ALL
RA_INTERFACE_DISTRIBUTIONS_ALL
“自动开票”使用第四个表 RA_INTERFACE_ERRORS_ALL,存储未通过验证的接口数据信息
------
导入日记帐后通过POST过帐过到Glbalances
AR数据过总账(路径:AR 接口 总账管理系统)
gl:
FROM GL.GL_CODE_COMBINATIONS gcc,
GL.GL_JE_HEADERS gjh,
GL.GL_JE_LINES gjl
gl_period_statuses ps,
gl_je_batches jb,
gl_je_categories
gl_balances jc
WHERE gjh.JE_HEADER_ID = gjl.JE_HEADER_ID
AND gjl.CODE_COMBINATION_ID = gcc.CODE_COMBINATION_ID
AND gjl.PERIOD_NAME = 'Period04-06'
AND gjh.JE_SOURCE ='Inventory'
AND gjl.SET_OF_BOOKS_ID = 445
AND gjh.NAME='WIP RMB'
最后通过gl_balances产生财务报表
bt表
资产负债表
试算平衡表
损益表
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/12122734/viewspace-539803/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/12122734/viewspace-539803/
本文解析了EBS系统中的关键数据流,包括采购订单(PO)、收货(INV)、应付账款(AP)、工作在制品(WIP)、订单执行(OE)、应收账款(AR)及总账(GL)等模块的数据表及其相互关系。
3649

被折叠的 条评论
为什么被折叠?



