New Functionality In Microsoft Dynamics 365 Business Central 2024 Wave 1: Use the OData V4 IN Operator in Web Service Queries

Microsoft Dynamics 365 Business CentralThis post is part of the New Functionality In Microsoft Dynamics 365 Business Central 2024 Wave 1 series in which I am taking a look at the new functionality introduced in Microsoft Dynamics 365 Business Central 2024 Wave 1.

The 7th of the new functionality in the Development section is use the OData V4 IN operator in web service queries.

Integrators can now use OData IN operator when querying Business Central web services. This can simplify OData queries and therefore make integrations easier to develop.

Enabled for: Users by admins, makers, or analysts
Public Preview: Apr 2024
General Availability: Apr 2024

Feature Details

Prior to this release, a developer who wanted to query an OData endpoint—for example, to query an API for a (short) list of Customer numbers—would have to write a filter expression such as $filter=CustomerNo eq '10000' or CustomerNo eq '20000' or CustomerNo eq '30000'.

With this release, they can just write $filter=CustomerNo IN ('10000','20000','30000') by using the OData IN operator.

My Opinion

I’m not a developer anymore, but I approve of this type of change which allows for simplified syntax.

Click to show/hide the New Functionality In Microsoft Dynamics 365 Business Central 2024 Wave 1 Series Index

New Functionality In Microsoft Dynamics 365 Business Central 2024 Wave 1: Write flexible and performant code with NumberSequences

Microsoft Dynamics 365 Business CentralThis post is part of the New Functionality In Microsoft Dynamics 365 Business Central 2024 Wave 1 series in which I am taking a look at the new functionality introduced in Microsoft Dynamics 365 Business Central 2024 Wave 1.

The 6th of the new functionality in the Development section is write flexible and performant code with NumberSequences.

Improvements to NumberSequences date type streamline the development and execution of code that creates and manages number sequences in the database, resulting in increased efficiency and speed.

Enabled for: Users by admins, makers, or analysts
Public Preview: Apr 2024
General Availability: Apr 2024

Feature Details

This release offers the following improvements to the NumberSequences data type:

  • New Restart operation
    Prior to this release, a number sequence had to be deleted and recreated to restart it. Now, a new Restart operation simplifies and speeds up this process. The operation has the following syntax:

    Restart(name: text; seed: BigInteger; CompanySpecific: bool)
  • New RangeStart operation
    A new RangeStart operation allows developers to request multiple values from the number sequence at once, meaning no gaps, and fewer SQL round-trips. The operation has the following syntax:

    RangeStart : = Range(name: text; count: integer; CompanySpecific: bool);
  • Improved Next, Current, and Exists operations
    These operations are now 8 to 32 percent faster.

Click to show/hide the New Functionality In Microsoft Dynamics 365 Business Central 2024 Wave 1 Series Index

Working with Power Automate Child Flows: Test the Parent/Child Flow Examples

Power AutomateThis article is part of the Working with Power Automate Child Flows series and of the larger Working with Power Automate series I am writing on my experiences working with the Power Automate, which is part of the Power Platform from Microsoft. I also have a related series of articles on Power Automate with Microsoft Dynamics 365 BC.

With the child and parent flow examples created, they can now be tested. As the example parent flow, is an instant flow, to run the flow, go to the My flows page, select the parent flow in the list and click the button:

My flows page with the example parent flow button selected

Continue reading “Working with Power Automate Child Flows: Test the Parent/Child Flow Examples”