Open
Description
The change tracking is not working when we have multiple key fields for an entity, Is this a limitation ?
Example below works, The changes are updated and displayed in the object page
entity Books {
key ID : Integer;
title : String;
stock : Integer;
}
Whereas when you have multiple key field the The changes are not displayed in the object page
entity Books {
key ID : Integer;
key title : String;
stock : Integer;
}