SAPSearch
Search ABAP objects by name pattern to find classes, programs, tables, and function modules in SAP systems. Returns object details and ADT URIs for navigation.
Instructions
Search for ABAP objects. Search by name pattern with wildcards (* for any characters). Returns object type, name, package, description, and ADT URI. Use this to find classes, programs, function modules, tables, etc.
Tips: BOR business objects appear as SOBJ type in results. The uri field from results can be used directly with SAPNavigate for references. The objectType field in results maps to SAPRead's type parameter — drop the slash suffix (DDLS/DF → DDLS, CLAS/OC → CLAS, PROG/P → PROG).
Note: Searches object names only (classes, tables, CDS views, etc.) — field/column names are not searchable here. To find fields by name, use SAPRead(type='DDLS', include='elements') for CDS views or SAPQuery against DD03L.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search pattern: name pattern with wildcards (e.g., ZCL_ORDER*, Z*TEST*). | |
| maxResults | No | Maximum results (default 100) |