I'd like to know if at all possible how to write a Crystal Report that traverses parent-child relationships and prints each parent and child while exploding through the different levels of variable depth (unknown). Typical such data structures are Bill of Materials.
In my programming days, I would write a recursive routine (that would call itself) passing the child to the routine. The routine would find all children of the parent passed to it, and in turn call itself again passing each of the children. This way a parent-child structure could be "exploded" through to all depths. Can this type of report be written in Crystal, and how?
Thanking you in advance,
Leo
In my programming days, I would write a recursive routine (that would call itself) passing the child to the routine. The routine would find all children of the parent passed to it, and in turn call itself again passing each of the children. This way a parent-child structure could be "exploded" through to all depths. Can this type of report be written in Crystal, and how?
Thanking you in advance,
Leo