Hello all,
What is the right way to get the process status code in an event script for email notification on successful export? Here I am looking to get the process status code instead of expstatus value (1) which is true for a successful export. As per the tlogprocess 21 is the process status code returned for a successful export
Help Appreciated!!
if fdmContext[EXPSTATUS] == "21":
OR
stat = fdmAPI.getProcessStates(fdmContext["LOADID"])
expStatus = str(stat["EXPSTATUS"])
if expStatus == "21":