- Flexera Community
- :
- FlexNet Manager
- :
- FlexNet Manager Forum
- :
- EOL/EOS reports
- 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
Is there a way to pull a report from FNMS that shows EOL or EOS for applications if it is populated? I could not find those fields when creating a new report.
If not, can someone provide the SQL statement that would be needed to pull it from the actual database?
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@kathy_allen - If you go into the Column Chooser in the Installed Applications view, you will find the EOL dates available to be added to the view. You can then save this off as a Custom Management View.
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
@kathy_allen - If you go into the Column Chooser in the Installed Applications view, you will find the EOL dates available to be added to the view. You can then save this off as a Custom Management View.
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Something like this?
SELECT
st.FullName
,st.SupportedUntil
,st.ExtendedSupportUntil
,st.EndOfLifeDate
FROM SoftwareTitle st
WHERE
st.SupportedUntil IS NOT NULL
OR st.ExtendedSupportUntil IS NOT NULL
OR st.EndOfLifeDate IS NOT NULL
ORDER BY st.FullName
