CreateBehaviorImplementation
Generate an ABAP behavior implementation class for a behavior definition to implement business logic in SAP systems. Creates the initial class structure for subsequent code development.
Instructions
Create a new ABAP behavior implementation class for a behavior definition. Creates the object in initial state. Use UpdateBehaviorImplementation to set implementation code afterwards.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| class_name | Yes | Behavior Implementation class name (e.g., ZBP_MY_ENTITY). Must follow SAP naming conventions (typically starts with ZBP_ for behavior implementations). | |
| behavior_definition | Yes | Behavior Definition name (e.g., ZI_MY_ENTITY). The behavior definition must exist. | |
| description | No | Class description. If not provided, class_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. |