Identifying Users that Still Access NetSuite.com
You can identify which users are still accessing the outdated NetSuite.com data source. There are two different ways:
Using SuiteAnalytics Workbook
When you work with SuiteAnalytics Workbook, you can use the Connect Login Audit root record type to create a new dataset and identify which users are still using the outdated NetSuite.com data source. Select the fields Data Source, Date, and Email Address, and filter Data Source by "NetSuite.com." See as an example the following screenshot.
For information about how you can visualize this data in SuiteAnalytics Workbook, see Creating a Workbook.
Using SuiteAnalytics Connect
When you work with SuiteAnalytics Connect, you can run a query using the ConnectLoginAudit record to identify which users are still using the outdated NetSuite.com data source. The following example shows a query that returns which users accessed the outdated NetSuite.com data source during the last 15 days, and how many times they accessed it.
SELECT emailAddress, count(*) FROM ConnectLoginAudit
WHERE date > sysdate - 15
AND dataSource = 'NetSuite.com'
GROUP BY emailAddress
ORDER BY emailAddress