Categories
- All Categories
- Oracle Analytics Learning Hub
- 29 Oracle Analytics Sharing Center
- 18 Oracle Analytics Lounge
- 236 Oracle Analytics News
- 45 Oracle Analytics Videos
- 16K Oracle Analytics Forums
- 6.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 88 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Recruitment Time in Stage
Does anyone have a dashboard for time in each stage of the recruitment process including: Apply to phone screen, phone screen to interview, interview to offer, and offer to start?
Best Answer
-
Have you explored the phase and state completion duration metrics? These are really great for tracking how long the candidates are in each phase and state.
We have also built custom calculations that measure the time difference between two Oracle dates (we had to explore different aggregation methods to make these accurate, so be careful to validate closely):
Avg (TIMESTAMPDIFF(SQL_TSI_DAY,"HCM - Talent Acquisition"."Job Application - Dates"."Job Application Submitted Date","HCM - Talent Acquisition"."Job Offer - Basic Information"."Accepted Date"))
If there isn't a date tracked in the system but a phase or state is changed, we have also had success using the date the phase or state is activated:
AVG(
CASE
WHEN "HCM - Talent Acquisition"."Recruiting History Event Type"."Event Type Name" = 'State Activated'
AND "HCM - Talent Acquisition"."Recruiting State"."State Name" = 'Selected for Offer'
THEN TIMESTAMPDIFF(
SQL_TSI_DAY,
"HCM - Talent Acquisition"."Job Application - Dates"."Job Application Submitted Date",
"HCM - Talent Acquisition"."Time"."Date"
)
ELSE NULL
END
)0
Answers
-
Hi @Nathan Yeager,
Welcome to the Oracle Analytics Community!
Please take a look into the following post which might not be exactly same as your requirement but it will give you some content which can be extended.
HCM FDI Release 25R3 (Aug-2025) - Recruiting Analytics — Oracle
Additionally, you can take a look into the following area for shared contents.
Oracle Analytics Sharing Center — Oracle
Hope this help.
Thank you.
1


