So i add everything as it should, my report generates a text file, but… How to read band’s result? I got a band, say, dataBand which have a list of maps called result in my groovy dataset which looks like [ [ 'enum': 1, 'payload': 'hello' ], [ 'enum': 2, 'payload': 'world' ] ]
in my java-defined template i have return rootBand.getChildByName("dataBand").getData().toString().getBytes
which returns me only a first map in list [ 'enum': 1, 'payload': 'hello' ]. how to get next results in this dataset?