A new Flexera Community experience is coming on November 25th. Click here for more information.
know this is a old and not related question i am asking again here, but would like to know all catalog items created for last year and their details report.
could some one help me
Mar 01, 2022 10:57 PM - last edited on Apr 27, 2022 10:44 AM by jdempsey
The following query shoud get you headed in the right direction:
select CreatedOn, PackageTitle, PackageDesc from wd_webpackages where CreatedOn >= DATEADD(year,-1,GETDATE())
The WD_Webpackages table contains the majority of information about all of your catalog items.
Mar 02, 2022 12:08 PM
The WD_SiteToAdvert table should have details about the SCCM packages tied to catalog items. You should be able to join that table with your previous report (WD_WebPackages) to get the report you're looking for.
Apr 27, 2022 10:46 AM
The following query shoud get you headed in the right direction:
select CreatedOn, PackageTitle, PackageDesc from wd_webpackages where CreatedOn >= DATEADD(year,-1,GETDATE())
The WD_Webpackages table contains the majority of information about all of your catalog items.
Mar 02, 2022 12:08 PM
appreciate your quick response, finally i got one solution very quick.
Mar 02, 2022 09:00 PM
need another help please, we are trying to build a report with all catalog items in portal and their associate package id in SCCM
Apr 06, 2022 07:05 AM
The WD_SiteToAdvert table should have details about the SCCM packages tied to catalog items. You should be able to join that table with your previous report (WD_WebPackages) to get the report you're looking for.
Apr 27, 2022 10:46 AM