Is there a way to track how many users have used the Mobile app? This will help us to know if we have to circulate the Mobile use with our users.
Release : 15.9.1
Following options are available:
SELECT a.url_short
,b.user_id
,COUNT(b.user_id) "Total Number of Times"
,c.FULL_NAME "Name"
FROM log_details a
,log_sessions b
,srm_resources c
WHERE a.session_cookie = b.token
AND a.URL_SHORT = 'odata/getTimeAppInitial'
AND c.user_id = b.user_id
GROUP BY a.url_short
,b.user_id
,c.FULL_NAME