Help for this page

Select Code to Download


  1. or download this
    # This looks wrong, but it's what you gave us
    my $batches = $data->{Jobs}{Job}{Blocks}{Block}{Batches}{Batch};
    ...
        print $item->{CorporateName} . "\n";
        print $item->{Amount} . "\n";
    }
    
  2. or download this
    my $jobs =$data->{Jobs}{Job};
    for my $job (@$jobs) {
    ...
            }
        }
    }
    
  3. or download this
    GroupTags => {
        Jobs    => 'Job',
        Blocks  => 'Block',
        Batches => 'Batch',
    },