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.
Description: Join our Product Management team to learn about new features that are part of 26.R3 Application release of Fusion Data Intelligence (SCM). The session will cover updates on Supply Chain Management and Procurement. Presented by: Anil Sebastian - Senior Director, SCM Product Management, Fusion Data Intelligence…
We would like to understand the reason for the difference in configuration options for the “Send Message to Team” action across the Redwood VBCS Recruiting pages. Currently, we observe the following behavior: On the Job Requisition and Job Requisition List pages, it is possible to hide/remove the “Send Message to Team”…
Is there a way to extract existing BIP reports saved in a specific folder? Like can capture Report Name, Report Path and Owner for example?
Is there a log that can be checked on our side that might help with the issue. I've submitted an SR, however it is currently being bounced around between different areas. Could not establish connection. oracle.xdo.delivery.ssh2.SSHMessageException: Error in decrypting message Current thought is that this is an issue with…
Hello, I'm trying my hand at creating some KPI's and Dashboard Visualizations for the Recruiting Activity Center (RAC) per the following documentation: Flexible Reporting in Redwood Dashboards Redwood Experience: Recruiting Dashboard When I add a session variable to my OTBI reports, I correctly see a value of 0 in my…
'Facility Name' exists in the Recruiting - Recruiting Real Time multiple times with varying usage. Job Requistion -> Job Requisition - Additional Details -> Facility Name Job Requistion -> Location -> Facility Name Is there any reason why these two Facility Names would not exist in the Recruiting - Real Time Events subject…