Hi,
We can see a difference in Shortfall/Availability between the All License view which I assume is an OOB report and the Custom report we build.
Example:
In OOB report the Shortfall/Availability shows -5000 and In Custom Report, I can see it as 0.
I know there can be SQL query logic issues in the Custom report but is there any way to look at the Logic behind the All License report from the SQL developer?
Jan 23, 2023 07:16 AM - edited Jan 23, 2023 07:18 AM
Are you wanting to look directly in the database to see where data used to populate the All Licenses grid comes from?
I believe this is retrieved from the dbo.Grid_LicenseListModel view in the compliance database. For example:
SELECT *
FROM dbo.Grid_LicenseListModel
WHERE Name = 'Your License Name'
Feb 07, 2023 01:17 AM
Are you wanting to look directly in the database to see where data used to populate the All Licenses grid comes from?
I believe this is retrieved from the dbo.Grid_LicenseListModel view in the compliance database. For example:
SELECT *
FROM dbo.Grid_LicenseListModel
WHERE Name = 'Your License Name'
Feb 07, 2023 01:17 AM