Customization on Sales invoice Report in D365 F&O
We have a requirement to create a new design and show some new fields in the sales invoice report. So for that we need to consider the below steps :- 1) Controller class than extends standard class and create alogic. 2) Create a print management class to call the new design. 3) Extension of DP class to write a logic. 4) Report design. ==================================================================== 1) Controller class : - /// <summary> /// Extension of the controller class to call the custom design of report "MMSSalesInvoice.report" for MMS legal entity. /// </summary> class MMSSalesInvoiceController extends SalesInvoiceController { public static MMSSalesInvoiceController construct() { return new MMSSalesInvoiceController(); } public static void main(Args _args) { ...
Comments
Post a Comment