WFA newbie is stumped.
Building a 3-step cDOT workflow (see attached). The second step uses the "Remove CIFS Share ACL" command.
The UserInputs for Cluster, Vserver and Share and cascading selects. It took me a long time to formulate the SQL-SELECT for the $ShareName UserInput because I want it to only show shares on that cluster/vserver. The UserInput selects seem to operate as I want but something must be wrong. When I preview or execute the WF I get this error:
Illegal expression: share.vserver.cluster.primary_address - property 'cluster' can't be resolved
At command 'Remove CIFS Share ACL', tab 'Cifs_Share', variable 'share'
The entire WF is attached. The $ShareName UserInput SELECT code is here (since I created this part I suspect it could be in value ... though at user-input run-time it does what I expected)
====
SELECT
cifs_share.name
FROM
cm_storage.cluster,
cm_storage.vserver,
cm_storage.cifs_share
WHERE
cluster.name = '${ClusterName}'
AND vserver.name = '${VserverName}'
AND cifs_share.vserver_id = vserver.id
ORDER BY
cifs_share.name