Evaluate all rows decision table
I am doing an "evaluate all rows" in the decision table, when I want it to list me the list of values. E,g if creature name is mammal, I want it to return "Bat,1, female" AND also "Lion, 2, Male". Is this possible to achieve?
I am doing an "evaluate all rows" in the decision table, when I want it to list me the list of values. E,g if creature name is mammal, I want it to return "Bat,1, female" AND also "Lion, 2, Male". Is this possible to achieve?
| Primary.AnimalClasses.CreaturesName | Primary.AnimalClasses.AnimalsList(<APPEND>).Name | Primary.AnimalClasses.AnimalsList(<APPEND>).Age | Primary.AnimalClasses.AnimalsList(<APPEND>).Gender | |||
| when | Mammal | Bat | 1 | Female | ||
| when | Mammal | Lion | 2 | Male | ||
| when | Amphibian | Frog | 3 | Female | ||
| when | Amphibian | Newt | 4 | Male | ||
| when | Reptile | Crocodile | 5 | Female |
***Moderator Edit-Vidyaranjan: Updated Platform Capability***
Did you want something like this ? may be you want to use keyword "LAST" instead of "APPEND" for the gender and age column.
If this is what needed, would not suggest to do like this. take the logic of appending to pagelist outside of decision table. decision table should be reusable , with hardcoding of page name in the column it is made very specific.