Hello Ganesh,
I think the following should work, although there are multiple solutions possible.
Use a LOOP with the ITEM table as data.
Next, create a TABLE under this LOOP. The data for this TABLE are the DELIVERY SCHEDULE lines.
In the HEADER section of the TABLE, write the header labels AND most importantly, the ITEM line data. Make sure you repeat the header at page break.
In the MAIN section, you can print the SCHEDULE line data.
After the TABLE, but still UNDER the LOOP: create a COMMAND for page break, so that the next ITEM will be printed on a new page.
Visually, it will look like this:
LOOP (items)
--- TABLE (delivery schedule)
HEADER: labels + ITEM data
MAIN : DELIVERY SCHEDULE data
FOOTER
--- COMMAND (new page)
Have fun!
Best regards,
Zhou