Posts

D2 notes

Image
https://webapp.opentext.com/piroot/edccl/v200400/edccl-agd/en/html/jsframe.htm?admin-c-configmatrix-organizing  D2 API libraries are deployed to the JMS directory on the content server host                Documentum/ Jboss/ server/ DctmServer_MethodServer/ deploy/ ServerApp.ear/ lib Understanding Matrix Context Precedence It is important to understand how the enabled configuration is processed in the matrix contexts (columns) from left to right. The order of the context in the matrix is crucial because it establishes an order of precedence. When conflicts between configurations exist (for example, two or more configurations apply to a selected document or to the same user), the one associated with the left-most context in the configuration matrix takes precedence. It does this by performing DQL queries to match elements with the properties of the contexts from left to right. This precedence rule spans applications. Best practice is to pl...

Documentum UCF & Troubleshooting

Image
  UCF stand for ‘ Unified Content Facilities’  which is a lightweight applet that is responsible for transferring content between the content server, application server and the client machine during operations such as check-in, checkout, import etc. UCF is a Java-based client application that is installed at run-time. Since WDK application uses UCF content transfer it downloads a lightweight applet to the browser when the client uses the Documentum operations for the first time. UCF has many advantages that extend beyond simple FTP (file transfer protocol), such as: – Recoverability in case of brief network interruption. – It supports transfer of large files over network and optimizes the transfers by content compression capabilities. – Awareness of locally downloaded files, and the ability to avoid downloading the same content twice – Support for complex documents, such as XML files – Registry support, to allow checkout from one application and check in from another.  Th...

TBO - Installing Documentum TBO using Composer

Image
  Introduction: The  Business Object Framework  (BOF) is a set of functionality that provides ability to hook into any of the methods in the standard DFC object interfaces. BOF’s are of two kinds: Type Based Object(TBO) Service Based Object(SBO) TBO’s are used when only one object type needs its functionality overridden whereas, we use a SBO when the functionality is overridden for different object types or in case we want to use the functionality in many other TBO’s. The main use of TBO is the ability it gives a developer to override selected functionality of the DfSysObject or any of its child types. Module 1: Creating the TBO Steps to be followed for creating a TBO jar Create a java class using the same name as the object type. The java class will have to extend DfDocument and will have to override its 4 functions getVersion, getVendorString (), isCompatible (String s) and supportsFeature (String s) Then it will have to override the function that th...

Presets in Documentum 6.5

Image
  WDK (web development kit) customizations have been part and parcel of all custom Documentum WebTop applications. The customizations includes copying the WDK components (XMLs, JSPs, custom class etc) into the custom layer. Until version 5.3 SP6 there were no Documentum out of the box features that allowed developers to perform basic customization without having to customize the WDK components manually. Documentum 6 and above version presented the idea of “ Presets ”. This versatile out of the box feature in Documentum enable Documentum developers to perform basic WDK customization/configuration with a few clicks of the mouse. This Post  deals with the basics of Documentum presets and demonstrates a sample preset configuration. Presets Presets are out of the box feature in Documentum which enable Documentum developers to perform basic WDK customization/configuration with a few clicks of the mouse.Presets are easy to apply rules or configurations that can be created to bring in...