Hello experts,
I was wondering if is possible to delete a source package in a start routine by joining a temporary table. E.g
I have this sourcepackage
Invoice | Amount
1 972643
2 976324
3 23425
4 21323
And I have this temporary table
Document Invoice
1 2
2 2
3 2
4 3
I would like that the ODS only have matching Invoice values, Example.
Invoice | Amount
2 976324
3 23425
It is possible to left join the source package and delete where document is initial?
What is the best way to get the better performance?
any further question please let me know
thanks in advance