Build a Simple VCL Application for Dynamics 365 Business Central Data

Ready to get started?

Download for a free trial:

Download Now

Learn more:

Dynamics 365 Business Central FireDAC Components

Rapidly create and deploy powerful Delphi & C++Builder Apps that integrate with Dynamics 365 Business Central data including Items, Sales Orders, Purchase Orders, and more!



How to build a simple VCL Application to view Dynamics 365 Business Central data in RAD Studio using the CData FireDAC Components for Dynamics 365 Business Central.

Embarcadero RAD Studio provides a development environment for Delphi and C++Builder applications. With the CData FireDAC Components for Dynamics 365 Business Central, you gain access to live Dynamics 365 Business Central data within RAD Studio, abstracting the data into tables, views, and stored procedures that can be used to retrieve and update Dynamics 365 Business Central data. This article will walk through connecting to Dynamics 365 Business Central and creating a simple VCL application with the Form Designer.

Creating a VCL Application for Dynamics 365 Business Central Data

The following instructions show how to use the Form Designer to create a simple VCL Forms application that shows the basic FireDAC objects needed to connect to Dynamics 365 Business Central from any application.

The following example populates a TDBGrid control.

  1. Create a new VCL Forms Application.
  2. Drop a TFDPhysD365BusinessCentralDriverLink and TFDConnection object onto the form.
  3. Double-click the TFDConnection object. The FireDAC Connection Editor is displayed. Select "CData.D365BusinessCentral" in the DriverId menu and configure the connection properties.

    To authenticate to Dynamics 365 Business Central, you must provide the User and AccessKey properties.

    To obtain the User and AccessKey values, navigate to the Users page in Dynamics 365 Business Central and then click on Edit. The User Name and Web Service Access Key values are what you will enter as the User and AccessKey connection string properties. Note that the User Name is not your email address. It is a shortened user name.

    To connect to data, specify OrganizationUrl. If you have multiple companies in your organization, you must also specify the Company to indicate which company you would like to connect to. Company does not need to be specified if you have only one company.

  4. Drop a TFDQuery object onto the form and set the properties below:

    • Connection - Set this property to the TFDConnection object, if this object is not already specified.
    • SQL - Click the button in the SQL property and enter a query.
    • Active - Set this property to true.
  5. Drop a TDataSource object onto the form and set the following property:

    • DataSet - In the menu for this property, select the name of the TFDQuery object.
  6. Drop a TDBGrid control onto the form and set the following property:

    • DataSource - Select the name of the TDataSource.
  7. Drop a TFDGUIxWaitCursor onto the form. This is required to avoid a run-time error.

You now have an executable application that displays the results of the SQL Query set in the TFDQuery object.