Need help to fetch manager's manager information so that notification is sent manager' manager when course of emp is due date
Presume you mean via sql? Manager is obtained via table per_assignment_supervisors_f. Smple query below for an Emps manager If you want the manager's manager - you just need to add the relevent tables again and do required joins. (or could also do a hierarchical level query) select ppf.person_number, ppfsup.person_number sup_person_number from per_all_people_f ppf, per_all_assignments_f paf, per_assignment_supervisors_f pas, per_all_people_f ppfsup where sysdate between ppf.effective_start_date and ppf.effective_end_date and ppf.person_id = paf.person_id and paf.assignment_type = 'E' and sysdate between paf.effective_start_date and paf.effective_end_date and paf.assignment_id = pas.assignment_id and sysdate between pas.effective_start_date and pas.effective_end_date and pas.manager_id = ppfsup.person_id and pas.manager_type = 'LINE_MANAGER' and sysdate between ppfsup.effective_start_date and ppfsup.effective_end_date
How can we fectch learning due date information . Is there any sample query
Did you check the learning assignment records table? Please check if below helps:
https://fusionhcmconsulting.com/2021/10/bip-query-to-extract-learner-completion-details/
Thanks.
Hello, Starting with the OAC September 2026 update, you’ll notice some changes to the Workbook authoring experience. The Data, Visualize, and Present tabs will no longer be displayed at the top of the Workbook. Here’s how you can navigate between these experiences going forward. Presenting and configuring a presentation…
Join us for a partner enablement update on EBS Agents, including current capabilities, deployment approach, and how to engage on customer opportunities. We’ll also share a brief AIDP update and outline upcoming deeper-dive sessions.
We have Iceberg tables stored in OCI Object Storage with the standard structure: table/ ├── data/ └── metadata/ I found the AIDP sample notebook for working with Iceberg through Spark using a Hadoop Catalog, which is an example to support reading and writing Iceberg tables from notebooks. [github.com] However, I have not…
The difference column is a calculation, and I would like to average that row.
Hi Everyone, We're running into a challenge in OAS 2026 with Data Visualization (DV) workbooks embedded in Classic Answers dashboards. Our requirement is to: Allow the embedded DV workbook to respond to Answers dashboard prompts. Prevent users from accessing the "Drill to Attribute/Hierarchy..." option from the right-click…