Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Content Management (Extended ECM)
API, SDK, REST and Web Services
Searching "From Here" using Java LAPIs
Jordi_Masip_(azertiaadmin_-_(deleted))
Is it possible to perform a search with "From Here" criteria using Java LAPIs?Thanks
Find more posts tagged with
Comments
Richard_Boyne_(boyne_(Delete)_891609)
From the Remarks section of the ApplyQuery function description in the online LAPI documentation:--------------------------------------To perform a recursive search on a Livelink container object (equivalent to the Livelink Web interface's "From Here" search), you must specify the container object's node ID in a search of the OTLocation region. For example to search for all objects with "security" in their names, under a Folder that has the node ID of 234567, the Where clause for ApplyQuery would appear as follows:OTSTARTS: ( [ region "OTLocation" ] "234567" ) AND ( [ region "OTName" ] "security" ) Livelink Query Language: ( "OTLocation" : "234567" ) AND ( "OTName" : "security" ) The search is performed on all objects directly under the folder and recursively into any container objects under the folder.----------------------------------------------------