analyze_abap_context
Analyze the complete context of an ABAP object, including source code and referenced components, to generate a structured context report.
Instructions
Analyzes the complete context of an ABAP object: reads source code including all includes, detects referenced function modules, classes and interfaces via regex, retrieves their metadata and returns a structured context report. Entry point for the abap_develop workflow.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| objectUrl | Yes | ADT URL of the main object | |
| depth | No | shallow = main source + direct includes only; deep = recursively all references | |
| mode | No | full = embed complete source of main + includes; contract = compress each to its public signatures only (much fewer tokens — use when you only need the API surface, not the bodies) |