You're almost there! Please answer a few more questions for access to the Applications content. Complete registration
Interested in joining? Complete your registration by providing Areas of Interest here. Register

How can I retrieve the full details of each exception?

Hi everyone,

I’m working on a report that returns schedule exceptions using the following query:

SELECT
1 KEY,
pse.SCHEDULE_EXCEPTION_ID,
pse.SCHEDULE_ID,
pse.SCHEDULE_ASSIGNMENT_ID,
pse.EXCEPTION_TYPE,
pse.EXCEPTION_ID,
pse.EXCEPTION_CODE,
pse.AVAILABILITY_CODE

FROM
PER_SCHEDULE_EXCEPTIONS pse

WHERE
pse.last_update_date BETWEEN NVL(:p_from_date, pse.last_update_date)
AND NVL(:p_to_date, pse.last_update_date)

And this is my output

My question is: how can I retrieve the full details of each exception?
For example, how can I identify which specific day is a public holiday ?

Howdy, Stranger!

Log In

To view full details, sign in.

Register

Don't have an account? Click here to get started!