Documentum
iteye_2233
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
WDK中关键词"notdefined"的含义
关键词“notdefined”用来确定当前的action或component在当前的scope(即r_object_type)中是否有效,为true则无效。用来屏蔽action或component从父类型向当前子类型的应用。开发指导文档中有如下一段话:1.About Component:notdefined: Configurations can hide elements that ar...原创 2010-09-22 11:29:39 · 443 阅读 · 0 评论 -
Solution for Webtop Exception: java.lang.NullPointerException
Got below exception when login webtop or even open document home page after someone cleaned cache on webtop's tomcat server: class java.lang.NullPointerException After closing this window, p...原创 2012-02-05 14:51:17 · 239 阅读 · 0 评论 -
How do you rename a custom attribute?
The key point of this operation is keep the values stored in this attribute. You can rename the custom attribute using the following steps:- Create the custom attribute with the new name...原创 2012-02-02 10:44:54 · 168 阅读 · 0 评论 -
Documentum/DQL: alter type to add/drop an attribute's value assistance etc.
Sample:ALTER TYPE hrd_document MODIFY (hrd_team_name (VALUE ASSISTANCE IS LIST ( 'global', 'cnb_emea', 'con_mgt', 'comm_kit', 'policies', 'hr_empl_rels' )IS COMPLETE));ALTER TYPE...原创 2012-02-02 10:18:01 · 210 阅读 · 0 评论 -
DQL for managing scope_config of a type
When publish data dictionary of a custom type(publish_dd,c,,custom_type,,T), I get below error message:[DM_DATA_DICT_E_COULD_NOT_PUBLISH_DATA_DICTIONARY_INFORMATION]error: "The Data Dictionary was...原创 2012-01-18 17:52:41 · 192 阅读 · 0 评论 -
Install oracle-10.2.0.3 and Documentum-6.5
The whole process is installing oracle 10.2.0.1 first, updating it to 10.2.0.3, then installing documentumYou can follow this article step by step:http://www.itpub.net/viewthread.php?tid=80693...2010-08-02 10:44:45 · 152 阅读 · 0 评论 -
select clause and i_is_deleted
1.select clause:SELECT [ALL|DISTINCT] columnsThe optional ALL and DISTINCT keywords determine whether the SELECT statement returns duplicate rows. ALL returns all rows, including any duplicates. D...原创 2010-08-02 10:39:37 · 169 阅读 · 0 评论 -
delete a custom filetype using sql
The normal way to delete a custom file type is(dql):delete (all) object;drop type ;if when excuting the above statement,an error which says"Attempt to remove type , which still has object...2010-08-02 10:37:37 · 132 阅读 · 0 评论 -
ERROR: DM_OBJ_MGR_E_VERSION_MISMATCH
Solution: fetchFor API: fetch,c,lFor DFC: IDfPersistentObject.fetch(null);原创 2011-01-19 03:08:47 · 252 阅读 · 0 评论 -
DQL关键字 ROW_BASED
ROW_BASED关键字用于以一行显示一个repeating attribute的一个索引位的值的方式显示DQL语句的返回结果。如果不加此关键字,一行的返回结果一般为一个对象,加此关键字后一个对象会出现多行,总行数为被select的所有repeating attributes中拥有最多值的attribute的值的个数,并且在同一行的各个repeating attributes的值的索引一样。...原创 2010-10-20 16:11:49 · 175 阅读 · 0 评论 -
Documentum/DQL: Default sort order in search results of dql
If I ran a select DQL statement and there is no ORDER BY clause included, what is the default sort order for basic search? Trace the query in the database - if there is no order by then the database i...原创 2011-07-07 12:03:17 · 173 阅读 · 0 评论 -
SCS: Method dm_webcache_publish return value was 1
Get below error message:Thu Jun 30 04:19:46 2011 539287: 103150[103150] TRACE LAUNCH: ./dmbasic -f./dm_event_sender_xxx.ebs -eMail -- "xxx" "nulldate" "Job_Failure" "[ERROR] [LAUNCHER 103145] Det...原创 2011-06-30 18:57:52 · 232 阅读 · 0 评论 -
Documentum/DQL: alter type to add/mofify an attribute's search operators
Two sample dql statements:ALTER TYPE MODIFY (SET default_search_op = 1) PUBLISH;ALTER TYPE ADD (SET label_text='', set default_search_op = 1, truncate allowed_search_ops, set allowed_search_o...原创 2011-06-20 21:01:09 · 234 阅读 · 0 评论 -
How to prevent Webtop from replacing the ID type attribute's value
SymptomsWebtop would display value for custom attribute to replace from r_object_id to object name corresponding to the object ID. CauseThis is the default behavior of Webtop, it just ...原创 2012-03-16 17:12:36 · 151 阅读 · 0 评论
分享