Cannot run a Business Rule in FDMEE 11.1.2.3 using scripts?
I have script in FDMEE to run a business rule for Hyperion Planning. Then I have ran the script and the status of the script executing is correct. However the rule was not executed at all. The content of the script is:
import os
import subprocess
import shutil
os.chdir(r"/d01/app/oracle/product/hyperion/user_projects/epmsystem1/Planning/planning1")
command = r"CalcMgrCmdLineLauncher.sh -f:/d01/app/oracle/product/hyperion/user_projects/epmsystem1/Planning/planning1/Hyperion_Planning_pass.txt /A:CRP2 /U:admin /D:CRP2 /R:R1_Mod"
p = subprocess.Popen(command, shell=True)
retcode = p.wait()