i'm using PFM module of DOORS. I have to write to a file some information from a configuration in PFM.
I want all the paramaters with name, value and unit. The following is the code i tried, but couldn't get all the paramters
DxlObject paramdxl = null
DxlObject comp = CONF_getCompVersion(node)
DxlObject progV = CONF_getUsingProgVersion (comp)
param = CONF_getAllParams(comp, progV)
for paramdxl in param do{
string name1 = paramdxl->"name"
string unit1 = paramdxl->"unit"
string value1 = ""
string value2 = ""
string name2 = ""
for value1 in paramdxl->"values" do{
}
print "name: "name1 " value : " value1 " unit: " unit1 "\n"
}
According to the PFM API, values of parameter is contained in Skip list. But value1 contains ''Standard layout'' instead of the value whereas the other values (name and unit) are correct.
Thank you for your help.