Custom column to show current software package installed

Hello,

I am trying to add in a custom column on my device page where it displays the current installed software name. I haven’t been able to find the fragment path for this, or is it not supported?

If you’re looking for the fragment, do a query to get the device properties. The fragments will all be there. I know in my device page we can display any custom fragment we have, so I think it’s supported; the hard part for me was finding the fragment name. By picking a device and running the REST query Cumulocity API/inventory/get a specific managedObject yielded the info I needed.

2 Likes

David, this helped thanks! For anyone else looking for the fragment path:

c8y_SoftwareList[i].name

Where “i” is the software installed (if there are multiple, if not i=0)

2 Likes