Documentum Foundation Class is the primary Java interface library for EMC's Documentum.
Questions tagged [dfc]
68 questions
2
votes
1 answer
How do you move **all** versions of files from one folder to another in Documentum using DFC
This piece of code moves all current versions of files from one folder to another but leaves all older versions unmoved. (Context is java code of DFC accessing Documentum.)
String strObjId = versionColl.getString("r_object_id");
…

Regmi
- 2,658
- 4
- 24
- 32
2
votes
2 answers
EMC Documentum: Get previous version of IDfSysObject
If we use IDfId checkin(boolean keepLock,
String versionLabels)
throws DfException method, we get new version of IDfSysObject. How can I remove the latest version and get back to the previous version?

Yegoshin Maxim
- 872
- 2
- 21
- 54
1
vote
3 answers
Documentum user creation using Active Directory
Is there any way that we can programatically create a Documentum user by using Active Directory information? (I have very little knowledge on ADT and know that it stores user info thats all.)

RAJ
- 123
- 5
- 16
1
vote
2 answers
How to create multiple users in Documentum
Is there any way to create 30+ user with same groups and ACL name in one shot?
I have tried using DQL and make script, but even that doesn't run in one shot in Documentum DQL editor.
Does anyone has any simpler way to create users in Documentum…

RAJ
- 123
- 5
- 16
1
vote
1 answer
Is it possible to intercept Documentum API calls?
I have a need to handle different publication events in Documentum (DFC 6.5). When content is published, I would like to fire a JMS message back to my application.
Is there any way to intercept the API calls so that I can handle my business logic?

It Grunt
- 3,300
- 3
- 21
- 35
1
vote
1 answer
Migrating from log4j to log4j2
I am migrating from log4j1.x to log4j2 due to recent vulnerability. It seems another dependency is referencing the the old log4j1.x file.
In addition to removing old log4j1.x file I added log4j-core, log4j-api, and log4j-1.2-api all version 2.16. I…

jms310
- 13
- 3
1
vote
3 answers
Unable to delete documents in documentum application using DFC
I have written the following code with the approach given in EMC DFC 7.2 Development Guide. With this code, I'm able to delete only 50 documents even though there are more records. Before deletion, I'm taking the dump of object id. I'm not sure if…

this.srivastava
- 1,045
- 12
- 22
1
vote
2 answers
Error while connecting to documentum source
I am new to documentum,can any one help me how to resolve the following error
DfException:: THREAD: Thread-694; MSG: [DFC_BOF_CLASS_CACHE_INIT_ERROR] Failed to initialize class cache.; ERRORCODE: ff; NEXT: null
at…

Akhil
- 391
- 3
- 20
1
vote
2 answers
Remove or set Document Query Language attribute to null
Could someone please help me with this? I am trying to get rid of the ATTRIBUTE "effective_date" or set it to null date by using the below 2 queries and am getting different errors.
=====================================
UPDATE
cd_quality (ALL)…

HelenL
- 11
- 1
- 2
1
vote
5 answers
How to print a value from a Hashmap with a ArrayList
I am working on a piece of code which has a Hashmap. This hashmap has a string as key and an arraylist as value. I populate arraylist the with values I'm fetching using a DQL. I've three attributes for many users. Then putting the value into the…

Zeus07
- 168
- 1
- 5
- 17
1
vote
1 answer
IDFCollection to java.util.Collection or ArrayList
How can I retrieve and store the values from IDFCollection to java.util.Collection or ArrayList. Is there any direct way to do it?

Zeus07
- 168
- 1
- 5
- 17
1
vote
2 answers
how to create a new ACL in Documentum with DQL
I am doing a Java project connected to Documentum data storage and I need to create a ACL using DQL . Any idea on how can I do that ? I've found the following in my researches in EMC forums but I dont really understand how to use it ?…

Danial Kosarifa
- 1,044
- 4
- 18
- 51
1
vote
2 answers
Speed up the data retrieval from Documentum via DQL
I am doing a Java project connected to Documentum and I need to retrieve data from object table. The thing is when I retrieve from 1 table I can get the answeres in max 2 seconds for each of the following tables with the following DQLs:
SELECT *…

Danial Kosarifa
- 1,044
- 4
- 18
- 51
1
vote
1 answer
Log out of Documentum Server
I have an Windows application that uses Documentum APIs to checkin/checkout documents into Documentum Content Server 6.5.1.
I use DFS 6.5.1 to interact with the server.
Now I need to logout of the session. How is that possible?

Ananth
- 10,330
- 24
- 82
- 109
1
vote
1 answer
How to get documentum repository names?
I am new in Documentum and Oracle. I want to get repository names. In Webtop login window repositories displays with description, but in database repositories named like DREPN3. Now, i need to get list of repositories like
drepn3 | Natural…
user5094402