Etiquetas » D365BC

How to integrate Business Central with Dynamics 365 Talent – part 2 (configure BC & Talent)

If you’ve already read my previous article about introduction in BC and Talent integration, then you probably expect the next part. I cannot put everything in one blogpost as it will be a huge one and it can be confused to track all details, so I decided to write it in parts. mais 401 palavras

Dynamics

Webhooks with Dynamics 365 Business Central

When integrating external applications with Dynamics 365 Business Central, one of the classical way is to use APIs (standard or custom APIs) and then call the relative endpoints from the external application. mais 1.668 palavras

Dynamics 365 Business Central

Getting Extension Version from AL

To get your extension version, we can use NavApp and ModuleInfo.

local procedure GetAppVersion(): Text
var
ModuleInfo: ModuleInfo;
AppVersion: Version;
begin
NavApp.GetCurrentModuleInfo(ModuleInfo);
AppVersion := ModuleInfo.AppVersion();
Exit(Format(AppVersion));
end;

BC

Dynamics 365 Business Central Sandbox and performance testing

During the last technical workshops done for Microsoft in Finland and Norway, I’ve discovered that many partners are doing (together with the customer) a lot of load testing and performance testing for their solutions and for the standard application in the online sandbox environment. mais 314 palavras

Dynamics 365 Business Central

A Non-Dependency Approach to BC Extension Dependencies

With the shift to extension development since BC, developers now have an option to have one big extension or to have multiple smaller extensions that are dependent with others. mais 347 palavras

BC

Multitasking Browser in Business Central

Business Central October 2019 Wave 2 Update comes with
several new features that make your life easier. One of them is multi-tasking across
multiple pages. mais 172 palavras

BC

Exposing Dynamics 365 Business Central data to the outside world: my two cents

I had a discussion in the last days on socials with some of my followers (yes, I have them :D) about what’s the best way to expose Dynamics 365 Business Central data to external systems for integrations and for data analysis. mais 786 palavras

Dynamics 365 Business Central