In stateful session this should work, there is a bug in stateless that is now fixed (where not/exists is the first CE) and will be in 4.0.1 next week.

Mark
Manukyan, Sergey wrote:

Folks,

Using 4.0 GA.

Need to have a rule that executes when there exists a Supplier with business status == active. I am inserting Supplier in working memory.

I did that :

rule #1

when

            exists( Supplier( businessStatus.status.isActive == true ) )

then

            System.out.println("FOUND!!!!");

End

But it doesn't work....

Although other rules like if there is supplier with name = "SOME NAME" -- they work :

rule #2

when

            exists( Supplier( name == "SOME NAME" ) )

then

            System.out.println("FOUND!!!!");

End

Any ideas how to make rule #1 work.... ?

Thanks,

Sergey

**********************
** LEGAL DISCLAIMER **
**********************

This E-mail message and any attachments may contain
legally privileged, confidential or proprietary
information. If you are not the intended recipient(s),
or the employee or agent responsible for delivery of
this message to the intended recipient(s), you are
hereby notified that any dissemination, distribution
or copying of this E-mail message is strictly
prohibited. If you have received this message in
error, please immediately notify the sender and
delete this E-mail message from your computer.

------------------------------------------------------------------------

_______________________________________________
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users

_______________________________________________
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users

Reply via email to