Query string | What it does |
---|---|
TrvExpTable | If the token is by itself, it is assumed to be the name. So this will find everything in the application that has "TrvExpTable" in the name. |
type:form ccount | Finds all forms that have "ccount" in their names. |
type:form property:formtemplate=listpage | Finds all forms that contain the property "FormTemplate" equal to ‘ListPage’. |
type:table,formDesign property:"WorkflowDataSource=TrvExpTable" | Finds formDesign nodes under tables, nothing would be found. |
type:form,formmenufunctionbuttoncontrol property:Text=@SYS311998 | Finds all menu function button controls with the Text property equal to (a label) ‘@SYS311998’. |
type:table,method name:insert | Finds tables with a method containing "insert" in the method name. |
type:table,tableindex name:Export | Finds tables with an index name containing the word "Export". |
type:table,tableindexfield name:xpNum | Finds table indexes with "xpNum" in the index field name. |
type:table,tablefieldgroup name:EPNew | Finds FieldGroups (in tables) containing ‘EPNew’ in their names. |
type:form,formgridcontrol property:allowedit=no,heightmode=column | Finds form grid controls, with properties allowedit equal to "no" and heightmode equal to "column". |
type:form,formtabcontrol property:arrangeMethod=Vertical,ViewEditMode=view,WidthMode=Auto | Finds form tab controls, with properties arrangeMethod equal to "Vertical" and ViewEditMode equal to "view" and WidthMode equal to "Auto". |
type:form,formDesign property:"WorkflowDataSource=TrvExpTable" | Finds all forms with the "WorkflowDataSource" property in the FormDesign node set to the value "TrvExpTable". |
model:”Application Suite” type:formdesign property:style=simplelistdetail | Find all forms in Application Suite model that has the style property set to simpleListDetail in the FormDesign node. |
code:"return null" | Finds all places in the source code that contains "return null". |
code:"element.lock()" type:form | Finds all places in the forms source code that contain the snippet "element.lock()". |
code:"insert" type:table,form | Finds all places in the source code of either forms or tables that contain "insert". |
code:"public display" type:form,method | Finds all form methods that contain the code "public display". |
type:formbuttoncontrol property:text= | Finds all form Button Controls that have empty text properties. |
Reference; Metadata search