Anyone have same issue with new C5 The new version C5 has been problem for me with Deluge Script in many times my if conditions for the Operator<opr> has to be in reverse. For example;
Correct statement should be "if(Sch_Weekday == 2)", but I have use Operator<opr> "!=" (not equal) in reverse.
if(Sch_Weekday != 2)
{
input.Monday_Date = input.Sch_Effective_Date.addDay(7);
}
else
{
input.Monday_Date = zoho.currentdate;
}