You&#39;ve not described what you are tying to achieve.<br><br>If you can explain what it is you want the rules to do we might be able to advise an approach.<br><br><div class="gmail_quote">On 12 February 2013 11:26, Aditi Hardas <span dir="ltr">&lt;<a href="mailto:aditi.hardas@gmail.com" target="_blank">aditi.hardas@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Mike ,<br>
<br>
Thx for your response.I have added a String type list in my Applicant<br>
POJO.But I do not know how to pass a String into Guvnor.<br>
<br>
I try some cases.<br>
<br>
  when<br>
        pr : PolicyRecord( policyStatus == 0 , policyType == 1 )<br>
        ptdf : PayTypeDepositFund( mode == 0 )<br>
  then<br>
        ptdf.setMode( 2 );<br>
        ptdf.setOrder( 0 );<br>
        update( ptdf );<br>
        Applicant a = new Applicant();<br>
        a.setLst( &quot;aa&quot; );<br>
        insert( a );<br>
 end<br>
<br>
I suppose that setLst(&quot;aa&quot;) is tacking string arrgument but still getting<br>
error.<br>
<br>
then I pass thik this<br>
 when<br>
        pr : PolicyRecord( policyStatus == 0 , policyType == 1 )<br>
        ptdf : PayTypeDepositFund( mode == 0 )<br>
   then<br>
        ptdf.setMode( 2 );<br>
        ptdf.setOrder( 0 );<br>
        update( ptdf );<br>
        Applicant a = new Applicant();<br>
        a.setLst( aa );<br>
        insert( a );<br>
end<br>
<br>
But i Still getting the same error.<br>
<br>
<br>
<br>
-----<br>
Aditi<br>
--<br>
View this message in context: <a href="http://drools.46999.n3.nabble.com/guvnor-5-5-Guided-decision-tables-web-based-tp4022179p4022241.html" target="_blank">http://drools.46999.n3.nabble.com/guvnor-5-5-Guided-decision-tables-web-based-tp4022179p4022241.html</a><br>

<div class="HOEnZb"><div class="h5">Sent from the Drools: User forum mailing list archive at Nabble.com.<br>
_______________________________________________<br>
rules-users mailing list<br>
<a href="mailto:rules-users@lists.jboss.org">rules-users@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/rules-users" target="_blank">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>
</div></div></blockquote></div><br>