In HP-ALM, how do I find all open defects of "project=conversion"?

StackOverflow https://stackoverflow.com/questions/23349248

  •  11-07-2023
  •  | 
  •  

سؤال

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).

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top