Assuming you have running delta loads, just add a transformation job in the beginning that deletes older data
Example: delete data older than CURRENT year
DELETE
FROM TABLE
WHERE YEAR(TABLE.DATECOLUMN)<YEAR(TODAY())
Another alternative is to extract only the relevant data in a full load again and rerun the transformations and Data model load. Therefore you are also saving APC within the EMS.
Best,
Kevin
Running full loads on O2C tables such as CDPOS and VBFA can be tricky as they are heavy tables and might fail before completion.
The other reason to avoid full loads is that obviously, they take way longer to complete (sometimes >24h from extraction to transformation on O2C models).
Still, if you opt to run full loads, you need to make some adjustments as detailed here
Best,
Gabriel
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.