Hi,
I have written the below query to filter the basic defect details for a release, the release/cycle id & name in which the defect was detected and then the release /cycle id & name in which the defect is planned to be fixed( e.g target release id & name and target cycle id & name).
But my issue is for some of the defects the 'Target Release Name' & 'Target Cycle Name' for the defects have the same value as the 'Detected in Release' and 'Detected in Cycle'.
SELECT a.BG_BUG_ID as 'Defect-Id',
a.BG_SEVERITY as 'Severity',
a.BG_STATUS as 'Status',
a.BG_SUMMARY as 'Summary',
a.BG_DETECTION_DATE as 'Detected on Date',
a.BG_USER_05 as 'Resolution',
a.BG_USER_01 as'Product',
a.BG_DETECTED_IN_REL as 'Detected Release Id'
b.REL_NAME as 'Detected in Release Name',
c.RCYC_NAME as 'Detected in Cycle Name',
a.BG_DETECTION_VERSION as 'Detected in Version',
a.BG_TARGET_REL as 'Target Release Id'
b.REL_NAME as 'Target Release',
c.RCYC_NAME as 'Target Cycle'
from BUG a,RELEASES b,RELEASE_CYCLES c
where (a.BG_DETECTED_IN_RCYC = c.RCYC_ID AND c.RCYC_PARENT_ID = b.REL_ID AND b.REL_NAME Like ('MMIG %'))
For defect ids 2887, 2955, 2953 the target release & cycle name are not correct, though I can see the difference in the respective release id's.
can you please help me to correct the issue.
Thanks,
Bharath S