-
Bug
-
Resolution: Fixed
-
Low
-
11.6.0
-
1
-
Severity 2 - Major
-
No
Issue Summary
There are discrepancies between the content displayed in the Jira Align (JA) User Interface (UI) and the Enterprise Insights (EI). Specifically, some milestones appear in one system but not in the other. This inconsistency is due to the incorrect referencing of tables in the data retrieval process, where old milestone data (tblLifecycleDel) is being selected instead of new milestone data (tblEpicMilestone), and the relational table (tblLifecycleDelToEpicMilestone) is not being utilized.
Steps to Reproduce
- Query the tblLifecycleDel and tblEpicMilestone tables in JA's RDS using the following SQL using the same EpicId for both queries:
-
SELECT * FROM tblEpicMilestone WHERE EpicId = XXXX
-
SELECT * FROM tblLifecycleDel WHERE EpicID = XXX
- Compare the results from the above queries to the data displayed in the JA UI and Enterprise Insights (EI).
Expected Results
- The data displayed in the Jira Align UI should match exactly with the data in Enterprise Insights.
- Only new milestone data from tblEpicMilestone should be referenced, ensuring consistency across both platforms.
- The relational table tblLifecycleDelToEpicMilestone should be used to maintain correct relationships between old and new milestones, ensuring data consistency.
Actual Results
- Discrepancies are observed between the data in Jira Align UI and Enterprise Insights.
- Some milestones appear in one system but not in the other due to the selection of old milestone data from tblLifecycleDel.
- The relational table tblLifecycleDelToEpicMilestone is not being utilized, leading to potential mismatches in milestone IDs and data inconsistencies.
Workaround
Currently, there is no known workaround for this behavior. A workaround will be added here when available
- resolves
-
ALIGNSP-27269 Loading...
-
PS-175111 Loading...