Author: ERP Consultors

Purchase Order Short Closed Feature in BC D365

Purchase Order Short Closed Feature in BC D365: (1) In Business Central D365 “Purchase Order Short Closed” feature is not available. But in industries the demand for this feature is mandatory. (2) For adding the PO Short Closed feature, we will develop a small function to achieve this requirement, as shown. (3) Create PurchaseHeader extension to …

Sales Order Short Closed Feature in BC D365

Sales Order Short Closed Feature in BC D365: (1) In Business Central D365 “Sales Order Short Closed” feature is not available. But in industries the demand for this feature is mandatory. (2) For adding the SO Short Closed feature, we will develop a small function to achieve this requirement, as shown. (3) Create a SalesHeader extension …

DELETE and DELETEALL in D365 BC

DELETE and DELETEALL in D365 BC: (1) Introduction: When records are deleted in the tables via “AL” then the DELETE method is used. Note: recommended to delete any record in the table, specify filters on that record using “GET” or “SETRANGE” & “SETFILTER” for getting the records which you want to delete. (2) Syntax: DELETE. Record.DELETE() …

MODIFY and MODIFYALL in D365 BC

MODIFY and MODIFYALL in D365 BC: (1) Introduction: When records are modified in the tables via “AL” then MODIFY method is used. Note: recommended to modify any record in the table, specify filters on that record using “GET” or “SETRANGE” & “SETFILTER” for getting the records which you want to modify. (2) Syntax: Modify. Record.Modify() (3) …

INSERT and INSERT(TRUE) in D365 BC

INSERT and INSERT(TRUE) in D365 BC: (1) Introduction: When records enter in the tables via “AL” then the INSERT method is used. Note: when inserting records in a table, first initialize the table with method INIT. (2) Syntax: Record.Insert(]) (3) You can use this method in different types, as shown below- RECORD.INSERT: Only Insert record in …

FlowFilter in Dynamics 365 BC

FlowFilter in Dynamics 365: (1) “FlowFilter”: Use FlowFilter fields to set ranges on the calculations that are shown in FlowFields. FlowFilter fields are not saved in the database. Instead, they are stored for each window on an individual computer so users have their own filters. (2) Let’s take an example, if you open the Item table …