Monday, February 6, 2012 7:27

Posts Tagged ‘Documentum’

Update the r_modifier of the document

Thursday, October 13, 2011 22:50

Sometimes you may want to specify the user name for the r_modifier of the document (or specify a value for the attribute r_modify_date). These two attributes are updated automatically with the save API. As it turns out, any time the save API is called against an object, the r_modify_date and r_modifier ...

This was posted under category: Documentum  |  Read Full Story  |  0 Comments

Leave my XML file alone in Documentum

Friday, May 13, 2011 1:20

When an XML document is imported or checked in to the Docbase, there is an algorithm to determine which XML applications apply. There are three ways to turn off XML validation while importing or checking in XML files: 1. To permanently turn off XML validation in your repository modify the "format_class" attribute ...

This was posted under category: Documentum  |  Read Full Story  |  0 Comments

Subscriptions of documents in the Documentum Webtop

Thursday, March 17, 2011 2:00

Subscribing to a document (object) in Webtop allows you to have immediate access to it without having to navigate to its location.  In practice, a subscription is a shortcut to an object.  Have you ever wondered how subscriptions work?  Simply, subscriptions are relationship objects (dm_relation) that ...

This was posted under category: Documentum  |  Read Full Story  |  0 Comments

Don’t update the dfcfull.properties

Wednesday, March 16, 2011 0:17

Why changed value in dfcfull.properties does not work? Properties set in dfcfull.properties files are the default used. To change those value copy the property from the dfcfull.properties file and paste into the dfc.properties file. Change the property value there will take effect. NOTE: Some settings in this file such as ...

This was posted under category: Documentum  |  Read Full Story  |  1 Comment

Documentum – Get the account information of database

Tuesday, March 15, 2011 2:23

Sometimes we need to connect the backend database for docbase. How to get it? 1. Find the server.ini.  Usually it is located under $DCTM_DBA/config/<docbase name> 2. Find those database related items in the server.ini. For example: database_conn = ornipoint.ukoom.com database_owner = ornipoint database_password_file = /ukoom/dba/config/ornipoint/dbpasswd.txt service = ornipoint 3. Decrypt the encoded password in the 'database_password_file' (e.g. ...

This was posted under category: Documentum  |  Read Full Story  |  0 Comments

The conflict between ANT and Documentum Application Builder

Wednesday, December 8, 2010 10:13

After downloading a latest version of ANT - 1.8.1 and set up the PATH and ANT_HOME, it returns me '1.6.1 version' when executing the command 'ant -version'. What happened?? That's the ant version from Documentum Application Builder (DAB)!!!!  The path - 'C:\Program Files\Documentum\Shared' will be added into system variable - 'PATH' when ...

This was posted under category: Documentum  |  Read Full Story  |  2 Comments

Check whether the document is in any workflows in Documentum

Wednesday, December 8, 2010 9:46

Many guys asked the question - how could we check if the document is in workflow Just a simple DQL is needed:  select r_workflow_id from dmi_package where any r_component_id='<document id>' Enjoy yourself please.

This was posted under category: Documentum  |  Read Full Story  |  0 Comments

When will the document become immutable in Documentum?

Tuesday, December 7, 2010 12:26

When a document is immutable, we cannot update it. Of course we can set the immutable to false back and update the document and  set immutable to true again, we usually do this if we want to update an immutable document. And When will the document become immutable in Documentum? Below is the ...

This was posted under category: Documentum  |  Read Full Story  |  0 Comments

Register table issue caused by using wrong column type in SQL

Tuesday, December 7, 2010 11:54

Wow, how long the title is! :) I came across one strange issue today (actually I found this last Friday, but you know weekend coming, hehehe). When using the update DQL to fill up one new column in the registered table, there are always lots of blanks appended. The root cause after doing ...

This was posted under category: Documentum, Oracle  |  Read Full Story  |  0 Comments

Check in v.s. Save

Sunday, May 2, 2010 21:53

Webtop lets you check in a document as the same (existing) version. However, when you do this the Content Server never sees a checkin call or event. Webtop simply sets the new file as content, updates any changed attributes, and saves the object. So a dm_save event ...

This was posted under category: Documentum  |  Read Full Story  |  0 Comments