All,<br><br>I am in the process of migrating my rules from the 2.1 format to the 3.0.5 format and I was wondering if the new version automatically does Null checks. For example I have the following:<br><br><java:condition>
contact.getAccessoriesSelection() != null</java:condition><br><java:condition>contact.getAccessoriesSelection().getAccessoriesTotal() != null</java:condition><br><br>I was wondering if under the new set I could do the following:
<br><br>rule "total calc"<br> when<br> contact : Contact(accessoriesSelection.accessoriesTotal != null)<br> then<br> # Add to the total<br>end<br><br>Ron<br>