cancel
Showing results for 
Search instead for 
Did you mean: 

Is it possible to update ACT_HI_DETAIL?

mittalabhi86
Champ in-the-making
Champ in-the-making
Hello,

One of our requirement wants us to update the ACT_HI_DETAIL table's data. We want to clear the values of selective variables, based on whether the variable contains sensitive data or not.

I can see no executeUpdate() in nativeHistoricDetailQuery, neither can I find update() in corresponding entityManager.

Please suggest, is it possible? If yes, how can that be done?

PS: I think overriding entityManager and mapper could be one solution, but just want to check if there's another easier approach.

Regards
Abhishek
2 REPLIES 2

martin_grofcik
Confirmed Champ
Confirmed Champ
Hi Abhishek,

HI_* tables should not be changed (except archiving….).
Do not write sensitive values into HI tables (change logging). (Sensitive values are still stored in runtime tables.)

Regards
Martin

mittalabhi86
Champ in-the-making
Champ in-the-making
Thanks Martin!