What is the the Oracle cloud table for Sales Agreements, We need the Agreements name,Effective Start and End date ,signed date, sales rep and price list etc In R12 we have oe_agreements_b and oe_agreements_tl etc..
Hi @Binu S
Can you refer Data-lineage -
https://docs.oracle.com/en/cloud/saas/analytics/24r2/fascm/chapter-data-lineage.html
Regards,
Arjun
@Binu S The FDI sales agreement table is DW_AGREEMENT_CF. Can you please check the same and confirm if this is the table you are looking for?
In Oracle Cloud, sales agreements information is typically found in the DOO (Distributed Order Orchestration) and Order Management modules. Some relevant tables for sales agreements include:
header_id
agreement_name
start_date
end_date
signed_date
For fields like the agreement name, effective start/end dates, signed date, sales rep, and price list, you can join these tables based on header_id or party_id where applicable.
party_id
An example query:
sqlCopy codeSELECT d.header_id, d.agreement_name, d.effective_start_date, d.effective_end_date, d.signed_date, hz.party_name AS sales_rep, ql.price_list_nameFROM DOO_HEADERS_ALL dJOIN HZ_PARTIES hz ON d.sales_rep_id = hz.party_idJOIN QP_LIST_HEADERS_B ql ON d.price_list_id = ql.list_header_id;
This retrieves key details like agreement names, dates, and associated sales reps and price lists.
Hi, Just done 26.R3 in our test pod, It went in easily enough, added advanced collections etc. Can back after the update completed and we no longer have any subject areas in OAC. Seems the latest update is causing for us a 500 internal server error and we can only access our custom data sources. As we were using FTR which…
Hi Experts, We are trying to create a report using OTBI to extract the PO line amount - Do we have the column which extracts the PO line amount out of the box available under subject area: Procurement-Purchasing Real Time or do we need to calculate it using the formula - PO Line Amount = Ordered Quantity × Unit Price Any…
Under the Workforce - Absence Management subject area, the Total Duration of Absence (Days) field does not return data for Life Leave and Annual Leave Half Pay. As an alternative, I used the Absence Duration field, which successfully captures all leave types. However, it does not correctly retrieve leave records that span…
Hello Experts, I am having issue while working with HCM - Workforce Core in which I am using Person Number and Department Name. The value getting is not in line with the data in my fusion environment. Please guide what I am missing. 26C.
Team, I heard we can use the AI assistance for generating the Start model in the SME. So how to enable this feature as our instances are already in 26.R2 version. Using this blog for reference: Guided Star Schema Generation: Bringing AI-Assisted Design to Semantic Model Customization | analytics Regards, Guru