Good day.
I make an extension for VendorInvoiceHeaderEntity and I use for some actions insertEntityDataSource method
For example, I simplified it
public boolean insertEntityDataSource(DataEntityRuntimeContext _entityCtx, DataEntityDataSourceRuntimeContext _dataSourceCtx) { return next insertEntityDataSource(_entityCtx, _dataSourceCtx); }
However, I see as a result of the work (in general, in the standard class)
Sometimes the same error pops up on my method, which is logical since the order of the call is not highly regulated.
Without the new insertEntityDataSource, everything works.
Why? Has anyone seen such a thing? How can this problem be treated?