通过 DFC (Documentum) 导出时包括版本标签
我正在导出具有以下版本标签的文档:“V1,CURRENT,1.2”
但我导出的 XML 文档仅包含此文本:dctm:version_label =“CURRENT”。
有人知道如何将所有版本标签导出到 XML 中吗?我正在使用以下代码:
IDfExportOperation exportOperation = clientx.getExportOperation();
exportOperation.setDestinationDirectory(exportDirectory);
IDfExportNode node = (IDfExportNode) exportOperation.add(myVirtDoc.asVirtualDocument("CURRENT",false));
exportOperation.setIncludeDCTMAttrsInXML(true);
node.setFormat("");
exportOperation.execute();
谢谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对此没有 OOTB 功能。我必须获取属性,然后打开导出的 XML 并将它们粘贴进去。
There is no OOTB feature for this. I had to grab the attributes then open up the exported XML and stick them in.