We are facing an issue in getting a particular value from a field.
Issue Description :The QC field BG_DETECTED_IN_RCYC is declared as a number field but it has alphanumeric values like “SR WN Cycle3” stored in it.
When I try to retrieve the values using QC queries I am getting numbers instead of values.
When I directly export the Defect from Defect module I will get the correct value and when I run the below query from the analysis module I get some numbers.
SELECT
BUG.BG_BUG_ID, BUG.BG_PROJECT , BUG.BG_PRIORITY, BUG.BG_STATUS , BUG.BG_USER_10, BUG.BG_USER_05, BUG.BG_USER_02, BUG.BG_USER_09, BUG.BG_CLOSING_DATE, BUG.BG_DETECTION_DATE, BUG.BG_USER_11, BUG.BG_USER_06, BUG.BG_USER_15, BUG.BG_USER_12, BUG.BG_DETECTED_IN_RCYC, BUG.BG_CLOSING_VERSION, BUG.BG_CYCLE_ID, BG_USER_07 as Sub_Project
FROM
BUG
where BUG.BG_DETECTION_DATE <= '12/31/2013'