<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Ajith Prabhakar's Weblog</title>
	<atom:link href="http://ajithp.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://ajithp.com</link>
	<description>A beginner's guide to Documentum</description>
	<lastBuildDate>Mon, 10 May 2010 12:32:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Downloads by Documentum Open Source Utilities &#171; dm_misc: Miscellaneous Documentum Tidbits and Information</title>
		<link>http://ajithp.com/downloads/#comment-80</link>
		<dc:creator><![CDATA[Documentum Open Source Utilities &#171; dm_misc: Miscellaneous Documentum Tidbits and Information]]></dc:creator>
		<pubDate>Mon, 10 May 2010 12:32:26 +0000</pubDate>
		<guid isPermaLink="false">http://ajithprabhakar.wordpress.com/downloads/#comment-80</guid>
		<description><![CDATA[[...] JCG - Java Code Generator for Documentum is a command line tool that can be used to generate Java Beans from Documentum Object types. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] JCG &#8211; Java Code Generator for Documentum is a command line tool that can be used to generate Java Beans from Documentum Object types. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sample DQLs by abeishbabu</title>
		<link>http://ajithp.com/dql-tips/#comment-64</link>
		<dc:creator><![CDATA[abeishbabu]]></dc:creator>
		<pubDate>Fri, 23 Oct 2009 15:22:51 +0000</pubDate>
		<guid isPermaLink="false">http://ajithprabhakar.wordpress.com/dql-tips/#comment-64</guid>
		<description><![CDATA[Hi Ajith

Is it possible using DQL query to see whether an attribute name for an object type is a repeating attribute or single attribute?

Any suggestions would be helpful.]]></description>
		<content:encoded><![CDATA[<p>Hi Ajith</p>
<p>Is it possible using DQL query to see whether an attribute name for an object type is a repeating attribute or single attribute?</p>
<p>Any suggestions would be helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sample DQLs by abeishbabu</title>
		<link>http://ajithp.com/dql-tips/#comment-63</link>
		<dc:creator><![CDATA[abeishbabu]]></dc:creator>
		<pubDate>Fri, 23 Oct 2009 15:10:43 +0000</pubDate>
		<guid isPermaLink="false">http://ajithprabhakar.wordpress.com/dql-tips/#comment-63</guid>
		<description><![CDATA[Hi Ajith,

I have the following query to list all documents and folders in a cabinet. 

select object_name,r_object_type from dm_sysobject where folder(&#039;/Test&#039;) and r_object_type IN (&#039;dm_document&#039;,&#039;dm_folder&#039;)

But how can I list folders and documents in the same way as it is listing in Webtop ( folders are listed first in sorted order, then documents are listed in sorted order)]]></description>
		<content:encoded><![CDATA[<p>Hi Ajith,</p>
<p>I have the following query to list all documents and folders in a cabinet. </p>
<p>select object_name,r_object_type from dm_sysobject where folder(&#8216;/Test&#8217;) and r_object_type IN (&#8216;dm_document&#8217;,'dm_folder&#8217;)</p>
<p>But how can I list folders and documents in the same way as it is listing in Webtop ( folders are listed first in sorted order, then documents are listed in sorted order)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About Aditi, Usha and Ajith by abeishbabu</title>
		<link>http://ajithp.com/about-ajith/#comment-61</link>
		<dc:creator><![CDATA[abeishbabu]]></dc:creator>
		<pubDate>Thu, 18 Jun 2009 12:22:49 +0000</pubDate>
		<guid isPermaLink="false">#comment-61</guid>
		<description><![CDATA[Hi Ajith,

Your blog is really helpful. This is one of the main site which I will check to clarify doubt on documentum, especially DQL.

Looking for more and more articles.

http://abeishbabu.blogspot.com/]]></description>
		<content:encoded><![CDATA[<p>Hi Ajith,</p>
<p>Your blog is really helpful. This is one of the main site which I will check to clarify doubt on documentum, especially DQL.</p>
<p>Looking for more and more articles.</p>
<p><a href="http://abeishbabu.blogspot.com/" rel="nofollow">http://abeishbabu.blogspot.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Virtual Documents in Documentum by abeishbabu</title>
		<link>http://ajithp.com/2008/02/20/virtual-documents-in-documentum/#comment-60</link>
		<dc:creator><![CDATA[abeishbabu]]></dc:creator>
		<pubDate>Thu, 18 Jun 2009 11:55:51 +0000</pubDate>
		<guid isPermaLink="false">http://ajithprabhakar.wordpress.com/?p=42#comment-60</guid>
		<description><![CDATA[Hi Ajith,

Thank you very much for the tutorial.

One small correction, for the DQL queries in ;Virtual Document related DQLS;, please use FROM instead of the first IN like given below:

SELECT r_object_id FROM dm_document IN DOCUMENT ID (‘r_object_id_of_virtual_document’)
SELECT ‘object_name’ FROM dm_sysobject IN DOCUMENT ID (‘r_object_id_of_virtual_document’) DESCENT]]></description>
		<content:encoded><![CDATA[<p>Hi Ajith,</p>
<p>Thank you very much for the tutorial.</p>
<p>One small correction, for the DQL queries in ;Virtual Document related DQLS;, please use FROM instead of the first IN like given below:</p>
<p>SELECT r_object_id FROM dm_document IN DOCUMENT ID (‘r_object_id_of_virtual_document’)<br />
SELECT ‘object_name’ FROM dm_sysobject IN DOCUMENT ID (‘r_object_id_of_virtual_document’) DESCENT</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About Aditi, Usha and Ajith by rupk</title>
		<link>http://ajithp.com/about-ajith/#comment-58</link>
		<dc:creator><![CDATA[rupk]]></dc:creator>
		<pubDate>Tue, 12 May 2009 08:55:10 +0000</pubDate>
		<guid isPermaLink="false">#comment-58</guid>
		<description><![CDATA[Hi Ajith,

You are doing really gud work. I had recently started working on Documentum and your notes are helpful as its short and sweet.

Keep up the gud work

Thanks
Rupali]]></description>
		<content:encoded><![CDATA[<p>Hi Ajith,</p>
<p>You are doing really gud work. I had recently started working on Documentum and your notes are helpful as its short and sweet.</p>
<p>Keep up the gud work</p>
<p>Thanks<br />
Rupali</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Java reflection to reduce Code and Development time in DFS by Jonas Abreu</title>
		<link>http://ajithp.com/2009/03/11/using-java-reflection-to-reduce-code-and-development-time-in-dfs/#comment-57</link>
		<dc:creator><![CDATA[Jonas Abreu]]></dc:creator>
		<pubDate>Sun, 03 May 2009 19:01:50 +0000</pubDate>
		<guid isPermaLink="false">http://ajithprabhakar.wordpress.com/?p=220#comment-57</guid>
		<description><![CDATA[Hello,

maybe you&#039;ll find this project useful for dealing with Java Reflection API.

http://projetos.vidageek.net/mirror/mirror/

Regards,]]></description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>maybe you&#8217;ll find this project useful for dealing with Java Reflection API.</p>
<p><a href="http://projetos.vidageek.net/mirror/mirror/" rel="nofollow">http://projetos.vidageek.net/mirror/mirror/</a></p>
<p>Regards,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Documentum Composer A boon for the Developers !!!! by Ajith Prabhakar</title>
		<link>http://ajithp.com/2008/02/01/documentum-composer-a-boon-for-the-developers/#comment-53</link>
		<dc:creator><![CDATA[Ajith Prabhakar]]></dc:creator>
		<pubDate>Mon, 09 Mar 2009 12:01:45 +0000</pubDate>
		<guid isPermaLink="false">http://ajithprabhakar.wordpress.com/?p=40#comment-53</guid>
		<description><![CDATA[Hi Usha, 
Since composer is a eclipse pluggin, you can use composer with any eclipse based IDE, We are currently using Composer with Rational Application Developer as a pluggin,

Well I don&#039;t think you can deploy a DAR on a 5.3x repository. I am not really sure though ...]]></description>
		<content:encoded><![CDATA[<p>Hi Usha,<br />
Since composer is a eclipse pluggin, you can use composer with any eclipse based IDE, We are currently using Composer with Rational Application Developer as a pluggin,</p>
<p>Well I don&#8217;t think you can deploy a DAR on a 5.3x repository. I am not really sure though &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Documentum Composer A boon for the Developers !!!! by usha09</title>
		<link>http://ajithp.com/2008/02/01/documentum-composer-a-boon-for-the-developers/#comment-52</link>
		<dc:creator><![CDATA[usha09]]></dc:creator>
		<pubDate>Mon, 09 Mar 2009 03:41:25 +0000</pubDate>
		<guid isPermaLink="false">http://ajithprabhakar.wordpress.com/?p=40#comment-52</guid>
		<description><![CDATA[Thanks for your reply Ajith,
Is it possible to use any other IDE like IntelliJ for Composer? Can we install DAR in 5.3 content server repository?

Usha]]></description>
		<content:encoded><![CDATA[<p>Thanks for your reply Ajith,<br />
Is it possible to use any other IDE like IntelliJ for Composer? Can we install DAR in 5.3 content server repository?</p>
<p>Usha</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Documentum Composer A boon for the Developers !!!! by Ajith Prabhakar</title>
		<link>http://ajithp.com/2008/02/01/documentum-composer-a-boon-for-the-developers/#comment-51</link>
		<dc:creator><![CDATA[Ajith Prabhakar]]></dc:creator>
		<pubDate>Sun, 08 Mar 2009 16:45:14 +0000</pubDate>
		<guid isPermaLink="false">http://ajithprabhakar.wordpress.com/?p=40#comment-51</guid>
		<description><![CDATA[Hi Usha, You Composer is a eclipse based GUI and you dont need Repository connection to try it out. You cannot obviously test the DAR that you created without a repository, but you can play around with it.  Take the latest version from EMC site .. All the best ..  

Beware &lt;strong&gt;Composer is not bug free &lt;/strong&gt;]]></description>
		<content:encoded><![CDATA[<p>Hi Usha, You Composer is a eclipse based GUI and you dont need Repository connection to try it out. You cannot obviously test the DAR that you created without a repository, but you can play around with it.  Take the latest version from EMC site .. All the best ..  </p>
<p>Beware <strong>Composer is not bug free </strong></p>
]]></content:encoded>
	</item>
</channel>
</rss>

