Author: ERP Consultors

Skip Purchase Order Document deletion when it is fully posted

Skip Purchase Order Document deletion in Business Central: (1) Sometime business required Purchase Order Document in system when it is fully posted because in D365 BC purchase order document auto delete when it is fully posted. (2) For doing this, call “OnBeforeDeleteAfterPosting” event for skip purchase order document to delete. Source Code in AL: codeunit 50001 …

How to use FOR-TO loop statement in Microsoft D365

Use FOR-TO loop statement in Microsoft D365: Definition of “FOR-TO”:  Repeats the inner statement until a counter variable equals the maximum or minimum value specified. Syntax: “FOR-TO” statement- FOR <Control Variable> := <Start Number> TO <End Number> DO    <Statement> Let’s take an example- Assign a value to the ARRAY variable according to the number of records …

How to get Days from Month in D365 BC

Get Days from Month in D365 BC: (I) Create procedure or function in a object (like page, report, table and code unit). (II) Define parameters and return value in procedure as shown below- (III) When the above procedure or function is call then it will give total number of days in month. (IV) If GetMonth := …

Create Export to Excel Report in Business Central

Export to Excel Report in Business Central: For creating “Export to Excel Report”, follow the below steps. For example- (1) Export Sales Invoice Header data via report. (2) Create New report already explained. (3) Add “Sales Invoice Header” dataitem. (4) Create a Procedure for export data from the “Sales Invoice Header”. MakeHeader. MakeBody. CreatExcelBook. (5) After …

D365 Business Central Essentials vs Premium License

D365 Business Central Essentials vs Premium: The below features are common to both Dynamic 365 Business Central Essentials and Dynamic 365 Business Central Premium. Finance Management: General ledger. Dimensions. Multiple currencies. Budgets. Accounts schedules. Consolidation. Intercompany postings. Cash flow forecast. Fixed assets. Cost accounting. Deferrals. Bank account management. Electronic payments and direct debits. Customer payment process. Reconciliation of …

Usage of Keys in Business Central

Usage of Keys in Business Central: Dynamics 365 BC application use SQL database. SQL database uses keys to identify records in the table. It also uses indexes to speed up the performance of table data. In AL, a key is a sequence of one or more field IDs from a table. There are two types of Keys …