Get Started with Redwood for Oracle Cloud HCM Begin Now
To ensure that questions get required attention from community members and are NOT left unanswered, it’s important for the author to indicate (by selecting “Yes” or “No” when prompted) whether the question was answered. (newly added) Please note that it is also important to respond to EACH comment your question receives. Your Yes or No response ensures an accurate status for your question.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
Number of employee with a salary = 0
Content
Hello,
I try to do a really simple OTBI : get the number of employee with a salary = 0
I don't manage to do this, I have 0 result with the code below
is there someone who can help me?
thanks a lot
SET VARIABLE PREFERRED_CURRENCY='Local Currency';SELECT
0 s_0,
COUNT("Compensation - Salary Details Real Time"."Worker"."Person ID") s_1
FROM "Compensation - Salary Details Real Time"
WHERE
("Salary"."Annualized Salary" = 0)
ORDER BY 1
FETCH FIRST 75001 ROWS ONLY
0