Hello,
I'm having trouble with a defect query in ALM 11. We certify vendors to be able to access our central database and I'm trying to generate a defect report that shows all their defects as reported by our Cert QA team. The query below works great except our team wants it to show the actual descriptions of the Detected_in_Cycle and Fixed_in_Cycle values, instead of their numeric values. (We ding the vendors based on how many rework cycles are required.) I can get this in a filtered report in the Defects module, but the boss wants it as a query. Any advise would be greatly appreciated.
SELECT
BUG.BG_USER_09 as Test_Phase,
BUG.BG_USER_05 as Vendor_Partner,
BUG.BG_BUG_ID as Defect_ID,
BUG.BG_STATUS as Status,
BUG.BG_PRIORITY as Priority,
BUG.BG_SEVERITY as Severity,
BUG.BG_DETECTION_DATE as Detected_on_Date,
BUG.BG_DETECTED_IN_RCYC as Detected_in_Cycle,
BUG.BG_USER_06 as Detected_In_Version,
BUG.BG_SUMMARY as Summary,
BUG.BG_USER_07 as Fixed_in_Version,
BUG.BG_TARGET_RCYC as Fixed_in_Cycle,
BUG.BG_DETECTED_BY as Detected_By,
BUG.BG_VTS as Last_Modified_Date,
BUG.BG_USER_02 as Reference_#,
BUG.BG_RESPONSIBLE as Assigned_To,
BUG.BG_REPRODUCIBLE as Reproducible,
BUG.BG_USER_04 as Resolution
FROM BUG
Where BUG.BG_USER_09 = 'Production'
and BUG.BG_USER_03 = 'PMS'
Order by BUG.BG_BUG_ID
Warm regards,
KJ