Hi,
I'm getting an error when i want to release a product to another company.
If i open the view log in the open product releases, i get this error: 'Empty primary key value encountered in table InventTable"
This is the code:
private void checkAutoCreateDimFinTag(FINDimAttributeSetup _attrSetup)
{
DimensionFinancialTag financialTag;
DimensionValue dimValue;
DimensionAttribute dimensionAttribute;
DimensionAttributeDirCategory dirCategory;
;
if(_attrSetup.AutoCreate)
{
dimValue = callerRecord.(_attrSetup.RefFieldId);
if(!dimValue)
{
throw error(strFmt("@DNR1723", tableId2name(callerRecord.TableId)));
}
He doesn't find any dimvalue.
Anyone an idea how to solve it?