Hello Experts,
I am new to livelink Web Services. I need to search all documents in the system
by providing attributes like OTLocation, OTName, OTSubType and some custom attributes with their specific values in search spec. Could you please assist me to build the searchspec object.
In LAPI call it will be look like:
searchSpec = "( (OTLocation: " + "96146"+ " )";
searchSpec = searchSpec.concat(" AND ( OTName: (" + "hipath" + ") ) ) ");
searchSpec = searchSpec.concat(" AND ( (OTSubType: ( 30613 OR 30614 OR 30615 OR 31235 ) ) ");
// where = where.concat(" AND-NOT ( OTSubType: "+documents.FOLDERALIASTYPE+" ) )");
searchSpec = searchSpec.concat(" OR ( (OTSubType: 30616) AND (CUSTOM_ATTR: ( \"General \" OR \"List\" OR \"Release\" ) ) ) )")
Thanks and Regards,
Deepak Ingwale