Is it possible to find (search) in Dynamics AX 2009 for an exact match?
For example, when I am searching in the AOT for “AddressRelationship”, I don’t want to see DirPartyAddressRelationship in the results.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Okay, it took me a while, but I have figured this out, it Is possible.
Adding a breakpoint to the find form shows that it uses a class called
SysUtilScanSourceto find your string within the AX source code.In
SysUtilScanSource.do()the methodmatchis used to find a match against the specific source code. You can read more aboutmatchhere;http://msdn.microsoft.com/en-us/library/aa886279(v=ax.10).aspx
The
matchmethod allows you to use expressions.The expression you require is as follows;
:SPACE
For example:
Therefore, in your example you need enter the following string in the “containing text” field;
Note that in the above string there are spaces in the following locations;
Try it. I did, it works a treat.