How To Join XLA_AE_HEADERS and RCV_TRANSACTIONS(子分类账到事务处理追溯)

19 篇文章 1 订阅
7 篇文章 0 订阅

转自:http://www.cnblogs.com/toowang/p/3346831.html

Applies to:   Oracle Inventory Management - Version: 12.0.6<max_ver> and later   [Release: 12 and later ] Information in this document applies to any platform. ***Checked for relevance on 7-Sep-2011***   Goal   In Release 12, Subledger Accounting has been introduced for Procurement.  As a part of Subledger Accounting, new SLA tables XLA_AE_HEADERS, XLA_AE_LINES and XLA_DISTRIBUTION_LINKS have been introduced.

How to join the tables XLA_AE_HEADERS with RCV_TRANSACTIONS?   Solution   There is no direct join between these 2 tables, however you can link via other tables and return data.

In the rcv_receiving_sub_ledger with the rcv_transaction_id you can tie in the rcv_transactions table with the transaction_id, so:

       rrsl.rcv_transaction_id = rt.transaction_id

In the rcv_receiving_sub_ledger with the RCV_SUB_LEDGER_ID you can tie in the XLA_DISTRIBUTION_LINKS table with the SOURCE_DISTRIBUTION_ID_NUM_1:

       xdl.SOURCE_DISTRIBUTION_ID_NUM_1 = rrsl.RCV_SUB_LEDGER_ID

And then complete the join between the tables with the ae_header_id reference between xla_ae_headers and XLA_DISTRIBUTION_LINKS:

        aeh.ae_header_id = xdl.ae_header_id

So with the following completed script by entering an accrued receipt number you can obtain the rcv_transaction transaction_id and the xla_ae_headers table ae_header_id values, thus effectively joining the respective tables.   Please note however that the transactions must have been accrued and the Create Accounting process have completed for records to be seen in the Subledger Tables.   Here is the script, it requires the entry of a receipt number and the appropriate set of books id ( for a receipt that has been accrued as described above):  

SELECT aeh.ae_header_id,
       ael.ae_line_num, 
       ael.accounting_class_code, 
       ael.accounted_dr,
       ael.accounted_cr, 
       rt.transaction_id, 
       rt.shipment_header_id 
FROM   xla_ae_headers aeh, 
       xla_ae_lines ael, 
       rcv_transactions rt, 
xla_distribution_links xdl, 
       rcv_receiving_sub_ledger rrsl 
WHERE  aeh.ae_header_id = xdl.ae_header_id 
       AND aeh.ae_header_id = ael.ae_header_id 
       AND ael.ae_header_id = xdl.ae_header_id 
       AND ael.ae_line_num = xdl.ae_line_num 
       AND xdl.source_distribution_type = 'RCV_RECEIVING_SUB_LEDGER' 
       AND xdl.source_distribution_id_num_1 = rrsl.rcv_sub_ledger_id 
       AND rrsl.rcv_transaction_id = rt.transaction_id 
       AND rrsl.set_of_books_id = &set_of_books_id 
       AND rt.shipment_header_id IN (SELECT shipment_header_id 
                                     FROM   rcv_shipment_headers 
                                     WHERE  receipt_num = '&RECEIPT_NUM') 
ORDER  BY rt.transaction_id,
          ael.ae_header_id, 
          ael.ae_line_num; 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值