DFC
-
Documentum: Software to Download Documents and Metadata
I have written a software in Java using DFC. This software performs the following tasks: Performs export or import of documentum data Download all documents given a folder/cabinet in Documentum Download all document metadata, including custom metadata without having to specify the specific fields All the metadata is saved in an xml file The field Continue reading
-
Documentum DFC: How to get custom attributes
Here is a way to get all the custom attributes of an object in DFC without knowing them ahead of time: //Custom Attributes String allAttributes = dctmFileObject.dump(); String customAttributes = allAttributes.substring(allAttributes.indexOf(“language_code”), allAttributes.indexOf(“SYSTEM ATTRIBUTES”)); try (BufferedReader Continue reading
-
Documentum: 3 Ways to Create a User in Documentum
Here are the three ways to create a user in Documentum: DFC ———————————- IDfUser dfcUser = (IDfUser) getSession().newObject(“dm_user”); dfcUser.setUserName(“username”); dfcUser.setUserLoginName(“username”); dfcUser.setString(“user_source”,”inline password”); dfcUser.setString(“user_password”,”somepassword”); dfcUser.setString(“user_os_name”,”username”); dfcUser.setString(“description”,”new user description”); dfcUser.setDefaultFolder(“/Temp”, true); dfcUser.save(); DQL —————————- create “dm_user” object set client_capability=2, set default_folder=’’, set home_docbase=’’, set mailto:user_address=’a@abc.com’, set user_os_domain=’’, set user_name=’’, set user_os_name=’’, set user_privileges=0; API ——————————- create,c,dm_user set,c,l,user_name Continue reading
-
Documentum DFC: Check DFC version from command line
Here’s how to check the Documentum DFC version from command line: C:\> java DfShowVersion 7.2.0000.0054 Continue reading
About Me
Senior Software Engineer professional with over 16 years of success with multiple open source technologies and various Content Management platforms and solutions.
Proven technical abilities through numerous projects involving enterprise web application design and development, application installation, configuration and support, and workflow and collaboration system designs.
- Ability to learn new technologies and platforms quickly and apply them to the task at hand.
- Excellent analytical skills, and strong communication and collaboration abilities.
- Technical emphasis in including but not limited to Java, Ruby on Rails, Documentum and Alfresco
in both Linux and Windows based environments