08-19-2013 04:52 PM
var results=search.luceneSearch("+PATH:\"/app:company_home/st:sites/cm:contract-management/cm:documentLibrary/cm:ActiveContracts//*\"+TYPE:\"{duca.contracts.model}contract\"");
var maxContractNumber=0;
for (var i=0;i<results.length;i++)
{
if (results.properties["contract:contractID"]>maxContractNumber)
{
maxContractNumber=results.properties["contract:contractID"];
}
}
document.properties["contract:contractID"]=maxContractNumber+1;
document.properties["contract:isActive"]=true;
08-20-2013 01:19 AM
08-20-2013 09:22 AM
document.properties["contract:contractID"]=Math.round(maxContractNumber+1);
08-20-2013 04:55 PM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.