List Inactive Objects
sap_list_inactiveFind unactivated ABAP objects left in the system, optionally filtered by owner, so you can activate or transport them. Returns count and object details with owner and transport.
Instructions
List all inactive ABAP objects for the system (objects edited but not yet activated), with owner and transport. Use to find leftovers before activating or transporting.
Args:
user (string): optional filter on the owning user.
response_format.
Returns (json): { count, objects: [{ uri, type, name, parentUri?, user?, deleted?, transport? }] }.
Examples:
"What did I forget to activate?" -> user='DEVELOPER'.
"Is anything inactive before I release DEVK900123?" -> no args. Notes:
The user filter is applied client-side on the returned list.
Activate what you find with sap_activate.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user | No | Only objects left inactive by this user. | |
| response_format | No | Output format: 'markdown' (human-readable, default) or 'json' (structured). | markdown |