如何(以编程方式)识别情况“对象中的属性值已更改”?
我还是 Documentum 的初学者(我现在只有 Documentum Developer Edition);因此,经验丰富的 Documentum 开发人员的建议将会非常有帮助。我需要创建一个程序(在 .NET 上),该程序将监视指定的 Documentum Content Server,查找“某种类型的对象中的属性 XXX 已将其值更改为 YYY”的情况。
更详细的示例:我的程序监视 dm_document 对象以检测“a_status 已将其值更改为 ToBeExportedOutside”的情况。此后,程序检索文档,然后将其导出到另一个文档管理系统。
另一个例子:我的程序监视 dm_document 对象以检测“文档已在其附加的生命周期中升级为状态 ToBeExportedOutside”的情况。此后,程序检索文档,然后将其导出到另一个文档管理系统。
问题是:如何使用 DFS 更好地做到这一点?使用 DFS、BFO 还是什么?
I am beginner in Documentum yet (all I have now is Documentum Developer Edition); so advice from an experienced Documentum developer will be very helpful. I need to create a program (on .NET) that will be monitoring specified Documentum Content Server looking for situation ‘property XXX in an object of certain type has changed its value to YYY’.
More detailed example: my program monitors dm_document objects to detect situation ‘a_status has changed its value to ToBeExportedOutside’. After this the program retrieves the document and then exports it to another document management system.
Another example: my program monitors dm_document objects to detect situation ‘the document has been promoted to state ToBeExportedOutside in lifecycle it is attached to’. After this the program retrieves the document and then exports it to another document management system.
The question is: how it is better to do it using DFS? Using DFS, or BFOs, or what?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
情况 1:
监视器 a_status 已使用 DQL 将其值更改为“ToBeExportedOutside”:
情况 2:
将内容或文档从旧 dms 导出到新 dms:
首先,您有通过继承超类型在新的 dms 中创建新的自定义类型。
然后使用 api setfile、会话、newdms objectID、位置或路径。然后将
dm_document
中的属性的a_status
更改为在旧 dms 中导出已完成。case 1 :
Moniotor a_status has changed its value to 'ToBeExportedOutside' by using the DQL:
case 2 :
Export the content or document from old dms to new dms:
first you have to create a new custom type in new dms by inherit the super types.
Then use api setfile, session, newdms objectID, location or path. And then change the
a_status
to export completed in old dms for the attribute indm_document
.听起来一个简单的查询就可以解决问题。
安排您的程序定期运行(可能作为一种方法)。当它启动时,让它找到以下选择的工作:
选择object_id、r_modify_date
来自 dm_document(全部)
其中 a_status = 'ToBeExportedOutside'
和 r_modify_date >日期('01/01/2000')
order by r_modify_date
导出并保存最后使用的 r_modify_date。 (稍后您将使用该日期来代替示例中的硬编码“01/01/2000”日期。)如果在没有创建新版本的情况下更改了文档,您将希望程序更改 a_status 以标记导出完成。
您可以使用 DFS 完成这一切。但是,我还是老派,仍然使用 DFC。
It sounds like a simple query might do the trick.
Schedule your program to run periodically (possibly as a method). When it starts, have it find work with a select along the lines of:
select object_id, r_modify_date
from dm_document(all)
where a_status = 'ToBeExportedOutside'
and r_modify_date > date('01/01/2000')
order by r_modify_date
Do your export and save the last r_modify_date used. (You'll use that date later in place of the hard-coded '01/01/2000' date in the example.) If documents are changed without creating a new version, you'll want your program to change a_status to mark the export complete.
You could likely do all this with DFS. But, I'm old school, and still using DFC.