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

Documentum DQL Getting list subfolders from a few folders

everyone! I am starting with Documentum this month and here is my problem. There is multi-select drop-down list with cabinets. I have to choose some of them to get list of inner folders in my result list below. This query: select * from dm_folder…
issverg
  • 80
  • 9
2
votes
2 answers

Date format for IAPI documentum query

I am updating my documentum object using IAPI. Below is IAPI script to update date set,c,090d903886353e5a,r_creation_date '12/12/2020 12:00:00 AM' save,c,090d903886353e5a After executing scripts i am facing below issue API> SET> ...…
Dev Role
  • 69
  • 1
  • 8
2
votes
2 answers

how to fill format (a_content_type) while creating a document in DFS?

I am developing a DFS application (оn С#) that imports a document into Documentum as dm_document. A document may be in any format – DOC, DOC, PDF, whatever. Thus, when I create a document, I have to specify corresponding format (it will be put into…
KellyLynch
  • 241
  • 2
  • 9
  • 30
2
votes
1 answer

Deleting top 100 objects in DQL statement

I need to delete the first top 100 objects from a dm_document table. I already tried: DELETE dm_document objects where object_name='TestObject' enable (RETURN_TOP 100); DELETE dm_document objects where r_object_id in (select r_object_id from…
MrPapaye
  • 23
  • 1
  • 3
2
votes
1 answer

Documentum DQL join by repeating attribute

I tried to join these tables using repeating attribute: table1: r_object_id codes ... 1,2,3,4,5 ... 7,6,3,4,5 ... 1,5,4,2,3 Where codes attribute is the repeating…
kfir
  • 732
  • 10
  • 22
2
votes
1 answer

How to get the children of Virtual Documents in Documentum

I am trying to get the children of a particular virtual document by using the query below select * from dm_document in document ID('virtual document id') descend with any r_version_label='CURRENT' I am able to get the children for a particular…
2
votes
1 answer

Documentum error : [DM_STORAGE_E_NOT_ACCESSIBLE]

I am trying to get the content of all the documents (current version) from a documentum source using the following code IDfSysObject document = (IDfSysObject) session.getObject(new DfId(eachFileMetadata.get(some document…
2
votes
0 answers

Documentum error : [DFC_OBJPROTO_BAD_NUMBER_FORMAT]

I am trying to get the content of all the documents (current version) from a documentum source using the following code IDfSysObject document = (IDfSysObject) session.getObject(new DfId(eachFileMetadata.get(some document…
2
votes
0 answers

Documentum error :[DM_STORAGE_E_BAD_TICKET]

I am trying to get the content of all the documents (current version) from a documentum source using the following code IDfSysObject document = (IDfSysObject) session.getObject(new DfId(eachFileMetadata.get(some document…
2
votes
0 answers

How to get the content of a document in documentum

I am new to documentum,can anyone suggest me how to get the content of a document in documentum. I am using the following code document = (IDfSysObject) session.getObject(new DfId("some document id")); document.getContent(); I am getting the…
Akhil
  • 391
  • 3
  • 20
2
votes
2 answers

dm_folder_r is not registered or you do not have access to it in documentum

I am a newbie to documentum and i am trying to run the following query: select distinct A.*,A.i_chronicle_id,A.r_full_content_size,B.r_folder_path,B.r_object_id as folder_id from dm_document A, dm_folder_r B where any A.i_folder_id = B.r_object_id…
Akhil
  • 391
  • 3
  • 20
2
votes
1 answer

Error while running documentum code

I am getting an error while running the documentum code at: config.setString("primary_host", docbroker); in the below code: IDfClient client = DfClient.getLocalClient(); // getting the config object of local client IDfTypedObject config =…
2
votes
0 answers

how to get access control lists for an object in documentum using dql query

I need the access control lists of an object in documentum by running the dql query and also does an object in documentum have only 1 access control list or multiple access control lists please help me I am new to documentum Thanks in advance
Akhil
  • 391
  • 3
  • 20
2
votes
2 answers

Documentum 5.3 connecting

I am new to Documentum. I am creating a stand alone java application that needs to connect to a documentum instance (5.3). How would I go about connecting to the instance?
James
2
votes
1 answer

Documentum Query -DQL

How can I form a DQL query to get the list of files excluding the virtual documents created (while adding reference to the file) in document um. Can any one please help me out.
Anjana
  • 1,447
  • 5
  • 23
  • 33
1 2
3
24 25