Question:
Hello everyone,
I have 2 ODS.
1 = ZODS1
2 = ZODS2
Key fields in ZODS1 = A, B , C, D
Key fields in ZODS2 = A, B , C
I have to load data from ZODS1 to ZODS2.
So i have to select from ZODS1 and group the data using key A,B,C and some other condition.
This iam doing in START ROUTINE of update rules in ZODS2.
So what is logic in START ROUTINE to group the data coming from ZODS1 into ZODS2 based on the key A,B,C.
Can you please let me know the process???
Thanks
Guest
Answer:
what do you want?Code or Principle?
Answer:
Hello everyone,
My problem is.....
When iam loading from ZODS1 to ZODS2 then i have to summarize before loading to ZODS2 in start routine to check a condition.
Iam explaining with an same example ...
ZODS1
-----
Ordernumber | LastChangedOn | QTY
111 20.01.2005 10
111 21.01.2005 -10
222 20.01.2005 20
222 21.01.2005 -10
ZODS2
-----
Ordernumber | QTY
222 10
In ZODS2 i should have only ORDERNUMBER "222" because QTY=0 or <0.
So to check the QTY is <=0 in START ROUTINE i want to group the data coming from ZODS1 using Ordernumber.
So can you please explain the process to be implemented to group the records.
Thanks
KT