Questions tagged [documentum-dfc]

DFC stands for Documentum Foundation Classes, the API which allows the developers to extend the Documentum software platform functionalities.

27 questions
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
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

User Masquerading in Documentum

I am writing a document workflow application (DWA) which uses Documentum (v6.6) as its document storage mechanism. What I'd like to do is for the application to access Documentum as a privileged user, via the Java API, and perform actions on stored…
Crollster
  • 2,751
  • 2
  • 23
  • 34
0
votes
1 answer

Where is the SQL trace log

I am trying to find the logs about all the SQL queries that run when a DQL is executed. If I try to execute this from the API tester it works, and I can see the logs. But the difference is that I run that directly from the remote machine, while here…
0
votes
0 answers

Is it possible to upload content to Documentum in multi-parts?

In my Java Spring Boot application, I first download files from an S3 Bucket. A REST client is then used to upload these files to Documentum by calling Documentum REST. My API method for uploading a document is pasted below: public RestObject…
Jon H
  • 394
  • 3
  • 17
0
votes
1 answer

Reading a custom double value from a Documentum query

I am trying to calculate an average value with the Documentum API, like this: final IDfQuery checkMediaDocs = (IDfQuery) new DfQuery(); IDfCollection mediaDocs = null; checkMediaDocs.setDQL("select sum(tot_doc_daily)/count(*) as mediaglobale from…
Andrea
  • 6,032
  • 2
  • 28
  • 55
0
votes
1 answer

Getting version mismatch error while updating into DCTM using java

I am trying to update into DCTM through java code, below is the code snippet IDfDocument communication = (IDfDocument) getDfSession().getObject(DfId.valueOf(communicationId)); communication.setString(ATTR_STATUS, status); communication.save(); but…
Mahesh Nighut
  • 115
  • 1
  • 10
0
votes
1 answer

Migration of JSF Primefaces and EJB application which interacting to Documentum content server to Spring boot and Angular

We have one application which is build on JSF Primefaces and EJB. Which communicate to Documentum content server and get the object. Also Authenticate the user by using IDF session. Now the same application we need to migrate using Angular as…
0
votes
2 answers

How to get CURRENT version label number through DFC code?

public static IDfCollection getVersions() { IDfQuery query = clientX.getQuery();// obtain an idfObject query.setDQL( "select r_object_id,object_name,r_version_label,owner_name from dm_document(all) where…
paramesh
  • 45
  • 9
0
votes
3 answers

How to write Inner Join Query in dqMan?

We have two tables dbo.MONITOR (Reg. table) & sum_file_folder (documentum table) dbo.MONITOR - FILE_ID - STATUS sum_file_folder - object_name - file_status where, FILE_ID & object_name are same fields in both tables. So these Inner Join Queries…
0
votes
1 answer

How to create ACL using DFC code

Please post the code sample to create ACl (Access control list) using DFC code in Documentum. Thanks, Asfaque
Hossain
  • 1
  • 2
1
2