Domanda

I am exporting a document that has the following version labels: "V1, CURRENT, 1.2"

But my exported XML document only includes this text: dctm:version_label="CURRENT".

Anyone know how I can export all of the version labels into the XML? I am using the following code:

IDfExportOperation exportOperation = clientx.getExportOperation();
exportOperation.setDestinationDirectory(exportDirectory);
IDfExportNode node = (IDfExportNode) exportOperation.add(myVirtDoc.asVirtualDocument("CURRENT",false));



exportOperation.setIncludeDCTMAttrsInXML(true);


node.setFormat("");
exportOperation.execute();

Thank you.

È stato utile?

Soluzione

There is no OOTB feature for this. I had to grab the attributes then open up the exported XML and stick them in.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top