Hi,
I have a table containing orderdata, the table looks like this:
ORDER PART QUANTITY
5455168 FK1211 10
5455168 FK451 4
5455168 AGSNT01 1
5455168 AS771 2
5455168 AS551 3
I want to break down the lines to individual lines instead of being summarised. So in total 20 lines should be displayed.
I have tried with the following code, but it won't work:
for i := 1 to {ORDERLINES.QUANTITY}
{ORDERDETAIL.PART}
i + 1
next i
Any help would be appreciated.
I have a table containing orderdata, the table looks like this:
ORDER PART QUANTITY
5455168 FK1211 10
5455168 FK451 4
5455168 AGSNT01 1
5455168 AS771 2
5455168 AS551 3
I want to break down the lines to individual lines instead of being summarised. So in total 20 lines should be displayed.
I have tried with the following code, but it won't work:
for i := 1 to {ORDERLINES.QUANTITY}
{ORDERDETAIL.PART}
i + 1
next i
Any help would be appreciated.