`
文章列表
select r_object_id, attribute_name from dm_display_configwhere r_object_id in (select display_config from dm_scope_config where any scope_value = 'webtop' and r_object_id in(select scope_config from dmi_dd_type_info where type_name = 'ci_bp' and nls_key = 'en'))
As the title suggests, my last challenge was to launch Office applications from Sharepoint. This new customer wanted to use Sharepoint not only as a portal to find information but also to launch it's applications. I knew that Sharepoint was capable to launch the default Office applications like Word, ...
首先先执行DQL,执行完毕后可以调用下边的方法。 private String getSqlQuery() { String sqlResult = null; IDfCollection coll; IDfSession session = getDfSession(); coll = session.apply(null, "GET_LAST_SQL", null, null, null); if(coll.next()) sqlResult = coll.getString("result"); coll.close(); c ...
各位详见: http://www.cnblogs.com/mossdotnet/archive/2008/07/19/1246597.html
http://vsrr2020.blogspot.com/2008/02/how-to-enable-combined-dmcl-and-dfc.html 1. Make sure that you have added the following lines to dfc.properties file found in the documentum/config directory.## Specifies whether to enable or disable trace.#dfc.tracing.enabled = on## Specifies whether to record t ...

DQL汇总

1. DQL to create user create “dm_user” objectset client_capability=2,set default_folder=’<foldername>’,set home_docbase=’<docbasename>’,set mailto:user_address='a@abc.com',set user_os_domain=’<domain>’,set user_name=’<username>’,set user_os_name=’<username>’,set user_pr ...
query.setDQL("SELECT r_object_id, object_name, title FROM dm_cabinet");IDfCollection queryRsult = query.execute(session,DfQuery.READ_QUERY);while (queryRsult.next()){// Spin through the attributesfor (int i = 0; i < queryRsult.getAttrCount(); i++){IDfTypedObject typedObj = queryRsult.get ...
From:http://ajithprabhakar.wordpress.com/2008/01/24/registered-tables-in-documentum/ Registered tables are the tables that are present database which are registered in Documentum, so that it can be accessed using DQL. Basically Registered tables are used when the application needs to access data fro ...

Sample DQLs

These are few sample DQL’s that will give you some idea about some of the queries that you can build using Documentum Query Language. These examples are meant only to give you a head-start on the basic DQL syntax. For more information on DQL please refer to Content Server DQL Reference guide ( I wi ...

Documentum集合

http://www.dctmcontent.com/UCF/Forms/AllPages.aspx
最近做了全文检索功能在contentserver中,使用的是DQL的检索,发现DQL这个东西还真比较诡异,必须记录说明一下。 1.DQL中的全文检索主要是使用 SEARCH DOCUMENT CONTAINS 关键字,例如要搜索内容中包含'aaa'的,可以用 SELECT text,object_name,score,summary,r_object_id,r_object_type FROM dm_document SEARCH DOCUMENT CONTAINS 'aaa' WHERE (a_is_hidden = FALSE) 这条DQL中的text代表返回结果中该条记录是由那个 ...
Server or other client products) types start with dm, as described here: • dm_: (general) represents commonly used object types such as dm_document, which is generally used for storing documents. • dmr_: (read only) represents read-only object types such as dmr_content, which stores information abo ...
select a.r_object_id as workflow_id, a.object_name as workflow_name, b.name as performer,b.task_state , b.message as task_instruction from dm_workflow a, dmi_queue_item b where a.r_object_id = b.router_id and b.name =USER and b.task_state = 'acquired' and b.delete_flag =0  
java后台: public void switchLanguage(Link link,ArgumentList arg) { if(Locale.CHINA.getLanguage().equals(LocaleService.getLocale().getLanguage())) { LocaleService.setLocale(Locale.ENGLISH); }else { LocaleService.setLocale(Locale.CHINA); } this.setClien ...
webtop的tracing的默认配置文件:WEB-INF\classes\com\documentum\debug\TraceProp.properties设置com.documentum.web.common.Trace.SESSIONENABLEDBYDEFAULT=true和com.documentum.web.form.Trace.FORMINFOCOMMENTS=true就是我们经常使用的右键查看源文件中的一些注释信息。这样设置后就不用每次都运行tracing.jsp了。
Global site tag (gtag.js) - Google Analytics