Categories
- All Categories
- 131 Oracle Analytics News
- 24 Oracle Analytics Videos
- 14.6K Oracle Analytics Forums
- 5.5K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 51 Oracle Analytics Trainings
- 9 Oracle Analytics Data Visualizations Challenge
- 4 Oracle Analytics Career
- 3 Oracle Analytics Industry
- Find Partners
- For Partners
# Submissions Attribute

Description
In need of an attribute for # of Submissions by candidate regardless of filters in report for Taleo OBI.
Use Case and Business Need
In Taleo, we can only report on # applications/submissions based on the filters in our report. However, we'd like to be able to report on # of submissions at an attribute level (ideally both inactive and active) to see a full history of that candidate. We'd like to identify New Applicants vs. One and Done Applicants vs. Eager Appliers.
Original Idea Number: f2fe96b8d9
Comments
-
Sara, you might be able to get to this using a SQL filter or filtering based on the results of another analysis.
Below is an example of a SQL filter where the filter is returning the Candidate ID of any submission that accepted an offer within a timeframe. The WHERE statement can be modified for a broader purpose than just offer accepted dates.
"Candidate Identification"."Candidate Identifier" in (
SELECT Q.Cid Cid
FROM
(SELECT "Candidate Identification"."Candidate Identifier" Cid
FROM "Recruiting"
WHERE
"Submission Dates"."Offer Accepted Date" BETWEEN @{start}{timestamp '2017-11-01 00:00:00'} AND @{end}{timestamp '2017-11-20 00:00:00'}) Q )Filtering based on the results of another analysis is a similar in concept to the SQL filter... include Candidate ID in Analysis 1 with your report filters, then in Analysis 2 you would filter based on Candidate IDs identified in Analysis 1 (screen shot attached).
0 -
Hi Michael - Thank you for the suggestion! Unfortunately, the volume of applications we have is too high to run these results based on another analysis. Our applications run in the millions just for the previous year so the report times out/fails when we try to run on another analysis. I think for small scale adhoc reports this would work great. Thank you again!
0 -
I've never tried a SQL filter to quite that volume but it will handle more than basing it on another analysis. I agree it would be beneficial if there was an easier way to execute this scenario with a larger data set.
0