Jython Script is not working
Hi All,
This script checks to see if the ICP member is equal to the Entity member and if this is true, the ICP member is defaulted to 1601_Corp. In this script, it also checks if the field is left blank and places a “#” if found to be true.
here the script
def EagleICP2(strfield,strrecord):
if int(strfield)==int(strrecord.split(';')[7]):
return "1601_Corp"
if strfield == ''.strip():
return "#"
But script is not working, I am getting the value "None". Please correct the script because I am unable to identify the issue.
Thanks,
Nani