Print Management in D365fo X++
Print Management in D365fo X++ Code: Internal static class PrintMgmtDelegatesHandler_DSSL_Class_Extension { [SubscribesTo(classstr(PrintMgmtDocType), delegatestr(PrintMgmtDocType, getDefaultReportFormatDelegate))] public static void getDefaultReportFormatDelegate(PrintMgmtDocumentType _docType, EventHandlerResult _result) { if(_docType == PrintMgmtDocumentType::SalesOrderInvoice && (curExt() == "5030" || curExt() == "USMF")) { _result.result(ssrsReportStr(DSSLSalesInvoiceReport, SLPrecisionDesign)); //_result.result(ssrsReportStr(DSSLSalesInvoiceReport, CustomerCredetNote)); } } } Code(OR): [ExtensionOf(classStr(PrintMgmtDelegatesHandler))] public final class PrintMgmtDelegatesHandler_DSA_Class_...