Questions tagged [documentum6.5]

Documentum6.5 refers to the version 6.5 and above of EMC´s Documentum enterprise content management platform. Documentum refers to the product well as the name of the software company that originally developed the technology.

64 questions
4
votes
2 answers

DQL query to find active users count

Can someone suggest me a DQL query to find the count of active users in a repository in documentum. Below is the query I am using but it is not giving correct results, can someone suggest? select count(user_name) from dm_user u , dm_group g where…
4
votes
3 answers

Pros and Cons of DFC and DFS?

I am new to Documentum, I have to upgrade one code from Documentum foundation class to Documentum Foundation Services. Can someone provide the pros and cons of each, and good source of information to get started with it. btw, I am writing code in…
Mutant
  • 3,663
  • 4
  • 33
  • 53
3
votes
0 answers

Documentum error : [DM_SESSION_E_RPC_ERROR]

I am trying to get the content of all the documents (current version) from a documentum source using the following code IDfSysObject document = (IDfSysObject) session.getObject(new DfId(eachFileMetadata.get(some document…
3
votes
2 answers

disable full-text search for webtop simple search component

In the simple search component in webtop, how do you disable full text search and just use the database? I would like to keep the advanced search searching full text. I understand that fulltext search can be disabled comepletely in the…
Ayrad
  • 3,996
  • 8
  • 45
  • 86
3
votes
3 answers

How to checkin a file with a new updated file by DFC code in Documentum

I am new to Documentum DFC and I write a code using DFC API to check out a document and it worked properly. But now I want to check in the same file with a new file that is present in my local pc's drive with. I have tried to search it but didn't…
2
votes
1 answer

How can I connect to Documentum with Emc.Documentum.FS.Runtime using C# without the app.config for the ModuleInfo tags?

Sample code using the app.config: ContextFactory contextFactory = ContextFactory.Instance; IServiceContext serviceContext = contextFactory.NewContext(); app.config section I'd like to set in code instead of having the API read it…
2
votes
1 answer

Include Version Labels when exporting via DFC (Documentum)

I am exporting a document that has the following version labels: "V1, CURRENT, 1.2" But my exported XML document only includes this text: dctm:version_label="CURRENT". Anyone know how I can export all of the version labels into the XML? I am using…
joe
  • 16,988
  • 36
  • 94
  • 131
2
votes
1 answer

How to get the children of Virtual Documents in Documentum

I am trying to get the children of a particular virtual document by using the query below select * from dm_document in document ID('virtual document id') descend with any r_version_label='CURRENT' I am able to get the children for a particular…
2
votes
1 answer

Documentum error : [DM_STORAGE_E_NOT_ACCESSIBLE]

I am trying to get the content of all the documents (current version) from a documentum source using the following code IDfSysObject document = (IDfSysObject) session.getObject(new DfId(eachFileMetadata.get(some document…
2
votes
0 answers

Documentum error : [DFC_OBJPROTO_BAD_NUMBER_FORMAT]

I am trying to get the content of all the documents (current version) from a documentum source using the following code IDfSysObject document = (IDfSysObject) session.getObject(new DfId(eachFileMetadata.get(some document…
2
votes
0 answers

Documentum error :[DM_STORAGE_E_BAD_TICKET]

I am trying to get the content of all the documents (current version) from a documentum source using the following code IDfSysObject document = (IDfSysObject) session.getObject(new DfId(eachFileMetadata.get(some document…
2
votes
0 answers

How to get the content of a document in documentum

I am new to documentum,can anyone suggest me how to get the content of a document in documentum. I am using the following code document = (IDfSysObject) session.getObject(new DfId("some document id")); document.getContent(); I am getting the…
Akhil
  • 391
  • 3
  • 20
2
votes
2 answers

dm_folder_r is not registered or you do not have access to it in documentum

I am a newbie to documentum and i am trying to run the following query: select distinct A.*,A.i_chronicle_id,A.r_full_content_size,B.r_folder_path,B.r_object_id as folder_id from dm_document A, dm_folder_r B where any A.i_folder_id = B.r_object_id…
Akhil
  • 391
  • 3
  • 20
2
votes
1 answer

Error while running documentum code

I am getting an error while running the documentum code at: config.setString("primary_host", docbroker); in the below code: IDfClient client = DfClient.getLocalClient(); // getting the config object of local client IDfTypedObject config =…
2
votes
2 answers

HTTP Status 500 - Error instantiating servlet class com.Model

I created a Dynamic Web Project. I have Tomcat 6.0 installed to run it. I'm trying to create web interface using DFC and it will connect to docbases and run some query.. When I'm trying to run this code, I'm getting the below mentioned error. Since…
Zeus07
  • 168
  • 1
  • 5
  • 17
1
2 3 4 5