Create new page in Webtop
How do I create a new webpage in the Documentum front end Webtop? ...
How do I create a new webpage in the Documentum front end Webtop? ...
Hi Anyone out there with sufficient knowledge of EMC Documentum and Oracle to know whether it is possible to set up a documentum repository on top of oracle so that it uses Character based field lengths rather than byte based. By Default Documentum seems to use byte based fields so if a field is string(32) it can contain 32 bytes rathe...
What is the API call to get information about the packages in a workflow based on the package_id of the workflow? ...
Hi, 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? ...
Using DQL I want to return all the documents under the Cabinet test. How would I go about writing a query to do this? ...
I am using the DFC to access documentum. I am trying to read a file. I have the r_object_id and I now wish to return the document assoicated with this. How would I do this in java? ...
Has anyone ever heard of Documentum being used to provide the backend store for Subversion? ...
I've been working with soap4r and trying to use the SOAP::Header::SimpleHandler, I'm trying to get it to put a custom header on the outgoing message, but I can't work out how to get it to include attributes rather than as subelements: class ServiceContext < SOAP::Header::SimpleHandler NAMESPACE = "http://context.core.datamodel.fs....
When creating and modifying document templates in Documentum 6.5 my TBO for that object type is being triggered. In 5.3 creating a template did not trigger the TBO. This is a problem because I have the TBO doing all sorts of things with documents when they are checked in and saved. But I want it to do nothing if the document is just a t...
If LINQ-to-SQL overcomes the object-relational impedance mismatch of a .NET application talking to a SQL Server database... If I want to build a .NET MVC UI, where my model queries a Documentum CMS database... Is there a LINQ to DQL (Documentum Query Language) library ? ... ... that will help me overcome the object-relational impedan...
There seems to be a number of options for interfacing to Documentum; WDK, DMCL, DFC, DFS, DQL, etc. What else is there? When whould you use which interface? For .NET developers, for Java developers? ...
This piece of code moves all current versions of files from one folder to another but leaves all older versions unmoved. (Context is java code of DFC accessing Documentum.) String strObjId = versionColl.getString("r_object_id"); com.documentum.fc.common.IDfId curObjectID = new DfId(strObjId); IDfSysObject curObj = (IDfS...
Documentum sample code is never deeply commented, so my question is: What does this line mean? IDfQuery query = DfcUtils.getClientX().getQuery(); ...
I want to copy the content from one object stored in one docbase to another object stored in another docbase. I do not want to create a file because I have more than 300 k files to copy. Below is a part of my code: ByteArrayOutputStream baos = new ByteArrayOutputStream(); IOUtils.copy(source.getContent(), baos); [...] targetObj.setCon...
I know that I can validate an input field by adding a inputmaskvalidator tag. I read the documentum doc : The mask character string: # : numeric characters & : all characters A : alphanumeric characters only ? : alphabetic characters only U : uppercase alphabetic characters only L : lowercase alphabetic characte...
I am following an article that explains how to use the ICustomAttributeDataHandler class. I am creating a custom column for the inbox screen, but the problem is that the value I set for my custom attribute is not being reflected on the screen. As a test I am changing the task name to "whoKnows". But this code is not effecting what is o...
Need to host 80 million tiff files (1000 KB each) some where around 10 Terrabytes, what would be the best Document Management solution. These files need to be on a filesystem but want to indexed thru the Document Management system ( Sharepoint, Documentum, Filenet etc). We already have indexes in CSV format and want to reuse those indexe...
when check out done in documentum. how to remove values of "Signed Out To" attribute in documentum using java dfc api. when sysobj.cancelcheckout executed only unlock function done and removes the lock icon ...
how to get the absolute path of given object id using java dfc in documentum. ...
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 running? ...