Suppose we have a table as
Vbeln Posnr Erdat Matnr Maktx
10 110508 --- --- ---
10 120508 --- --- ---
10 130508 --- --- ---
20 110508 --- -- --
20 120508 --- -- --
20 130508 --- -- --
30 110508 --- -- --
30 120508 --- -- --
30 130508 --- -- --
The fields Erdat , Maktx and Matnr also have data's. we want to display the output as below:
Order: 10
Posnr Erdat Matnr Maktx
110508 --- --- ---
120508 --- --- ---
130508 --- -
---
Order: 20
Posnr Erdat Matnr Maktx
110508 --- --- ---
120508 --- --- ---
130508 --- -
---
Order: 30
Posnr Erdat Matnr Maktx
110508 --- --- ---
120508 --- --- ---
130508 --- -
---
Which statement will be more suitable to use in this case: At new or On Change?
How will we implement it?