Coudl you please help us from following issue:
I have data comes from database as below:
employee name, group, group header, Employee Parent
Group values are A, B, C and D and emp a is with Group A, and Group B.
I want to filter employees based on group A and group B.
So I provided the criteira
crt = new crt()
crt.addCriteria("Group", "A");
crt.addCriteria("Group", "B");
But it is executing the last critiera that is group B.
I tried with Advanced Criteria with in operator and other conditions such as control header is true and employee is null.
nothing seems to be working in this case.
could you please suggest how to get two values from the same column (Group) and also checking null for anther in the same criteira.
I have data comes from database as below:
employee name, group, group header, Employee Parent
Group values are A, B, C and D and emp a is with Group A, and Group B.
I want to filter employees based on group A and group B.
So I provided the criteira
crt = new crt()
crt.addCriteria("Group", "A");
crt.addCriteria("Group", "B");
But it is executing the last critiera that is group B.
I tried with Advanced Criteria with in operator and other conditions such as control header is true and employee is null.
nothing seems to be working in this case.
could you please suggest how to get two values from the same column (Group) and also checking null for anther in the same criteira.
Comment