Skip to main content

Link between the table GL_IMPORT_REFERENCES and AP tables

When you say Link I'm presuming you mean BACKTRACK or REFER TO=20 

In Metalink look for:=20 

NOTE 130542.1 


Note 1011799.6 - 'How Does Oracle Payables Populate References Columns 
In GL_IMPORT_REFERENCES' helps at all.=20 

The reference fields are used in different ways by each subledger. 
Following is the use that Oracle Accounts Payable gives to these fields: 

USER_JE_CATEGORY_NAME: Payments 
USER_JE_SOURCE_NAME: Payables 

Reference21 Supplier name 
Reference22 Internal Invoice identification 
Reference23 Internal Check identification 
Reference24 External check number 
Reference25 Paid invoice number 
Reference26 'AP Invoices' 
Reference27 Payment number 
Reference29 Paid invoice identification 
Reference30 'CASH' or 'DISCOUNT' or 'LIABILITY' 
- 19 - 
USER_JE_CATEGORY_NAME: Purchase Invoices 
USER_JE_SOURCE_NAME: Payables 
Reference21 Supplier Name 
Reference22 Internal invoice identification 
Reference23 Distribution line number 
Reference25 Invoice number 
Reference26 'AP Invoices' 
Reference30 'EXPENSE' or 'IPV' or 'LIABILITY' 
The following query groups journal lines for a particular group_id 
coming from Oracle 
Payables by Category and Internal Invoice Id, and sums the debit and 
credit amounts: 
q_ji3.sql : 
set linesize 120 
col s_en_cr format S999,999,999.99 
col s_en_dr format S999,999,999.99 
col s_acc_cr format S999,999,999.99 
col s_acc_dr format S999,999,999.99 
col reference22 format a15 
spool q_ji4 
Select USER_JE_CATEGORY_NAME category 
, reference22 invoice_id 
, sum (entered_cr) s_en_cr 
, sum (entered_dr) s_en_dr 
, sum (accounted_cr) s_acc_cr 
, sum (accounted_dr) s_acc_dr 
, count(*) 
from gl_interface 
where user_jr_source_name =3D 'Payables' and 
group_id =3D &group_id 
group by USER_JE_CATEGORY_NAME, reference22 

spool off 

Comments

Popular posts from this blog

Create Accounting for a Payment generates errors 95333 and 95359

Create Accounting for a Payment generates errors 95333 and 95359 Error: 95333: A conversion rate does not exist to convert USD to AUD for the conversion type Corporate and conversion date 20-MAR-09 for line -25. Please use the Daily Rates form in General Ledger to enter a conversion rate for these currencies, conversion date and conversion type. 95359: There is no accounted amount for the subledger journal entry line. Please inform your system administrator or support representative that: The source assigned to the accounting attribute Accounted Amount has no value for extract line number 88547. Please make sure the source assigned to the accounting attribute Accounted Amount has a valid value, or assign a different source to this accounting attribute. Solution: 1. Specify a conversion rate for the currencies and conversion date mentioned in the error message 95333 Navigation under the General Ledger responsibility: Setup > Currencies > Currency Rates Manager > Daily Rates ...

Public API’s for FA Transactions

Public API’s for FA Transactions So far Oracle FA is have all the good things except the lack on reporting.Oracle FA is now offer lot of public API's that can be used to interfacing with third party or Oracle application other modules. Here are some of transaction's API's:   Additions API if you have requirement to add assets directly via PL/SQL then use  FA_ADDITION_PUB.DO_ADDITION. If you have selected the Allow CIP Assets check box on the Book Controls window of a tax book when adding CIP assets using the Additions API, the this API automatically adds those CIP assets to that tax book at the same time that they are added to the corporate book. Adjustments API you can make cost adjustments to your assetsdirectly via PL/SQL using  FA_ADJUSTMENT_PUB.DO_ADJUSTMENT  for any  process adjustment. Detail can be found in appendix H) You can use this API if you have a custom interface that makes it difficult to use with the existing Oracle Assets interfaces for adjusti...

AP Table Relation Oracle Apps

AP Table Relation Oracle Apps ORACLE PAYABLE TABLE RELATION Source Table Dependent Table Condition AP_INVOICE_LINES_ALL AIL ZX_LINES_SUMMARY ZLS AIL.invoice_id = ZLS.trx_id and  ZLS.application_id  = 200 and  ZLS.entity_code  = 'AP_INVOICES' and  ZLS.event_class_code  in ('STANDARD INVOICES', 'PREPAYMENT INVOICES', 'EXPENSE REPORTS') and  AIL.summary_tax_line_id = ZLS.summary_tax_line_id AP_INVOICE_LINES_ALL AIL ZX_LINES ZL AIL.invoice_id = ZL.trx_id and  ZL.application_id  = 200 and  ZL.entity_code  = 'AP_INVOICES' and  ZL.event_class_code  in ('STANDARD INVOICES', 'PREPAYMENT INVOICES', 'EXPENSE REPORTS') and  AIL.line_number = ZL.trx_line_number AP_INVOICE_DISTRIBUTIONS_ALL AID ZX_REC_NREC_DIST ZD AID.invoice_id = ZD.trx_id and  ZD.application_id  = 200 and  ZD.entity_code  = 'AP_INVOICES' and  ZD.event_class_code  in ('STANDARD INVOICES', 'PREPAYMENT INVOICES', 'EXPENSE REPORTS') and...