I am working on a project to integrate our product with documentum. The documentum we are using is version 6.5. I am using the .NET productivity layer of the DFS sdk 6.5 for my development. I have a question about the full text search functionality. I have a DQL query like the following:
select r_object_id, object_name from dm_document search document contains 'searchword' where folder('/cabinet1');
This query does not work because it does not return any document even though there are documents in that folder that matches the search word. But if I remove the WHERE condition, it searchs the whole repository and returns the correct results. My question is, how do I use full text search to search only a certain cabinet or folder instead of the whole repository? Is my DQL query correct? (Look like it is not since it does not return the correct results). If not, how should I write the DQL query? Thanks a lot.