Hey guys,
My models is like this : PSA(2lis_12_vcitm) --> DSO1(Overwrite) --> DSO2(Summarion).
Once a delivery order is deleted in ECC, recordmode 'R' will be generated.It is ok in the transformation between PSA and DSO1,but not correct in the transformation between DSO1 and DSO2.Because of Summarion,the key fields are cut down in DSO2,So that Recordmode 'R' will delete all the records base on the new key fields in change log table.this will delete some records which should be reserved.
For example:
DSO1:
order(K) | item(K) | company | amount | recordcode |
10001 | 10 | 1000 | 100 | N |
10002 | 10 | 1000 | 100 | N |
10001 | 10 | 1000 | -100 | R |
DSO2
company(K) | amount | recordcode |
1000 | 100 | N |
1000 | 100 | N |
1000 | -100 | R |
For DSO1 Recordmode 'R' will delete the first record,it is normal
For DSO2 Recordmode 'R' will delete the first and second records, it is error.
how to deal with this case?
Thanks
Sam