DCTM is an often used shortcut to Documentum which is an enterprise content management platform, now delivered by OpenText.
Questions tagged [dctm]
4 questions
0
votes
1 answer
How can I get document hash from documentum using DQL?
Using DQMan or Document Admistrator, what's DQL statement to get hash of document in DCTM?
Select ... ?
If it's not possible how can I get it?
(I know exactly which is the document, r_chronicle_id, r_object_id, etc...)

Falco
- 1,458
- 3
- 19
- 47
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
Documentum -- Custom queries
I am new to learning Documentum and we came across this query being run by the system that we are looking at how to potentially speed up:
SELECT ALL dm_document.r_object_id
FROM dm_document_sp dm_document
WHERE (
…
anon