hi, i got a problem i had a report dealing with sales header and sales invoice line. i did the relationship data model but the user wants the first record of the sales line displaying only the "description" field after the sales header details are shown. how do i accomplish this?
0
Comments
You have to add an integer loop, before the sales invoice line loop. In this integer loop, you can go through the sales invoice lines. The first line should be printed (you have a separate section for this loop), for the other lines, use the SHOWOUTPUT(FALSE) statement to skip these lines.
In the exisiting sales invoice line loop, you do the opposite.
You might need some reporting experience to accomplish this.