- Flexera Community
- :
- FlexNet Manager
- :
- FlexNet Manager Forum
- :
- Re: How do I create a report with Software titles with EoS dates and devices they are installed on?
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I want to create a report listing Software titles with EoS dates and devices it is installed on.
I got a query to report Software titles with EoS, but don't know how to include devices it is installed on.
SELECT
sto.Publisher, sto.SoftwareTitleName,
st.SupportedUntil,
st.ExtendedSupportUntil
FROM SoftwareTitleINfo sto
INNER JOIn SoftwareTitle st
ON St.SoftwareTitleID = sto.SoftwareTitleID
Where
sto.HasInstalls > 0
AND
(SupportedUntil <= '01/08/2050' Or
ExtendedSupportUntil <= '01/08/2050')
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello @GopalRaghvani,
You could use a JOIN to the InstalledSoftware table (contains SoftwareTitleIDs and ComplianceComputerIDs), then JOIN that to ComplianceComputer.
HTH,
Joseph
This thread has been automatically locked due to inactivity.
To continue the discussion, please start a new thread.
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello @GopalRaghvani,
You could use a JOIN to the InstalledSoftware table (contains SoftwareTitleIDs and ComplianceComputerIDs), then JOIN that to ComplianceComputer.
HTH,
Joseph
