Getting absolute path of an Object
how to get the absolute path of given object id using j开发者_如何学JAVAava dfc in documentum.
Try something like:
IDfSysObject obj = (IDfSysObject)session.getObject(id);
String path = obj.getPath(0)
Note that you can use different parms in getPath() if your object has more than one content.
精彩评论