Questions tagged [documentum]

Documentum is an enterprise content management platform, now delivered by EMC Corporation, as well as the name of the software company that originally developed the technology.

Documentum is an enterprise content management platform, now owned by OpenText, as well as the name of the software company that originally developed the technology.

Documentum code can be written in a variety of programming languages depending on the database or environment. Using idql32.exe/idql64.exe or iapi32.exe/iapi64.exe on the content server, you can execute or . The or languages can also be executed within Documentum Administrator (DA) from the Tools menu. Using Oracle SQL Developer, you can execute . Using Microsoft SQL Server Management Studio, you can execute .

Related Tags:

Links:

365 questions
2
votes
1 answer

Xcp 2.2 Shared Libraries for JAVA Services

The Shared Java Services Libraries is a neat feature for the 2.2 Xcp Documentum but is problematic in this specific case. A little bit of background: I have to make a migration from a 2.0 Xcp project to the 2.2 version. I started a new project and…
iCezar
  • 43
  • 6
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

Is there a way to listen to the upload events in the EMC's Documentum via .NET API?

i need to implement a windows service that connects to EMC's Documentum and receives an event every time a document is loaded. The event should contain the reference to the document itself. Is there a way to do it via API or do i have to do…
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

How to test Documentum RESTful APIs

I'm successfully running the Documentum Developer Edition on a Virtual Machine as suggested by Documentum's Official Site. I have access to the admin page, and now i'd like to test the RESTful apis to check if it's corrently working, to get an idea…
mark
  • 939
  • 2
  • 13
  • 36
2
votes
0 answers

Documentum find out which ADTS is processing renditon

I have 2 instances of ADTS servers for 1 docbase and would like to find out which one processed my renditions. I would like to know which renditions have been done by RenderServer1 and which have been done by RenderServer2 The 2 instances are set as…
2
votes
0 answers

Failsafe integration tests running on jetty-maven-plugin hanging or/and OutOfMemoryError

When running maven failsafe plugin with jetty maven plugin with the following configuration org.mortbay.jetty jetty-maven-plugin 8.1.15.v20140411
2
votes
1 answer

Documentum DQL: Change user type

Is it possible to change the object type of users? CHANGE dm_user OBJECT TO my_user WHERE r_object_id = '{some id}' Given that my_user is a subtype of dm_user, the query above results in the following error…
eivamu
  • 3,025
  • 1
  • 14
  • 20
2
votes
1 answer

Documentum xCP 2.0 Designer Customization

Can we add plugins in xCP designer like we can add in Eclipse? We need to have SVN plugin, so that we can do code versioning. Actually the problem is in our project multiple people need to work on same object. So can we do it in xCP?
sanyog
  • 51
  • 1
  • 7
2
votes
4 answers

DQL to find out current version documents in a folder

How to query folder and document both so that we can get: All the subfolder documents. Only the folder documents. Count of documents in the subfolder, with the folder name.
sanyog
  • 51
  • 1
  • 7
2
votes
1 answer

DQL: enable (return_top 10) performance impact

I had this query that originally caused massive timeouts: select d.r_object_id from isc_fiche d, dmr_con c where any c.parent_id = d.r_object_id group by d.r_object_id having count(*) > 2 yet when I add the enable (return_top 10) to the end…
User999999
  • 2,500
  • 7
  • 37
  • 63
2
votes
1 answer

Prevent the creation of a certain, standard DocType, in Documentum

I am using My Documentum for Desktop, and I had to extend the behaviour of my DocBase - as creating new DocTypes and the related TBOs -. To be precise, I have created a new DocType, called emdd_document; this inherits from the standard type…
Andrea
  • 6,032
  • 2
  • 28
  • 55
2
votes
0 answers

log4j generating logger file but not appending anything

The settings I have specified in log4j is as…
Mahesha999
  • 22,693
  • 29
  • 116
  • 189
2
votes
1 answer

Get Documentum workflows (inbox, tasks) via CMIS?

I am making a client for EMC Documentum with OpenCMIS in Java. I can create, view and get properties of documents, but I don't know how to get all workflow tasks. Do you have any idea how to get all inbox (workflow, tasks) for a specific user? Can I…
Klemenko
  • 704
  • 1
  • 10
  • 21