I want to find
ALL OPEN (i.e, NOT(closed, Fixed, Pending Test Migration)) defects of Project = Conversion
Any tips? I realize HP ALM is very "niche"
If you want to find it using the HP ALM GUI simply add a Filter: Status[Open];Project["Conversion"]
.
If you want to find it using the HP ALM OTA API:
Set bugFactory = tdConnection.BugFactory
Set bugFilter = bugFactory.Filter
bugFilter.Filter("BG_STATUS") = "Open"
bugFilter.Filter("BG_PROJECT") = "Conversion"
Set bugs = bugFilter.NewList
See the HP ALM OTA API Reference (Objects BugFactory and TDFilter). See also the AP ALM Database Reference to get the right values to filter for (BG_STATUS and BG_PROJECT).