Comments
Further enhancement ideas:to display more information about Charges - currently not really displayed, the amount can be calculated based on the difference of the grand total minus sum of lines;if there is no item number (only Procurement Category) then display the category instead of the (blank) product number;push notification for the mobile based on new approvals.
I am looking for similar functionality, more or less the same as what c# can do with inheritance and polymorphism. At the moment I do have a need to inherit from a base codeunit with different functionality.Similar to creating an interface but I just want to have the unique code in each interface implementation, and reuse base procedures instead of copy code.Question on heritage between codeunits, From Christian.This should be possible to create if we could inherit all functionality from one codeunit from its parents, and that way we should also be able to lock different functions not to be overwritten by child codeunits.example;Codeunit 50001 : Parent...procedure Name() : Textbegin ... code ...end; Codeunit 50002 : Child base Parent...procedure override Name() : Textbegin ... other code ...end;It would also be nice to add private/public/protected variables to codeunits.
