Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
elifsena
Contributor
Contributor

Show users last login date

Hi community,

I'm an intern so this whole qliksense is new for me 🙂

I'm currently using qmc screen for giving report allocations and licenses. But i have limited qliksense license, so if an user didn't login in last 3 months i'll delete their license and give it to another user that uses qliksense more effectively. In this case, i want to see users last login date that have analyzer allocations license. How can i do that? 

 

Thank you for your help!

Labels (4)
1 Solution

Accepted Solutions
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

You should go to Qlik Sense  -> QMC -> License Usage Summary -> and click on the Analyzer Access Allocation and there you should use one field against each user license named "Last Used".

 

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!

View solution in original post

5 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

You should go to Qlik Sense  -> QMC -> License Usage Summary -> and click on the Analyzer Access Allocation and there you should use one field against each user license named "Last Used".

 

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
elifsena
Contributor
Contributor
Author

Thank you very much Kaushik. You helped a lot 🙂 

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

My pleasure.

Please mark the post as "Answered" 

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
SonOfJeffGoldblum
Contributor III
Contributor III

if you have any monitor rest license user tables setup as data connections

 

LIB CONNECT TO 'monitor_apps_REST_license_user';

RestConnectorMasterTable:
SQL SELECT
"id" AS "id_u0",
"createdDate",
"modifiedDate",
"modifiedByUserName",
"lastUsed",
"quarantined",
"quarantineEnd",
"deletedUserId",
"deletedUserDirectory",
"privileges" AS "privileges_u0",
"schemaPath",
"__KEY_root"
FROM JSON (wrap on) "root" PK "__KEY_root";

[root]:
LOAD [id_u0] AS [id_u0],
[createdDate],
[modifiedDate],
[modifiedByUserName],
[lastUsed],
[quarantined],
[quarantineEnd],
[deletedUserId],
[deletedUserDirectory],
[privileges_u0] AS [privileges_u0],
[schemaPath],
[__KEY_root]
RESIDENT RestConnectorMasterTable
WHERE NOT IsNull([__KEY_root]);


DROP TABLE RestConnectorMasterTable;

Everything not saved will be lost
— Nintendo Quit screen message
Susovan1
Contributor
Contributor

How Can I check this for qlik sense saas?