ok, it seems you are right.
But does that mean that if there is no these licence coded it is impossible to insert record programmably?
LedgerJournalTrans LJT;
<...>
<assingning values to the LJT fields>
LJT.insert();
inside table insert() method the value is being assigned:
if (! this.offsetCompany)
{
this.offsetCompany = curExt();
}
but in further code the value of that field still remains empty that causes wrong behavior in the application
when AssetBook::lookupOpenBookIdForAsset() is invoked.
|