@b22
I'm using the Netapp created WFA command "Create VMware vDisk".
----
If by 'NetApp created' you mean NetApp provided and certified (for correctness in functionality), then I don't think there is any such command given by NetApp. If you have obtained this command from a NetApp Professional services, then you have option to ask for PS support on it. If its created by you or your team, the netapp open community is the right place to ask questions on it and hope for an answer.
So why is the preview working but not the actual execution.
----
You need to understand what is this 'Preview'.
A workflow execution is a 2 step process
1. Preview or Planning
2. Command code execution
A preview is workflow 'planning'. What happens in preview?
Its finds your resources as per your selection criteria.
Resolves user-inputs
It prepares what inputs to be passed to command parameters.
A command to be excuted or not based on your condition.
etc.
WFA developer's guide will give the whole list of actions WFA does during preview.
In broad terms its makes your workflow ready for execution. NO Command code executes during Preview. Failure in 'Preview' happens when any of the above fails which means your workflow is not ready for execution phase.
Sucess in Preview doesn't assure that the command code will also pass. There is NO way for WFA to predict will the code pass or not. Preview can only say what arguments will be passed to parameters in the command code during the next phase which is code execution.
The error you are getting it ( "the argument for the parameter "name" cannot be checked. The argument is null or empty").
is thrown during execution phase. It means you need to check you command code.
sinhaa
If this post resolved your issue, help others by selecting ACCEPT AS SOLUTION or adding a KUDO.