Questions tagged [dfc]

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

68 questions
1
vote
2 answers

How to determine the file type when a document is pulled from documentum

Which attribute can be used to pass the File Name while ingesting a document? How to determine the file type when a document is pulled from Documentum using DFC API
rameshwar.k.rao
  • 11
  • 1
  • 2
  • 6
1
vote
1 answer

How to pass repository names as java arrays and iterate it in documentum code?

I have a below code to detect the status for one documentum docbase (test1) so as to check if it is up and running. Now I want to change my below code to check the status of 2 more repositories named as test2,test3 present in the same content…
Dojo_user
  • 281
  • 4
  • 9
  • 28
1
vote
1 answer

Grails Multi-Environment Configuration Issues With DFC

We have a Grails application that connects to a Documentum docbase using the dfc.jar and dctm.jar APIs. These jars expect a dfc.properties file to be on the classpath to configure the docbase settings. This is fine when working in one environment,…
GeoGriffin
  • 1,065
  • 11
  • 26
0
votes
1 answer

Can we Programatically change Dfc.properties File in composer Dynamically

I have written a Java(Documentum) Programme where we need to change DocBase repeateadly, Is there any way we can change dfc.properties based on some condition? Changes are like commenting one Line ie the Docbase propert while uncommenting otehr…
RAJ
  • 123
  • 5
  • 16
0
votes
2 answers

Cannot connect content server docbase in windows2008(64bit) from windows7(32bit)

Error occurred when I connect docbase in windows2008(64bit) from windows7(32bit) using DFC. (the content server version is Developer_Edition_6.6_windows_sql). DfServiceException:: THREAD: main; MSG: [DFC_SESSION_DOCBASE_UNREACHABLE] Docbase…
lich
  • 1
  • 1
  • 3
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
0 answers

Is there a spring-data UPDATED module for EMC Documentum in 2021?

The same question here: Is there a spring-data module for EMC Documentum? The answer is yes, but the project seems to be stucked at 6 years ago. It's dependency is Documentum 7.2. NO MORE UPDATES AFTER FIRST RELEASE 0.0.1 We are using documenum…
Falco
  • 1,458
  • 3
  • 19
  • 47
0
votes
1 answer

How to pass custom object as parameter in window.open javascript

I'm trying to pass IDfSysObject as parameter in window.open() but I guess the IDfSysObject is getting converted to String and while retrieving, it is not letting me convert it back to IDfSysObject. Here is my javascript code function…
Zeus07
  • 168
  • 1
  • 5
  • 17
0
votes
1 answer

How to retrieve parameter values of window.open() in a new jsp page (inside scriptlet)

I've a javascript through which I'm passing some values to a new jsp using window.open() window.open("view.jsp?uname="+objid+"&pass="+ses,"","heightP0 ,widthP0"); I want to retrieve the uname and pass values in scriptlet. I've tried something like…
Zeus07
  • 168
  • 1
  • 5
  • 17
0
votes
2 answers

How to export both document's native and rendition content using IDfExportOperation in DFC documentum?

I have a task to export both document's native and rendition content. I'm using IDfExportOperation to export document native content. But the requirement is also to export the rendition format. How to do that? Can you please help me?
sb709057
  • 45
  • 6
0
votes
1 answer

How to differentiate if a TBO is called when importing new Document vs for any other operations

We are trying to add one additional feature to our method for TBO. The feature needs to be executed only when a new document for that object type is imported and should not be executed in any other case like checkin checkout or any changes in…
Ritter7
  • 166
  • 2
  • 14
0
votes
1 answer

Write, append DQL query results to excel in java using apache poi and DFC

I have to write the dql query results to excel in java using apache poi and DFC. I have the following code written, this needs to be organized to handle efficiently. I tried writing to excel utility in other method, but this is not working…
user11163621
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
1 answer

Documentum groups and subgroups lost when build is performed

Here's our dev process. We have a dev Documentum environment where we make our changes, and then import those DFC changes into our docbase using Documentum Composer. When the build is performed, we are able to deploy it successfully. However, we…
It Grunt
  • 3,300
  • 3
  • 21
  • 35