03-08-2011 01:53 AM
rule "salarycheck"
when
(salary > 3000) && (age < 30)
then
ruleOutput = "pattern1";
end
08-15-2012 11:03 AM
08-16-2012 10:05 AM
ksession.insert(execution.getVariables());
And the rule below works fine:
import java.util.Map;
rule "ChoseGroup"
when
Map( this["actionType"] == "tech" )
then
System.out.println("The group chosen is engineering");
insert("engineering");
end
In the "Candidate Group" of the next task, I assign ${ruleOutput} and this works too.08-20-2012 10:29 AM
08-21-2012 02:57 AM
knowledgeRuntime.getGlobals().setDelegate(customGlobalsImplWithLazyLoadingOfVariables);
08-21-2012 08:16 AM
08-21-2012 08:20 AM
08-21-2012 10:22 AM
08-21-2012 01:02 PM
08-22-2012 04:02 AM
08-22-2012 04:36 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.