Month: November 2021

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 …