05-23-2017 12:54 PM
Hi all
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?
05-24-2017 08:18 AM
Solved it, simply as follows:
<script>
bpm_package.children[0].move(vorwf_folderLink);
</script>
05-24-2017 08:18 AM
Solved it, simply as follows:
<script>
bpm_package.children[0].move(vorwf_folderLink);
</script>
Explore our Alfresco products with the links below. Use labels to filter content by product module.