Categories
- All Categories
- Oracle Analytics Learning Hub
- 30 Oracle Analytics Sharing Center
- 19 Oracle Analytics Lounge
- 238 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 & AI Challenge
- Find Partners
- For Partners
Last login of service account
Summary:
I would like to find when a particular service account last logged in either through UI or through Webservice or both in Oracle ERP Fusion. Is there any SQL query to run BIP report.
Version (include the version you are using, if applicable):
25C
Answers
-
Hi,
You should ask in the forum covering your Fusion ERP, because it's a data question and not a technical feature of Publisher.It is a parallel and independent forum, covering all the Fusion products, including their data sources (queries etc.) and analysis:
0 -
Can you try this SQL in BIP (if available in your data model):
SELECT
ul.USER_NAME, ul.EMAIL_ADDRESS, ul.START_DATE, lh.LOGIN_DATE, lh.LOGOUT_DATE, lh.SESSION_ID, lh.CLIENT_HOST_NAME, lh.CLIENT_IP_ADDRESS, lh.LOGIN_TYPE -- e.g., UI, WebService
FROM FND_USER ul
JOIN FND_LOGIN_HISTORY lh ON ul.USER_ID = lh.USER_ID
WHERE ul.USER_NAME = :SERVICE_ACCOUNT
0

