Data Movement Between TM1 instances on Workflow Action
Posted: Thu Nov 12, 2015 2:47 pm
Hello Everyone, we came across a scenario where on the final submission of the root node in a approval application we need to trigger a data transfer from server A to server B. To accomplish this we have plugged a TI process on Submit action of the approval application on server A for each node. And we monitor that if the current node is root node using pNodeId parameter. If the current node is root node then our process on server A will try to connect to server B using TM1RUNTI utility via "ExecuteCommand" as shown below. Now the problem is, the process on server B is never called using this method. Or in other words it appears that it fails in connecting to server B
We are running TM1 10.2.2 and our admin servers are on RedHat OS. Any suggestion what we are missing syntactically or are there any restriction on using TM1RUNTI on Linux box?
Thanks !!!
We are running TM1 10.2.2 and our admin servers are on RedHat OS. Any suggestion what we are missing syntactically or are there any restriction on using TM1RUNTI on Linux box?
Thanks !!!
Code: Select all
vStr = 'tm1runti -adminhost xyz.myhost.com -server "Server B" -user "abc" -pwd "xyz" -CAMNamespace "MyDomain" -process "Get Transfer Node Status"';
ExecuteCommand(vStr,1);