Hi,
Is it possible to change the way that a file (or folder) is displayed (e.g. hidden) using Web Services 9.7.1?
Is there somewhere an overview of what is possible with Web Services?
Thanks,
Koen
Hi Koen,
Hi Jason,
Thanks for the reply. Is there some documentation where I can find these kind of things?
Below is the Java code in case someone would like to use it:
public void makeNodeHidden(int nodeId) { Node node = documentManagement.getNode(nodeId); node.setCatalog(2); documentManagement.updateNode(node);}
Please see the definition of a Node in the API documentation:
https://knowledge.opentext.com/knowledge/llisapi.dll/fetch/2001/15080935/-15106263/15106294/16376487/17990637/17990649/17990650/18047148/javadoc/com/opentext/livelink/service/docman/Node.html
In particular, the getCatalog and setCatalog method information:
setCatalog(Integer value) Sets the integer controlling the display of the node in Livelink's browse view (0=list,1=featured,2=hidden)
setCatalog
(Integer value)
Regards,
Kyle