- OracleApps Epicenter - http://www.oracleappshub.com -
AR to GL Transfer : Part II
Posted By Sanjit Anand On December 10, 2008 @ 4:43 pm In Oracle Receivable | 1 Comment
Read This for AR to GL Transfer
GL Transfer Can Capture the Fingerprints (Link between GL to AR )

When you run AR Transfer to GL , GL_INTERFACE table get first populated with reference columns that is then pushed the detailes in GL_JE_LINES table. Here are the details for Reference columns
Key Tables
In order to obtain what is going to be tranfered to GL you can these Major AR table to drill down information.
Query for Subledger Transfer to GL
If you want to get details of different journals transferred to GL, use this to get the result. You can also fine tune with period , currency or clearing company code or Journal Type.Here is the query for Transaction.
SELECT [2] gjjlv.period_name "Period" , gjb.name "Batch name" , gjjlv.header_name "Journal Entry For" , gjjlv.je_source "Source" , glcc.concatenated_segments "Accounts" , gjjlv.line_entered_dr "Entered Debit" , gjjlv.line_entered_cr "Entered Credit" , gjjlv.line_accounted_dr "Accounted Debit" , gjjlv.line_accounted_cr "Accounted Credit" , gjjlv.currency_code "Currency" , arm.name "Payment Method" , acra.receipt_number "Receipt Num" , acra.receipt_date "Receipt Date" , RA.CUSTOMER_NAME "Reference" , gjjlv.created_by "Gl Transfer By" FROM [3] apps.gl_je_journal_lines_v gjjlv , gl_je_lines gje , gl_je_headers gjh , gl_je_batches gjb , ar_cash_receipts_all acra , apps.ra_customers ra , apps.gl_code_combinations_kfv glcc , ar_receipt_methods arm AND [6] glcc.code_combination_id = gje.code_combination_id AND [6] gjh.JE_BATCH_ID = gjb.JE_BATCH_ID AND [6] gjh.JE_HEADER_ID = gje.JE_HEADER_ID AND [6] gjh.period_name = gjb.default_period_name AND [6] gjh.period_name = gje.period_name AND [6] gjjlv.period_name = gjh.period_name AND [6] gjjlv.je_batch_id = gjh.je_batch_id AND [6] gjjlv.je_header_id = gjh.je_header_id AND [6] gjjlv.LINE_JE_LINE_NUM = gje.je_line_num AND [6] gjjlv.line_code_combination_id = glcc.code_combination_id AND [6] gjjlv.line_reference_4 = acra.receipt_number AND [6] ra.customer_id = acra.pay_from_customer AND [6] acra.receipt_method_id = arm.receipt_method_id AND [6] gjjlv.SUBLEDGER_DOC_SEQUENCE_VALUE = acra.DOC_SEQUENCE_VALUE AND [6] gjjlv.SUBLEDGER_DOC_SEQUENCE_id = acra.DOC_SEQUENCE_ID --and glcc.segment1 ='30D'
Run ARGLTP module: General Ledger Transfer Program

If your program is running bit slow , you can run this in debug mode and investigate why performance is done.
Based out of experince , the performance hit would be related to the number of records. If you are trying to determine why records are not imported you could run a smaller range than a week and run that in degbug mode. If you are trying to determine performance issues the debug is likely not going to help.
Here are the steps to run in the debug mode.
1)Go to Run General Ledger Interface Screen:
Interfaces -> General Ledger
2) Activate DEBUG_FLAG parameter:
Menu: Help -> Tools -> Examine
Block: Control
Field: DEBUG_FLAG
Value: Y
3) Run ARGLTP module: General Ledger Transfer Program.
After activating the debug mode the ARGLTP log file will show you more detailed information about this process. In you are unable to debug you can ask Oracle support they will help you in addressing slow performance.
Hope this will be helpful for rootcausing any issue during month end or addressing daily reconciliation.Will back soon for PO and PRJ transfer details.
Article printed from OracleApps Epicenter: http://www.oracleappshub.com
URL to article: http://www.oracleappshub.com/accounts-receivable/ar-to-gl-transfer-part-ii/
URLs in this post:
[1] AR to GL Transfer: http://www.oracleappshub.com/accounts-receivable/ar-to-gl-transfer-2/
[2] SELECT: http://www.oracle.com/pls/db92/db92.drilldown?word=SELECT
[3] FROM: http://www.oracle.com/pls/db92/db92.drilldown?word=FROM
[4] WHERE: http://www.oracle.com/pls/db92/db92.drilldown?word=WHERE
[5] IN: http://www.oracle.com/pls/db92/db92.drilldown?word=IN
[6] AND: http://www.oracle.com/pls/db92/db92.drilldown?word=AND
Click here to print.
Disclaimer The opinions expressed here represent solely my own represent personal conjecture based upon experience, practice and observation and does not represent the thoughts, intentions, plans or strategies of my current & previous employers and their clients. Copyright © 2007-2010 OracleApps Epicenter. All rights reserved.
1 Comment To "AR to GL Transfer : Part II"
#1 Comment By Donald Ferreira On December 16, 2008 @ 6:09 am
Hi Sanjit,
Am new to Oracle General Ledger.
Am wondering if you have queries similar to the ones above for :
-GL Balances Drill down
-GL Journal Drill down
-GL Sub-Ledger drill down
Thanks a ton for your posts
Have a nice day
Kind regards
Donald