I have a new data entity which main table has SaveDataPerCompany = No, and it has joined data source to inventDim which is company specific.
During update, in the initializeEntityDataSource() method, during the super call, it is calling those initialize data source for each one added in the data entity. So for inventDim, i got the following error when the record is not in my current company:
Cannot locate data source record of type InventDim with RecId 5637177617. Entity name: xxx, RecId: 5637197827, Database operation: Update.
inventDim data will not be updated for my business scenario, if i remove the super call, the whole entity record is not updated which is not the case i want.
Is there a way that i can skip the initialize data source for inventDim ?