/* DOORS DXL – Simple Export example
*/
Stream myFile = write ("c:/temp/exportOutput.txt")
Object o
string myHeading, myObjectText, myID
for o in current Module do {
myID = myIDentifier(o)
myFile << myID "\t"
myHeading = o."Object Heading"
if (! null(myHeading)) {
myFile << number(o) " " myHeading "\n"
flush(myFile)
}
myObjectText = o."Object Text"
if (! null(myObjectText)) {
myFile << myObjectText "\n"
}
}
close(myFile)
DOORS DXL Scripting Examples – Simple Export
This post was published by Admin.
Email: admin@TheCloudStrap.Com
