[ExtensionOf(tableStr(CustTable))]
final class AB_CustTable_Table_Extension
{
void insert(DirPartyType _partyType, Name _name, boolean _updateCRM)
{
next insert(_partyType, _name, _updateCRM);
this.myCustomField = any2str(this.RecId) + "_" + this.someField + "_" + this.anotherField;
}
void update(boolean _updateSmmBusRelTable, boolean _updateParty)
{
this.myCustomField = any2str(this.RecId) + "_" + this.someField + "_" + this.anotherField;
next update(_updateSmmBusRelTable, _updateParty);
}
}