Conditional Format

kread

Active Member
In my JDE report, I have a conditional section that executes multiple times. My xml shows each time the section executes. The module prints a bill of lading so for each order on the shipment, it returns to the calling section and then performs my conditional section.

In BI, I want it to print the data from the last line of the conditional section. It's printing the line from the first time it cycles through the section. I'm creating grand totals in this section so I only want the last line.

Is there a method to tell BI which line of a repeating section that I want to print? I've reviewed the parameters I set up in the conditional Format but don't see a way to tell it which line to use.

Thank you,
Kelly
 
Dude,

just chg the UBE so output is suppressed until you reach the end / grand totals.
 
Not entirely sure this is what you want...
but you can identify the loop iteration using position().
then I believe you can idenfitfy the last iteration using last(). so check if position() = last (). would that work for you?
 
Back
Top