Example
In this example, we use letters as IDs to make it easier to follow:
Assume we have 4 trackers, their IDs are: A,B,C,D
A has 2 items: A1,A2
B has 3 items: B1,B2,B3
C has 5 items: C1,C2,C3,C4,C5
D has 6 items: D1,D2,D3,D4,D5,D6
Associations:
B1,B2 are derived from A1 (associations A1->B1, A1->B2)
B3 is derived from A2 (association A2->B3)
C1,C2 are derived from B1 (associations B1->C1, B1->C2)
C3,C4 are derived from B2 (associations B2->C3, B2->C4)
C5 is derived from B3 (association B3->C5)
D1,D2 are derived from C1 (associations C1->D1, C1->D2)
D3 is derived from C2 (association C2->D3)
D4 is derived from C3 (association C3->D4)
D5 is derived from C4 (association C4->D5)
D6 is derived from C5 (association C5->D6)
[{RiskTraceabilityMatrix trackers='A,B,C(C5),D'}]
will generate this matrix:
A1
B1
C1
D1
D2
C2
D3
B2
C3
D4
C4
D5
A2
B3
Was this helpful?