I'm attempting to create a DXL column in DOORS which will display values from across the entire history of each object, going back through baselines. I have the following script, but it only shows values since the last baseline, and I haven't been able to figure out the correct syntax to loop through all of the existing baselines. Any help would be appreciated.
string thisAttribute = "Object Text"
for h in obj do {
if (h.type == modifyObject) {
if (h.attrName == thisAttribute) {
display (h.date "")
}
}
}
#Support#DOORS#EngineeringRequirementsManagement#Sustainability#SupportMigration