Tag: dynamics 365
Show Amounts Field in General Ledger Setup in D365 BC: (1) In this blog we will see, how to control the visibility of the Amount, Debit & Credit Amount fields in the “General Ledger Entries Page”. This can be achieved from the “Show Amounts” field in “General Ledger Setup”. (2) Let’s take an overlook, how the …
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? 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 = …
Create/Setup Company Information Master in D365 BC: STEP-01: Open company in Microsoft Dynamics 365 Business Central. STEP-02: On top of the right side, click on the search bar, a pop-up window will open. In the pop-up window search for Company Information, a drop-down menu will appear. In the drop-down menu, you have to select Company Information. STEP-03: After …
Switch Companies in Dynamics 365 Business Central: STEP-01: In order to switch company in Microsoft Dynamics 365 Business Central, open your Business Central in browser as shown below: STEP-02: On the top of right side, click on the gear icon and select My Settings. STEP-03: EDIT – MY SETTINGS pop up window will open. Go to …
Page Creation In Microsoft Dynamics 365 BC STEP-01: Right Click on the .vscode and select New File. STEP-02: Enter the Name of the page as shown. Note while naming the page .al extension is mandatory. STEP-03: Type tp for creating a new page. ”t” is the prefix for finding the objects in VS. STEP-04: After step 03, page structure has …
Table Creation In Microsoft Dynamics 365 BC Step-01: Right Click on the .vscode and select New File. Step-02: Enter the Name of the table as shown. Note while naming the table .al extension is mandatory. Step-03: Type tt for creating a new table. ”t” is the prefix for finding the objects in VS. Step-04: After step …