Hi,<br><br>Are static imports as shown below allowed in rule files? It is giving me a parse exception.<br><br>package mypackage;<br><br>dialect &quot;mvel&quot;<br><br>import mypackage.CreditTransferTransactionInformation10;<br>
import static mypackage.ValidationHelper.invalidate;<br><br>global java.util.Set accountNumbers;<br><br>rule &quot;Check debtor account number is not null&quot;<br>    salience -1<br>when<br>    $c : CreditTransferTransactionInformation10 ( eval( dbtrAcct.?id.?othr.?id == null ) )<br>
then<br>    invalidate($c, &quot;PG003&quot;, &quot;Account number is absent&quot;);<br>    drools.halt();<br>end<br><br>Ta<br>Meeraj<br>