tmannais
8th April 2019, 13:19
Hi,

I have a session that displays header data and its lines.
At the moment, when print on the header it will print one report containing all the data from header to lines within that single report.
I need to make it so that it prints out 1 report per line data instead and the data in each report will come from its respective line data.
How can I do such task?

Regards,
Thana

bhushanchanda
8th April 2019, 13:55
You need to do something like this -



Open Report e.g. rprt_open()

Print Data e.g. rprt_send()

Close Report e.g. rprt_close()



Repeat the above steps for each line.

tmannais
10th April 2019, 13:45
You need to do something like this -



Open Report e.g. rprt_open()

Print Data e.g. rprt_send()

Close Report e.g. rprt_close()



Repeat the above steps for each line.

Thank you. I will try it out.