transport: Transport requests
Transport request lifecycle: check requirements, create, list, inspect, release, and delete.
Related guides: transports.
6 commands.
abapctl transport info
READ IDEMPCheck transport requirements for an object
| Option | Required | Description |
|---|---|---|
object (positional) | yes | object (object/name argument) |
--connection | no | connection profile name |
--package | no | package name (devclass) |
--adt-type | no | ADT object type (e.g. PROG/P, DDLS/DF, CLAS/OC). Use when a name is shared by multiple object types |
abapctl transport info ZCL_FOO
abapctl transport create
WRITECreate a new transport request
read-only with --dry-run
| Option | Required | Description |
|---|---|---|
--description | yes | transport description |
--connection | no | connection profile name |
--ref | no | reference object URI |
--package | no | package name (devclass) |
--dry-run | no | show parameters without creating |
abapctl transport create --dry-run
abapctl transport list
READ IDEMPList transport requests
| Option | Required | Description |
|---|---|---|
--connection | no | connection profile name |
--user | no | show transports for this user |
--status | no | which requests to list |
abapctl transport list
abapctl transport get
READ IDEMPGet transport request details
| Option | Required | Description |
|---|---|---|
number (positional) | yes | number (object/name argument) |
--connection | no | connection profile name |
abapctl transport get K9A123
abapctl transport release
DESTRRelease a transport request
prompts for confirmation; read-only with --dry-run
| Option | Required | Description |
|---|---|---|
number (positional) | yes | number (object/name argument) |
--connection | no | connection profile name |
--yes | no | skip confirmation prompt |
--ignore-locks | no | release even if objects are locked |
--ignore-atc | no | release even if ATC findings exist |
--dry-run | no | show transport details without releasing |
abapctl transport release K9A123 --dry-run
abapctl transport delete
DESTRDelete a transport request
prompts for confirmation; read-only with --dry-run
| Option | Required | Description |
|---|---|---|
number (positional) | yes | number (object/name argument) |
--connection | no | connection profile name |
--yes | no | skip confirmation prompt |
--recursive | no | remove the transport's objects (stale locks) before deleting |
--dry-run | no | show transport details without deleting |
abapctl transport delete K9A123 --dry-run