Hi<br>
<br>
Can we insert an Event in the RHS part of a rule to an entry-point?<br>
<br>
basically i am trying to do this. Pls let me know if this is possible?
if not any alternative approaches? Any example would be useful pls<br>
<br>
declare TransactionEvent<br>
        @role( event )<br>
end<br>
<br>
<br>
$tmp : TestClass()<br>
 $tmp.message == &quot;TRUE&quot;<br>
<br>
then<br>
<br>
 TransactionEvent ev1 = new     TransactionEvent ();       // This
should be inserted in to an entry-pont &quot;Temporal Reasoning&quot; stream<br>
      ev1.setMessage(&quot;Temporal Reasoning&quot;)<br>
     insert (ev1)  to entry-point  &quot;Temporal Reasoning&quot;<br>
<br>
end<br>
<br>
<br>
rule &quot;Temporal Reasoning&quot;<br>
<br>
$tmp : TransactionEvent ( message== &quot;Temporal Reasoning&quot;) from entry-point &quot;Temporal Reasoning&quot;<br>
<br>
then<br>
         System.out.println(&quot;Rule fired due to entry point &quot;);<br>
 end<br><br><br><br>Regds<br>Chetan<br>