Hi Team,
I have one DSO1 where it contains all data for EBELN,EBELP,created on,posting date and description etc.
I will be creating another DSO2 on top of old DSO,and in the transformation i need to write on rotine to clean up data.
Routine logic:for one po number-one po item or multiple item can exist.But not repeated same item.
I need the data in DSO2 from latest values. the old one should get deleted in DSO2
Whether it can be written in start routine or end routine.
Please help
In dso1 the records is like below
ebeln | ebelp | product descrip | created on |
1000 | 1 | tv | 3/9/2013 |
1000 | 1 | tv | 3/10/2013 |
1000 | 2 | fan | 8/3/2013 |
1000 | 2 | fan | 8/4/2013 |
My expected output should be IN dso2 will be
ebeln | ebelp | product descrip | created on |
1000 | 1 | tv | 15/9/2013 |
1000 | 2 | fan | 8/4/2013 |