List Transport Requests
sap_list_transportsList workbench and customizing transport requests owned by a user, including tasks and release status. Use returned request numbers for subsequent ABAP development operations.
Instructions
List workbench/customizing transport requests (and their tasks) owned by a user, via the CTS ADT service.
Args:
user (string): defaults to the logon user (SAP_USER).
response_format ('markdown' | 'json').
Returns (json): { user, count, transports: [{ number, description, status, owner, tasks: [...] }], raw? }. Status codes: 'D'/'L' = modifiable, 'O'/'R' = released.
Examples:
"What transports do I have open?" -> (no args).
Use the returned request number as 'transport' for sap_write_source. Error Handling:
The CTS response shape varies by release; when structured parsing yields nothing, 'raw' XML is returned.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user | No | SAP user whose transports to list. Defaults to the configured SAP_USER. | |
| response_format | No | Output format: 'markdown' (human-readable, default) or 'json' (structured). | markdown |