A new Flexera Community experience is coming on November 18th, click here for more information.

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Looking for table/view/SP behind Inventory Device Properties->Evidence->Installer evidence view

Hi there, 

Can anyone point me to the place in the DB where the below data is stored?
2024-11-06 10_59_41-Window.png

 



(1) Solution
ChrisG
By Community Manager Community Manager
Community Manager

Try a query like the following:

SELECT ie.*
FROM dbo.ComplianceComputer cc
    CROSS APPLY dbo.Grid_ComputerInstallerEvidenceListModelByComputer(cc.ComplianceComputerID, NULL) ie
WHERE cc.ComputerName = 'xxx37583'

Note that this query will work with current FlexNet Manager Suite releases, but uses a database function that may change without notice in future releases.

(Did my reply solve the question? Click "ACCEPT AS SOLUTION" to help others find answers faster. Liked something? Click "KUDO". Anything expressed here is my own view and not necessarily that of my employer, Flexera.)

View solution in original post

(2) Replies
ChrisG
By Community Manager Community Manager
Community Manager

Try a query like the following:

SELECT ie.*
FROM dbo.ComplianceComputer cc
    CROSS APPLY dbo.Grid_ComputerInstallerEvidenceListModelByComputer(cc.ComplianceComputerID, NULL) ie
WHERE cc.ComputerName = 'xxx37583'

Note that this query will work with current FlexNet Manager Suite releases, but uses a database function that may change without notice in future releases.

(Did my reply solve the question? Click "ACCEPT AS SOLUTION" to help others find answers faster. Liked something? Click "KUDO". Anything expressed here is my own view and not necessarily that of my employer, Flexera.)

You da man! Really appreciate it, been looking for this for half a day yesterday!