Solved
Hi there! Is it possible to show in views the last data load date? Users would like to see in app when data have been loaded in Celonis. Thank you in advance for your help!
Hi there! Is it possible to show in views the last data load date? Users would like to see in app when data have been loaded in Celonis. Thank you in advance for your help!
Best answer by dennis.pflug
Hi,
two ideas:
- Add field _CELONIS_CHANGE_DATE to your DM and use MAX(_CELONIS_CHANGE_DATE) to get latest date of your data extractions
- Make use of a dummy table that you add to your transactions and which is executed in front of a new data model load. Within this dummy table you just insert the current timestamp:
e.g:
CREATE TABLE LAST_DATA_LOAD AS (
SELECT CURRENT_TIMESTAMP AS LAST_DATA_LOAD
);
BR
Dennis
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.