I have a query:
for each a where ...,
each b where ...,
each c where ...,
break by c.xxx by c.yyy by c.zzz.
I need the break by's to vary according to user input.
When I try to define a query:
def query qa for a, b, c.
if ... then open qa for each a... (as above)
then it won't compile because:
BREAK requires query be defined SCROLLING. (14283)
How can I set variables for the "break by"?