Skip to main content

adt search

Search for ABAP objects in the repository. Wraps the ADT "quick search" API (/sap/bc/adt/repository/informationsystem/search).

Arguments

ArgumentDescription
<query>Search query (supports wildcards like *).

Options

FlagDescription
-m, --max <number>Maximum number of results (default: 50).
--jsonOutput results as JSON.

Examples

# Simple lookup
adt search ZCL_DEMO

# Wildcard
adt search 'ZCL_DEMO*' -m 20 --json

# Pipe into another tool
adt search 'ZCL_DEMO*' --json | jq -r '.[].name'

See also