AX / D365FO – Override The JumpRef method On A Base Form with Chain of command

I want to override the standard behaviour when I click on CustTable_tutStoreId control of my CustTable Form First create an extension class of your form and create a new method tutStoreIdJumpRef [ExtensionOf(formStr(CustTable))] final class tutCustTable_Form_Extension { public void tutStoreIdJumpRef(FormControl _formControl) { Args args = new Args(); MenuFunction menuFunction; RetailStoreTable retailStoreTable; retailStoreTable = RetailStoreTable::find(_formControl.valueStr()); args.record(retailStoreTable); menuFunction … Continue reading AX / D365FO – Override The JumpRef method On A Base Form with Chain of command