Why fteCreateTransfer received " BFGPR0057E: The program specification '"executable: Program.bat,,, 0"' is invalid' when attempting fteCreateTransfer -postdst processing from z/OS batch job to be invoked at the destination agent on Windows after the transfer has completed. The parameters used from the z/OS batch job are:
-w -sa source_agent_name -sm CSQ1 -da destination_agent_name -dm destination_agent_qmgr_name -postdst "executable:file.bat,,,0" -t text -de overwrite -df "T:/TEMP/IN/file1.DAT" "//'XXX.TMP.PDSFS.FILE01'"
Answer by Beverly Kingsley (1472) | Mar 01, 2016 at 08:17 PM
Remove the double quotes which are required for Windows platform -POSTDST to work. It should be:
-postdst executable:file.bat,,,0
NOT:
-postdst "executable:file.bat,,,0"