04-12-2007 11:23 PM
04-30-2007 06:33 AM
05-14-2007 08:19 PM
if (document.isDocument && (1 == document.hasAspect("cm:workingcopy"))) {
// find the backup folder - create if not already exists
var checkoutsFolder = userhome.childByNamePath("My Checkouts");
if (checkoutsFolder == null && userhome.hasPermission("CreateChildren"))
{
// create the folder for the first time
checkoutsFolder = userhome.createFolder("My Checkouts");
}
if (checkoutsFolder != null && checkoutsFolder.hasPermission("CreateChildren"))
{
// move the doc into the checkouts folder
document.move(checkoutsFolder);
}
}
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.