Buenas,Yo el problema creo que esta en la siguiente lineavar fichero = document.properties.name;
En la wiki hay un ejemplo muy claro para gestionar las copias, de documentos en un espacio, si lo retocas un poco te valdra.// find the backup folder - create if not already exists
var backupFolder = space.childByNamePath("Backup");
if (backupFolder == null && space.hasPermission("CreateChildren"))
{
// create the folder for the first time
backupFolder = space.createFolder("Backup");
}
if (backupFolder != null && backupFolder.hasPermission("CreateChildren"))
{
// copy the doc into the backup folder
var copy = document.copy(backupFolder);
if (copy != null)
{
// change the name so we know it's a backup
copy.name = "Backup of " + copy.name;
copy.save();
}
}
Saludos