CreateStructure
Define ABAP structures in SAP systems by specifying fields, data types, and references. Create, activate, and verify structures with proper naming conventions and transport handling.
Instructions
Create a new ABAP structure in SAP system with fields and type references. Includes create, activate, and verify steps.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| structure_name | Yes | Structure name (e.g., ZZ_S_TEST_001). Must follow SAP naming conventions. | |
| description | No | Structure description. If not provided, structure_name will be used. | |
| package_name | Yes | Package name (e.g., ZOK_LOCAL, $TMP for local objects) | |
| transport_request | No | Transport request number (e.g., E19K905635). Required for transportable packages. | |
| fields | Yes | Array of structure fields | |
| includes | No | Include other structures in this structure | |
| activate | No | Activate structure after creation. Default: true. Set to false for batch operations (activate multiple objects later). |