Fetch idle PDMLink Users' list
Feb 11, 2014
09:06 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Feb 11, 2014
09:06 AM
Fetch idle PDMLink Users' list
I am required to fetch users' list who have not logged in to PDMLink system for 90 days. Will it be possible to fetch such report? If yes, please let me know the steps to fetch this report.
Thanks
M Pavundoss
Labels:
- Labels:
-
Other
9 REPLIES 9
Feb 11, 2014
09:50 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Feb 11, 2014
09:50 AM
Not sure of the how, but there is no direct report available.
You will need to get a list of who has logged in and compare it to a list of all users.
You will need to get a list of who has logged in and compare it to a list of all users.
Feb 11, 2014
09:57 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Feb 11, 2014
09:57 AM
You could parse the data from the PTC Windchill Usage tool.
Feb 11, 2014
10:10 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Feb 11, 2014
10:10 AM
When user login to Windchill login event is generated and OOTB that is stored in windchill DB. you can query on Windchill DB to get list of user who have not logged.
PFA attached sample QML/Report for getting list of user who have not logged in since 30 days. you can modify criteria as per requirment.
Hope this helps !!!
Thanks
Shreyas
Feb 11, 2014
10:11 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Feb 11, 2014
10:11 AM
Feb 11, 2014
01:18 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Feb 11, 2014
01:18 PM
This info is available here (pulls from auditrecord table):
[cid:image005.png@01CF270A.38AE58A0]
[cid:image006.png@01CF270A.38AE58A0]
Provided configAudit.xml is configured (as it is OTB) with “login” - true
[cid:image005.png@01CF270A.38AE58A0]
[cid:image006.png@01CF270A.38AE58A0]
Provided configAudit.xml is configured (as it is OTB) with “login” - true
Feb 12, 2014
09:49 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Feb 12, 2014
09:49 AM
Thank you for your suggestions. Your suggestions helped me to fetch needed report from the database.
Thanks
M Pavundoss
In Reply to Mike Lockwood:
This info is available here (pulls from auditrecord table):
[cid:image005.png@01CF270A.38AE58A0]
[cid:image006.png@01CF270A.38AE58A0]
Provided configAudit.xml is configured (as it is OTB) with “login” - true
Feb 12, 2014
10:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Feb 12, 2014
03:23 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Feb 12, 2014
03:23 PM
That query appears to find all logins for all users during the time
specified. In my case, to search over the last 90 days the report was 20k+
events. Is there a way to reduce it to remove duplicates?
Thanks,
Pete
specified. In my case, to search over the last 90 days the report was 20k+
events. Is there a way to reduce it to remove duplicates?
Thanks,
Pete
Feb 12, 2014
03:26 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Feb 12, 2014
03:26 PM
Probably this UI cannot - it runs a query without "latest" (SQL maximum). Not well-structured or scalable.
Likely have to use the direct database query suggested by others - or similar in a query builder report also suggested by others. We use a direct database query.
Likely have to use the direct database query suggested by others - or similar in a query builder report also suggested by others. We use a direct database query.
