通过 DFC (Documentum) 导出时包括版本标签

发布于 2024-12-02 10:15:22 字数 508 浏览 1 评论 0原文

我正在导出具有以下版本标签的文档:“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暖伴 2024-12-09 10:15:22

对此没有 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文