2010年6月1日 星期二

Runtime IWshShell3 Failed

A troubleshooting request from the customer.
The issue is that he or she run into a VBA error when trying to run Informatica Workflow with pmcmd command.

The error is "Runtime IWshShell3 Failed".

Google for the answer, and got a possible solution as

Replace this:
Sh.Run "G:\DATA\123FILES\Special Assets Project\Monthly_Import\filemove.fxp"
By this:
Sh.Run """G:\DATA\123FILES\Special Assets Project\Monthly_Import\filemove.fxp"""
Or this:
Sh.Run Chr(34) & "G:\DATA\123FILES\Special Assets Project\Monthly_Import\filemove.fxp" & Chr(34)


Not try the solution yet, but memorize it first.