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.
Seeking Seeded Report for Active Users in Oracle Fusion
We need to generate a report that shows the number of active users in our Oracle fusion system. I came across the below link the Admin Reports navigation that provides some dashboards, but I am unable to find a specific seeded report that meets this requirement.
https://docs.oracle.com/en/cloud/saas/field-service/fasmr/t-number-of-active-users.html
Currently, I am utilizing the following SQL script to retrieve the necessary information:
CopyReplit
SELECT DISTINCT
pu.username AS USER_NAME,
papf.person_number AS EMPLOYEE_NUMBER,
ppn.first_name AS EMPLOYEE_FIRST_NAME,
ppn.last_name AS EMPLOYEE_LAST_NAME,
DECODE(pu.SUSPENDED, 'Y', 'Inactive User', 'N', 'Active User') AS USER_STATUS,
Tagged:
0