CreateTable
Create new ABAP database tables in SAP systems using ADT API. Define table structure with proper naming conventions and package assignment for development workflows.
Instructions
Create a new ABAP table via the ADT API. Creates the table object in initial state. Use UpdateTable to set DDL code afterwards.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| table_name | Yes | Table name (e.g., ZZ_TEST_TABLE_001). Must follow SAP naming conventions. | |
| description | No | Table description for validation and creation. | |
| 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. |