Hi,
I am trying to retrieve List values from DCR. I am able to retrieve only first value from multiple values present in the list.
My list present inside container (2 level hierarchy). Using for loop I am accessing the list item.
Below is the snippet of code...
@reps = $oldrootnode->get_node_list('Associations');
for $rep (
@reps) {
@rep1 = $rep->get_node_list('Orderable Parts');
for $rep2 (
@rep1) {
$rep3 = $rep2->value('Selected Orderable Parts List');
print "rep3 : $rep3 "; // displays first value from the list.
}
}
I want to get the all the values from list.
Please help in this regard