how to get the absolute path of given object id using java dfc in documentum.
+1
A:
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.
Michael Rutherfurd
2010-05-01 08:41:57