Somebody asked in the Community forum for examples of display methods in views in the standard D365FO application. It’s not necessary to remember any concrete examples – finding all such methods is very simple. The right tool for this purpose is Metadata search.
Open Metadata search (Visual Studio > Dynamics 365 > Metadata search) and put the following query to the search box on the top:
type:view,method property:"IsDisplay=True"
The first part (type:view,method) says that we’re interested in methods in views. The latter part (property:”IsDisplay=True”) makes sure that only method with the given property value are returned.
Hi Martin,
I have one question regarding this metadata search. What if we want to search metadata inside only particular object lets say single table or query?
Hello Heisenberg,
Look at the following command:
model:”Application Suite” code:”SalesLine” name:”AxSalesLine” type:”Class”
The query above should search for “SalesLine” in code, in type=Class, those named like “AxSalesLine”, in the model “Application Suite”.
Hope it helps!