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?
Solved! Go to Solution.
Solved it, simply as follows:
<script>
bpm_package.children[0].move(vorwf_folderLink);
</script>
Solved it, simply as follows:
<script>
bpm_package.children[0].move(vorwf_folderLink);
</script>
Ask for and offer help to other Alfresco Process Services and Activiti Users and members of the Alfresco team.
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.