views:

179

answers:

1

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