Questions tagged [dfc]

Documentum Foundation Class is the primary Java interface library for EMC's Documentum.

68 questions
6
votes
3 answers

Raw SQL in DFC (Documentum)

In DFC one can execute SQL directly (bypassing DQL) using the IDfSession.apiExec() method. The problem is that the method is marked as deprecated in the current (6.x, 7.x) versions of the DFC API. Here's some example code using the deprecated…
eivamu
  • 3,025
  • 1
  • 14
  • 20
6
votes
4 answers

DQL query to return all files in a Cabinet in Documentum?

I want to retrieve all the files from a cabinet (called 'Wombat Insurance Co'). Currently I am using this DQL query: select r_object_id, object_name from dm_document(all) where folder('/Wombat Insurance Co', descend); This is ok except it only…
Jason Pather
  • 1,127
  • 2
  • 12
  • 18
4
votes
2 answers

how to get document content using DFC in c#

I have documentum developer edition 6.6. I want to get document content (read content into stream) using DFC in c#. I have used following C#.net code IDfId id = collection.getId("r_object_id"); IDfDocument doc = (IDfDocument)…
khalid khan
  • 73
  • 2
  • 5
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…
3
votes
3 answers

What is the getQuery method for?

Documentum sample code is never deeply commented, so my question is: What does this line mean? IDfQuery query = DfcUtils.getClientX().getQuery();
enguerran
  • 3,193
  • 3
  • 26
  • 42
2
votes
1 answer

DQL to find attribute's table

We can always find a respective table attribute from a table by syntax(select * from table_name), is there way to do the vise versa I mean is there any way to find tables name with attribute name?
RAJ
  • 123
  • 5
  • 16
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
2 answers

Creating a folder with DFC (Documentum)

I'm facing a strange problem. All I want is to create a new folder with the DFC. But when I execute the code (JUnit or inside the Application) no folder is created and surprisingly no exception is thrown. So I guess the error is somewhere else. This…
Benjamin Brandmeier
  • 724
  • 1
  • 9
  • 19
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
0 answers

how to get access control lists for an object in documentum using dql query

I need the access control lists of an object in documentum by running the dql query and also does an object in documentum have only 1 access control list or multiple access control lists please help me I am new to documentum Thanks in advance
Akhil
  • 391
  • 3
  • 20
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
2
votes
1 answer

How to set host and port in full java without dmcl.ini

Using Documentum DFC, I would like to set up a docbase connection without using a dmcl.ini. How can I do such a thing?
enguerran
  • 3,193
  • 3
  • 26
  • 42
2
votes
2 answers

EMC Documentum DQL - How to delete repeating attribute

I have a few objects created on my database and I need to delete some of the repeating attributes related to them. The query I'm trying to run is: UPDATE gemp1_product objects REMOVE ingredients[1] WHERE (r_object_id = '08015abd8002cd68') But all I…
Rikku121
  • 2,536
  • 2
  • 23
  • 38
2
votes
2 answers

Jython with DFC Code

I am trying to work with IDfSysObjects in Documentum via jython, but I can't figure out how to call the methods appropriately from the interperter. The code below illustrates what I'd like to call with jython. String docId= getDocId(); IDfSysObject…
ionalchemist
  • 398
  • 2
  • 17
2
votes
1 answer

Creating DFC Client Objects is very slow

I would like to find out if anyone else is or has experienced this issue when using .Net & Documentum DFC. When using .Net to Communicate with Documentum at the point of creating the DFC Client objects, it takes about 30 seconds to execute. Here is…
1
2 3 4 5