DQL 从 DRL 获取 r_object_id

发布于 2024-09-24 14:59:36 字数 243 浏览 1 评论 0原文

我有这样的情况。 我从 documentum 中签出了一个文件(文件是 dita-map )。文件引用了存储库中的另一个文件。 DRL 为 dctm://MILLENNIUM/0500006480003b2e?DMS_OBJECT_SPEC=RELATION_ID。 由此,我假设 0500006480003b2e 是关系 ID。如果是这样,我如何获取它的 ObjectID 。

我需要子对象的对象 ID 才能单独签出该文档。

提前致谢。

I have a situation like this.
I checked out a file from documentum (File is a dita-map ). File has a reference to another file in the repository.
DRL is dctm://MILLENNIUM/0500006480003b2e?DMS_OBJECT_SPEC=RELATION_ID.
From this, I assume that 0500006480003b2e is the relation ID. If so how do I get its ObjectID .

I need the object ID of the child in order to checkout that document separately.

Thanks in Advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

回梦 2024-10-01 14:59:36

假设你的假设是正确的并且假设我的记忆是正确的

select child_id, child_label, permanent_link from dm_relation 
where r_object_id = ID('0500006480003b2e')

如果 permanent_link 为 TRUE 那么 child_id 是文档的 i_chronicle_id 并且 child_label 用于区分版本。

如果 permanent_link 为 FALSE,则 child_id 是文档的 r_object_id。

更多详细信息:Documentum 对象关系

Assuming your assumptions are correct and assuming my memory is correct

select child_id, child_label, permanent_link from dm_relation 
where r_object_id = ID('0500006480003b2e')

If permanent_link is TRUE then the child_id is the document's i_chronicle_id and the child_label is used to differentiate the versions.

If permanent_link is FALSE the the child_id is the document's r_object_id.

More details: Documentum Object Relationships

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