A new Flexera Community experience is coming on November 25th. Click here for more information.
If the Application Installation Detail report is not populating the Last used date, this may be due to the configuration of the application's usage period. The Application Installation Detail only collects a Last used date if the date falls in the Usage Period window defined in the application's properties page. If the date does not fit in the usage period window, the installation is considered unused, and the Last used date will not be populated.
Use the below workaround to modify the ReportApplicationInstallationDetail stored procedure and include a left join on the InstalledSoftware table.
EXEC sp_helptext ReportApplicationInstallationDetail
LEFT JOIN dbo.SoftwareAccessMode sam
ON sam.InstalledSoftwareID = isw.InstalledSoftwareID
a. Modify theReportApplicationInstallationDetail stored procedure to include the following left join on the InstalledSoftware table:LEFT OUTER JOIN dbo.InstalledSoftware isw -- Check for installations
ON isw.ComplianceComputerID = cc.ComplianceComputerID -- Get all installed softwares
on Aug 10, 2023 10:37 AM - edited on Aug 10, 2023 10:53 AM by HollyM