Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 211 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 78 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Cloud Financials: payables link to projects account distribution

Summary
Need DB links between Financials and Projects tables
Content
In E-Business Suite, the payables distribution contains the project_id and task_id which link to the Projects tables for invoices matched to projects/tasks. Does anyone have the links between the Cloud/fusion tables?
Answers
-
Found it. In AP distributions table project_id is null but pjc_project_id is not.
0 -
Hi Pam
What is the primary reason for asking this ?
Xavier
0 -
BI Publisher reporting
0 -
select s.vendor_name, i.invoice_num, i.invoice_date, L.amount amt,
P.segment1 , E.Name ,T.EXPENDITURE_TYPE_NAME
from AP_INVOICE_DISTRIBUTIONS_ALL L, AP_INVOICES_ALL I, POZ_SUPPLIERS_V S, PJF_EXP_TYPES_TL T, PJF_PROJECTS_ALL_B P, PJF_PROJ_ELEMENTS_TL E
where i.invoice_id = l.Invoice_id
and s.vendor_id = i.vendor_id
and L.reversal_flag <> 'Y'
and T.EXPENDITURE_TYPE_ID = L.PJC_EXPENDITURE_TYPE_ID
and P.Project_id = L.PJC_PROJECT_ID
and T.EXPENDITURE_TYPE_NAME='COS Rent'
and E.PROJ_ELEMENT_ID = L.PJC_TASK_ID1