In HR Analytics (OBIA 7.9.6.3) How to get employees bank account details from Oracle EBS to BAW.
Is there any OOTB mappings already available ?
not sure about OOTB mapping but the below query will give you the required details on employee bank detail.
SELECT DISTINCT
pppmf.assignment_id ,
pea.segment5 account_name ,
pea.segment3 sort_code ,
pea.segment4 account_number ,
flv.meaning bank_name,
popmf.org_payment_method_name AS payment_method_name
FROM pay_personal_payment_methods_f pppmf ,
pay_org_payment_methods_f popmf,
pay_external_accounts pea,
hr_lookups hl,
FND_LOOKUP_VALUES flv
WHERE pppmf.external_account_id = pea.external_account_id
AND pppmf.org_payment_method_id = popmf.org_payment_method_id
AND hl.lookup_type = '<<provide lookup value here>>'
AND hl.lookup_code = pea.segment1
AND TRUNC(sysdate) BETWEEN pppmf.effective_start_date AND pppmf.effective_end_date
AND TRUNC(sysdate) BETWEEN popmf.effective_start_date AND popmf.effective_end_date
AND TRUNC(sysdate) BETWEEN NVL(pea.START_DATE_ACTIVE,sysdate) AND NVL(pea.end_DATE_ACTIVE,sysdate)
AND pea.segment1 = flv.lookup_code
AND flv.lookup_type = '<<provide lookup value here>>'
AND flv.enabled_flag = 'Y'
AND NVL (flv.end_Date_Active, SYSDATE + 1) > SYSDATE
order by pppmf.assignment_id;
thanks for your response.
Have you modified the OOTB mapping to include the bank details?
Agenda Presentation: What's New in FDI 26.R3 Open Q & A: Ask your questions of implementation and product specialists Replays of past FDI CEAL Guidance Office Hours are available on Oracle VideoHub here. Fusion Data Intelligence - CEAL Guidance Office Hours The FDI Office Hours are hosted by CEAL solution architects who…
for a particular report, when some users click on the link, the new tab opens but after about 10 minutes of loading the system returns
Summary: Hello experts, We are using WLF_ASSIGNMENT_TASKS_F to fetch the data from the learn tables The WLF_ASSIGNMENT_TASKS_F table, in the LAST_UPDATED_BY field, doesn't reflect who actually updates the task. I've attached the query used. Can you please help me? Content (please ensure you mask any confidential…
https://blogs.oracle.com/analytics/announcing-the-general-availability-of-oracle-analytics-server-2026 As announced, OAS 2026 has moved to FMW 14. What does this mean for the future of OBIA? Given that 103PS4 is for 12.2.1.4 , it would seem another required upgrade beyond 103ps4 will have to happen. What should customers…
Hi everyone, we're experiencing an interesting issue with report filters in Oracle Learning Management (or similar). Problem: When we use filters based on SQL queries, for some specific users the report filters disappear completely, making the report non-functional. Technical Details: We've identified the critical point in…
We use OAS 2025, EBS 12.2.12, OBIA 7.9.6.4, Oracle 19c db on Linux. We are trying to build Project to GL Cost reconciliation report that runs for a period, currently it is done manually, by running three analytics reports (one on Project - Cost subject area to get total cost for Contract and Resources, another report on…