How to Search X++ Code in Dynamics AX Model Database

If you started your development career in Visual Studio and then had to switch to MorphX IDE, one of the features you probably miss is ‘Find in Entire Solution’.

In Visual Studio, the ‘Find’ functionality is very robust – allowing us to search and/or replace in the entire Visual Studio Solution via keywords, matching case, matching whole word and even allowing us to use regular expressions.

No alt text provided for this image


In MorphX IDE, the ‘Find’ functionality is ‘decent’ and works best if you are searching within an object, like a Class or Table, but if you want to find something across all objects – meaning the entire AOT, it’s probably going to take a long time to search. I lost my patience after waiting for couple hours for the search below to finish…


No alt text provided for this image

‘What If’ you could query the Dynamics AX Model Database to find a string across all objects? Well, using the simple SQL Query below, you can. Here’s how to search X++ code using Dynamics AX model database:



SELECT RootHandle.Name							RootElementName
    ElementHandle.Name							ElementName,
    ElementTypes.ElementTypeName					Type,
    CAST(Sources.SourceText AS nvarchar(MAX))			SourceText
FROM Sources Sources
    JOIN ModelElement ElementHandle
		ON Sources.SourceHandle	    = ElementHandle.ElementHandle
    JOIN ModelElement RootHandle
		ON RootHandle.ElementHandle = ElementHandle.RootHandle
    JOIN ElementTypes ElementTypes
		ON ElementTypes.ElementType = ElementHandle.ElementType
WHERE CAST(Sources.SourceText AS nvarchar(MAX)) LIKE '%Purch-a%',        

The query results took ~26 seconds to find the 7 objects where ‘FDD-003’ is mentioned.

No alt text provided for this image

The ‘Where’ clause in the query above can be modified to better fit the text comparison you are looking for, using one of the following SQL operators: =, <>, >, >=, <, <=, IN, BETWEEN, LIKE, IS NULL or IS NOT NULL.

If your requirement is to not look for a string in a method, but instead where the object has been used – ‘Cross Reference’ system in Dynamics AX allows you to see the relationships between objects. For example, you can get a list of every piece of code that uses a particular method, or you can see which forms use a particular table field. You can also get information about where labels are used in the application, but we can’t use the cross reference to look for a string inside a method.


It's very useful sometimes. Thanks for sharing 👌

Like
Reply

To view or add a comment, sign in

More articles by Majid A.

Others also viewed

Explore content categories