Christanto Leonardo
Christanto Leonardo

Reputation: 31

How to escape "/" in document name in Documentum DFC/DFS

How to escape "/" when you want to retrieve document like "/Templates/Blank Access 97 / 2000 Database" by object path in Documentum using DFS or DFC?

Upvotes: 0

Views: 1099

Answers (1)

Brendan Hannemann
Brendan Hannemann

Reputation: 2154

I noticed you posted on http://developer.emc.com as well. Not sure if you saw the response, but I believe it is the only way to do what you are asking for. Alternatively, you could query for it using DQL and then use the Chronicle or Object ID to get it with DFS/DFC.

session.getObjectByQualification("dm_document where FOLDER('/Templates') and object_name='Blank Access 97 / 2000 Database'");

It looks like object names do not have this restriction. For instance, when I query my repository with the following, I get loads of results:

select * from nlrb_document where title like '% / %'

Upvotes: 1

Related Questions