A new Flexera Community experience is coming on November 18th, click here for more information.
There are 3 different ways to get the cost in App Portal.
The calculate/get the cost based on the Admin Settings. (AppPortal -> Settings -> CatalogManagement -> Open catalog Properties -> General -> Inventory tab -> "Use the cost of the inventory group".)
Please see the below screenshot:
You can execute the below query to get the cost data:
SELECT
WP.UseInventoryCost ,
wp.PackageID,
wp.PackageTitle,
(Case WP.UseInventoryCost WHEN 0 THEN ISNULL(WP.CatalogCost, 0) ELSE ISNULL(l.LicenseCost, 0) END) AS LicenseCost
FROM WD_WebPackages wp
INNER JOIN WD_License l ON wp.LicenseID_FK = l.LicenseID
Further to the above query, the cost gets updated based on Currency as well (get calculated based on currency settings and the above query result), as well as there is a way to manually override the cost based on country too (WD_Package_Cost). See the below screenshot:
Note: If FNMS is configured in App Broker, the SCCM inventory Group option won't available in the catalog properties on UI. Furthermore, it is necessary to have a "legacy" App Portal license in order to configure SCCM inventory.
on Jun 24, 2020 12:54 AM - edited on Jun 30, 2020 03:18 PM by CharlesW