Questions tagged [dfc]

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

68 questions
0
votes
2 answers

How to delete the repeated occurrences of a file in documentum if it exists more than once using dql query in java?

I want to delete repeated occurrence of a file in documentum leaving only one file if it exists more than once. Following is my code. import com.documentum.fc.client.IDfQuery; import com.documentum.fc.client.IDfSession; import…
Moizudddin
  • 23
  • 1
  • 5
0
votes
1 answer

How to run dql search query in java?

I want to check whether a file is present in a particular folder in documentum using Java. Following is my code, import com.documentum.com.DfClientX; import com.documentum.com.IDfClientX; import com.documentum.fc.client.DfQuery; import…
Moizudddin
  • 23
  • 1
  • 5
0
votes
2 answers

Delete ACLs created after a specific time in Documentum data storage

I've been doing some experiments on my data storage and for that reason I've created a handful of fake ACLs . Now I want to delete them . So I queried the data storage using the following : select * from dm_Acl enable (row_based) But then I…
Danial Kosarifa
  • 1,044
  • 4
  • 18
  • 51
0
votes
1 answer

Change the r_accessor_permit of a group assigned to an ACL in Documentum

I want to use DFCs in order to change the value for r_accessor_permit of a group assigned to an acl : 1 - > first I chose an ACL called "fme" 2 - > Then I wrote the following DQL in order to get the groups assigned to it : select r_accossor_name…
Danial Kosarifa
  • 1,044
  • 4
  • 18
  • 51
0
votes
1 answer

How to delete an acl from dm_acl object table

I am using documentum and I want to remove few acls from my dm_acl object table . first I made sure that the acl exists : select * from dm_acl where object_name = 'myAclName' then I made sure that no other object is using that acl select * from…
Danial Kosarifa
  • 1,044
  • 4
  • 18
  • 51
0
votes
1 answer

My Folder Migration keeps on failing in Documentum using DFCs

I am working on a JavaFx project connected to Documentum data storage . And I am trying to configure how to move a folder (lets call it folder11) placed in a folder (lets call it Folder1) into another folder (lets call it Folder2) . It's worth…
Danial Kosarifa
  • 1,044
  • 4
  • 18
  • 51
0
votes
1 answer

Migrating a file or a folder from one repository to another in Documentum

I am working on a JavaFx project connected to Documentum data storage . And I am trying to configure how to move a file (lets call it file1) placed in a folder (lets call it Folder1) into another folder (lets call it Folder2) . It's worth mentioning…
Danial Kosarifa
  • 1,044
  • 4
  • 18
  • 51
0
votes
2 answers

How do you access the value of a DQL count() query in Java Program

I want to get to the value I am finding using the COUNT command of DQL.Normally I enter the column name I want to access into the getInt() getString() method. What I'm supposed to do when there is no specific colomn name. { String query =…
Zeus07
  • 168
  • 1
  • 5
  • 17
0
votes
2 answers

the fetched data from documentum (dm_acl Object Table) turns out to be null ? why?

I'm working on a Java project which is connected to documentum . I am trying to fetch some data from my dm_acl object table using the following : String fetchAclsInfoQuery = "select * from dm_acl where description = '@aclname0' or description =…
Danial Kosarifa
  • 1,044
  • 4
  • 18
  • 51
0
votes
2 answers

Set the owner of documentum ACL in java using the API?

I am doing a java project connected to Documentum data storage . I am trying to create an ACL manually using the API class . The following is my code : StringBuilder newAcl = new StringBuilder(); …
Danial Kosarifa
  • 1,044
  • 4
  • 18
  • 51
0
votes
2 answers

DQL drop group_name in DFC

I have a list of group names which the app is reading from external .txt. I want to pass to method as a List group names and to execute dql query something like: for (String s : groupnames) { dql = "DROP GROUP " + s; …
tehn0drom
  • 29
  • 9
0
votes
1 answer

I am trying to write the result of the dql queries into a separate CSV file using dfc coding.

i have attached screen shot of the resultant CSV file I am trying to write the result of the dql queries into a separate CSV file using dfc coding. but the result of the first record is printing twice in the resultant sheet. public class…
user3301354
  • 19
  • 1
  • 7
0
votes
2 answers

Exception When Adding an Object to a Documentum DfCheckOutOperation

I'm trying to write a Documentum DFC executable that will check out an object from a given docbase. I've been able to establish a session with the docbase, retrieve the object to be checked out and verify that it is not already checked out. But…
Sheldon R.
  • 452
  • 2
  • 7
  • 26
0
votes
2 answers

Graceful way to exit a dm_job ? System.exit()?

If I want to properly exit a documentum java job (if params are invalid for example), should I use a system.exit() or is there another way to do it. As far as I know system.exit closes the virtual machine, does it have an effect on other jobs…
Ayrad
  • 3,996
  • 8
  • 45
  • 86
0
votes
1 answer

sessionManager cannot be resolved issueaction handler of java swings in export operations using documentum

I am facing an issue in my action handler code to handle the export operation in documentum ** code 2**. Here code 1 is the code for Jbuttons and Jtext and code 3 is the code for the export operations. Here in the section that is causing problem:-…
Dojo_user
  • 281
  • 4
  • 9
  • 28