I'm trying to implement a script within my workflow definition which moves a file to a folder pre-selected by the workflow initiator. Currently, I have a cm:folder association called "vorwf_folderLink" and I am using the following code to move the file:
<script>
bpm_package.children[0].move(vorwf_folderLink.children[0].parent);
</script>
This works fine for higher-level folders, but if I select a folder which has no subfolders in it, I get the following error message:
Cannot read property "parent" from undefined
Can anyone explain why this error is appearing, or suggest an alternate method to achieve my goal?
Below statement will try to get the children of the folder association which you have created.If there are no children it will throw an exception i guess.
vorwf_folderLink.children[0].parent
Instead of above just put the vorwf_folderLink
.