New Functionality In Microsoft Dynamics 365 Business Central 2023 Wave 2: Get to Data Search From Anywhere in Business Central

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

The second of the new functionality in the User experiences section is get to data search from anywhere in Business Central.

Office workers spend up to 20 percent of their working time searching for information. Finding specific information in a timely manner across different areas of a business management solution often requires tailored queries within its different parts. Because the volume of data constantly increases, it becomes increasingly important to get relevant content fast. Business Central lets you search across all data that’s relevant for your role, and not just business transactions. The most relevant results show first, which saves valuable time and lets you focus on higher-value tasks.

Enabled for: Users, automatically
Public Preview: Oct 2023
General Availability: –

Feature Details

You can start a search directly from the Tell Me dialog by using the Alt+Q shortcut key combination from anywhere in Business Central. To search for data, enter one or more keywords in Tell Me. Or, when you run Tell Me in the context of an editable page, it will automatically search for the value in the currently selected field.

Shows search for company data in Tell Me run from the context of currently selected field on page

Continue reading “New Functionality In Microsoft Dynamics 365 Business Central 2023 Wave 2: Get to Data Search From Anywhere in Business Central”

Regular Expression to Recognise Item Number Format in Continia Software’s Document Capture

Microsoft Dynamics 365 Business CentralI was doing some work for a client helping them implement Continia Software’s Document Management solution; this is a widely used extension for Microsoft Dynamics 365 Business Central which scans invoices, and other documents, and uses OCR (Object Character Recognition) to match the scanned invoice with the Business Central transaction.

While preparing for a training session, I discovered that one of the supplier invoices was not being read correctly; there was an Product Code heading followed by rows of item numbers, below which was the payment terms just outside of the lines table which was being picked up as an item number.

Fortunately, Document Capture allows you to add Rules to fields with which we could stop it reading the payment terms.

The item numbers in this case all followed a pattern which was fairly similar. Below are examples of the two formats of item number used by the supplier:

  • AA1 – two letters followed by up to three numbers.
  • AA1A – two letters followed by up to three numbers followed by a letter.

The rules allowed by Document Capture use regular expressions (commonly shortened to “regex”), which are a sequence of characters which specifies a match pattern in text.

The regex required for this supplier invoice is as below:

[A-Z]{2}[0-9]{1,2,3}[A-Z]{0,1,2}

To break this down:

  • [A-Z]{2} – two alpha characters.
  • [0-9]{1,2,3} – between 1 and 3 digits.
  • [A-Z]{0,1,2} – none or between 1 and 2 alpha characters..

Once we put the rule in place and clicked Recognise Fields button on the action bar, the invoice was correctly read and the payment terms were no longer read as items.

As I say, I am not a regex expert and while the above does work, I’d be happy if anyone has any suggestions to make it more efficient.