Posts

Showing posts from November, 2023

Bank cheque report customization in D365

Image
 Customize bank cheque payment report in D365 Lets say, we need to add a column Description in SlipText field on the report that is generated dynamically from code. In order to customize the field we need to make COC of few methods of class  CustVendChequeSlipTextCalculator. class CustVendChequeSlipTextCalculator is responsible for calculating slip text area required during printing of cheque and adding dynamic columns and values in the field. Note : Cheque layout is sensitive to the area of printing. We need to be careful in order to modify a design while customizing as each and every field added to the report contains limited area of printing which is a risk to disturb as it can effect the size and length of report. Slip text is also calculated according to the size of the cheque in millimeters. We need to create COC of following methods to add a new column in SlipText field.  We have to add header and then value.  Before creating COC for SlipText we need to ...