CreateStructure
Define ABAP data structures with fields and type references in SAP systems. Specify structure name, package, fields, and optional includes to create and activate structures following SAP conventions.
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). |