Convert Amount into Words in D365 BC: (1) For converting “Amount in Words” in Dynamics 365 BC, use system predefined function. (2) In previous versions, we used “Check Report—>Function” for converting Value in Text. But in the latest version, I have found that, if we use “ Check Report—>Function” then the system will show “AmountInWords in …
Develop Multiline property in AL code in BC D365: (1) Multiline property is available in Page field and Page Label. But if you break or separate lines in AL then you should follow the below steps. Let’s take an example, In the Purchase Order report, the comment is shown in a single line but the requirement …
Assign Role Center to Users in BC D365: (1) In the previous version, “Role Center” assign in the “User Personalized” page but in BC D365, the name of the page is changed to “User Settings” as shown. Role Center is basically to control the user home page interface and controlling the display of pages, reports & …
Assign Permission and Company to Users in BC D365: (1) As we already know that BC D365 is a standard ERP, it has the capability to control users access like Companies, Pages, Tables, Reports etc. (2) For doing this, go to the “Users” list and assign Permissions as shown. (3) After selecting “Users”, the list will …
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: (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 …
Sales Invoice Report Format and Development: (1) Development of New report already explained in the previous blog. In this blog, we will develop a new “Sales Invoice Report”. Follow the below screenshot and develop a report for the client. The report includes- No. of Copies and Document No. filter. (2) RDLC Format for designing. (3) After …
Rename or Change the value of Primary Key in BC D365: (1) Introduction: When you want to change the value of a primary key, then RENAME method is used. (2) Syntax: Record.Rename(Value1: Any ) (3) Let’s take two examples one is to change Document No. of Sales Order Document & the second is to change …