Author: ERP Consultors

Error while Publishing Extension or downloading AL Symbol in Dynamics 365- Solved

Error while Publishing Extension or downloading AL Symbol: Step 01: Error Message: Publishing AL application using launch configuration ‘DESKTOP-8H80882’. Publishing package to tenant ‘default’ Targeting server ‘http://localhost’, server instance ‘BC180’ and tenant ‘default’. Using Windows authentication. Sending request to http://localhost:7049/BC180/dev/apps?tenant=default&SchemaUpdateMode=synchronize&DependencyPublishingOption=default Error: Could not connect to the server. Please verify that:1. The server is started.2. The development …

Major Functional Updates in Dynamics 365 BC

Functional Updates in Dynamics 365 BC: (1) Structure removed from Sales Order, Sales Invoice, Sales Credit Memo, Sales Return Order. (2) Structure removed from Purchase Order, Purchase Invoice, Purchase Credit Memo, Purchase Return Order. (3) Change in GST Rate setup. “Date From” and “Date To” are mandatory for calculating GST in both Sales And Purchase. (4) …

How to Install AL code extension in VS Editor

Install AL code extension in VS Editor: Step 1: While connecting VS editor with Business Central D365. First we install extension from the “VS Extension List”. Press “Ctrl+Shift+X” or Press “Extension” button as shown in the figure. Step 2: Type “AL” in the search bar and select “AL Language” from the extension list. Step 3: After …

How to configure GST Setup in Dynamics 365 BC

Configure GST Setup in Dynamics 365 BC: STEP-01: Open company in Microsoft Dynamics 365 Business Central STEP-02: On top of the right side, click on the “India Taxation”. Menu will show in the below screen. STEP-03: Select “Goods and Service Tax” button. Select “Auto Configuration” option. STEP-04: Select “GST Group” option Fill in information according to …

How to Fix 24 Hours or Military Time in BC D365

Fix 24 Hours or Military Time in BC D365: If Time values are -: Time1 = 11:30:00 AM and Time2 = 04:30:00 PM. Use Format property or function to change nature of timing in 24 hours or military timing. Time3 := Format(Time1,0,'<Hours24,2>:<Minutes,2>:<Seconds,2>’). Time4 := Format(Time2,0,'<Hours24,2>:<Minutes,2>:<Seconds,2>’). System will show Time3 is 11:30:00 and Time4 is 16:30:00. How …

How to Calculate the Current Fiscal Year

How to Calculate the Current Fiscal Year? There is no function that will give you the fiscal year. Here’s a code that will get the fiscal year according to the accounting period. Define two date variables Date1 and Date2. Define one record variable “Accounting Period”.  AccountingPeriod.RESET;AccountingPeriod.SETRANGE(“New Fiscal Year”,TRUE);AccountingPeriod.”Starting Date” := WORKDATE;AccountingPeriod.FIND(‘=<‘);Date1 := AccountingPeriod.”Starting Date”;IF AccountingPeriod.NEXT = …