Can you execute a programmable section outside of report fetch method? If so, how?
example:
public boolean fetch()
{
While select * from tmpTable
{
element.send(tmpTable);
this.calcTotals();
}
}
publid void calcTotals()
{
//do some stuff
element.execute(1);
}