DOORS DXL Scripting Examples – Simple Export

/* 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
Scroll to top
error: Content is protected !!