ARM data load execution from FDMEE scripts
Hi guys,
I'm trying to execute data load into ARM from FDMEE (Atfimport script). I could do it but have a problem: It runs indefinitely.
The script i used to do it is:
if HypHome<>'':
scrPath=HypHome+"\\products\\AccountReconciliation\\bin\\"
else:
#local for debug only
scrPath="C:\\Oracle\\product\\11.1.1\\ARM\\bin"
#Parameters Tuple must be full patch to script, User ID, Password (or -f:{pwdfile}),Arm Data Load, Period
#callParms=[scrPath+"\loaddata.bat",strRulParm1,"-f:"+strRulParm1,strRulParm2,strARMPeriod]
callParms=[scrPath+"\loaddata.bat",strRulParm1,"-f:"+strRulParm1,strRulParm2,strARMPeriod]
if os.path.isfile(scrPath+"\\"+strRulParm1):
p = subprocess.Popen(callParms,cwd=scrPath,stdout=subprocess.PIPE,stderr=subprocess.PIPE,shell=False)