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
1
vote
1 answer

Get info about a workflow item using Documentum API calls

What is the API call to get information about the packages in a workflow based on the package_id of the workflow?
joe
  • 16,988
  • 36
  • 94
  • 131
1
vote
1 answer

DQL match new users groups to existing users groups

I'm trying to use DQL to match a new user groups to an existing users. I've tried the below which doesn't return a error but also doesn't seem to work. UPDATE dm_group objects append users_names='user2' where group_name in (SELECT DISTINCT…
Rob Hamer
  • 13
  • 3
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

Is there a dql command to find out the docbase owner name?

Alternatively is there a way to specify what user is used to execute a dm_job?
Ayrad
  • 3,996
  • 8
  • 45
  • 86
1
vote
2 answers

how to fetch the objects in dm_acl who grants the same sets of permission at the same time

I am doing a JavaFx project connected to Documentum data source . lets say I have a set of groups : group1 , group2 , group3 How can I query all the acl_names from dm_acl who has only and exactly these groups as their r_acceesor_name . For example…
Danial Kosarifa
  • 1,044
  • 4
  • 18
  • 51
1
vote
2 answers

Create new page in Webtop

How do I create a new webpage in the Documentum front end Webtop?
nofoe
  • 13
  • 1
  • 3
1
vote
0 answers

JUnit :java.lang.IllegalStateException while executin event.queue() where event is ValueChangeEvent instance

While creating Junit of a method which takes valueChangeEvent object as input, it is throwing an IllegalStateException while calling the queue method. I have searched a few things which leads me to the conclusion that this is occurring because of…
1
vote
2 answers

how to create a new ACL in Documentum with DQL

I am doing a Java project connected to Documentum data storage and I need to create a ACL using DQL . Any idea on how can I do that ? I've found the following in my researches in EMC forums but I dont really understand how to use it ?…
Danial Kosarifa
  • 1,044
  • 4
  • 18
  • 51
1
vote
2 answers

Speed up the data retrieval from Documentum via DQL

I am doing a Java project connected to Documentum and I need to retrieve data from object table. The thing is when I retrieve from 1 table I can get the answeres in max 2 seconds for each of the following tables with the following DQLs: SELECT *…
Danial Kosarifa
  • 1,044
  • 4
  • 18
  • 51
1
vote
1 answer

the table is not registered or you do not have access to it (documentum)

I am using documentum data storage and and I have an object table called dm_user . I can fetch data from the table by running a DQL query like : select * from dm_user where user_name = 'dkfloza' However when I run a query to update my table such…
Danial Kosarifa
  • 1,044
  • 4
  • 18
  • 51
1
vote
3 answers

retrieve a row of data from documentum via DQL

I have a list of users in my list view which is populated by retrieving data from documentum . If I click on any row of this least (each row represent one user) I should be able to see all of their information listed down .(This is my problem…
Danial Kosarifa
  • 1,044
  • 4
  • 18
  • 51
1
vote
1 answer

DQL to get r_object_id From DRL

I have a situation like this. I checked out a file from documentum (File is a dita-map ). File has a reference to another file in the repository. DRL is dctm://MILLENNIUM/0500006480003b2e?DMS_OBJECT_SPEC=RELATION_ID. From this, I assume that…
Ananth
  • 10,330
  • 24
  • 82
  • 109
1
vote
1 answer

DQL to get i_chronicle_id from r_object_id

I have a situation like this: I need to find out the i_chronicle_id of a document. If I try with r_object_id(i.e select i_chronicle_id from dm_document where r_object_id='some id', it will return me the i_chronicle_id. Then no problem. But if…
Ananth
  • 10,330
  • 24
  • 82
  • 109
1
vote
0 answers

Passing arguments from bash script to dql script

I want to write a script that enables a user to change a custom attribute of a business object. I have written a bash-script that calls my dql script and passes one argument. My dql-script looks like this: UPDATE my_business_object OBJECT SET…
Pascal Petruch
  • 344
  • 3
  • 16