@mcp-abap-adt/core 6.4.1 → 6.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/README.md +8 -1
  3. package/dist/handlers/function_module/high/handleGetFunctionModule.d.ts.map +1 -1
  4. package/dist/handlers/function_module/high/handleGetFunctionModule.js +14 -4
  5. package/dist/handlers/function_module/high/handleGetFunctionModule.js.map +1 -1
  6. package/dist/handlers/function_module/readonly/handleReadFunctionModule.d.ts.map +1 -1
  7. package/dist/handlers/function_module/readonly/handleReadFunctionModule.js +20 -15
  8. package/dist/handlers/function_module/readonly/handleReadFunctionModule.js.map +1 -1
  9. package/dist/handlers/function_module/shared/parseContainerGroup.d.ts +25 -0
  10. package/dist/handlers/function_module/shared/parseContainerGroup.d.ts.map +1 -0
  11. package/dist/handlers/function_module/shared/parseContainerGroup.js +47 -0
  12. package/dist/handlers/function_module/shared/parseContainerGroup.js.map +1 -0
  13. package/dist/lib/config/validateExposition.d.ts +10 -0
  14. package/dist/lib/config/validateExposition.d.ts.map +1 -0
  15. package/dist/lib/config/validateExposition.js +21 -0
  16. package/dist/lib/config/validateExposition.js.map +1 -0
  17. package/dist/lib/handlers/groups/ReadOnlyHandlersGroup.d.ts +13 -2
  18. package/dist/lib/handlers/groups/ReadOnlyHandlersGroup.d.ts.map +1 -1
  19. package/dist/lib/handlers/groups/ReadOnlyHandlersGroup.js +18 -1
  20. package/dist/lib/handlers/groups/ReadOnlyHandlersGroup.js.map +1 -1
  21. package/dist/lib/handlers/groups/index.d.ts +1 -0
  22. package/dist/lib/handlers/groups/index.d.ts.map +1 -1
  23. package/dist/lib/handlers/groups/index.js +4 -1
  24. package/dist/lib/handlers/groups/index.js.map +1 -1
  25. package/dist/lib/handlers/groups/strategies/IReadOnlyDedupStrategy.d.ts +15 -0
  26. package/dist/lib/handlers/groups/strategies/IReadOnlyDedupStrategy.d.ts.map +1 -0
  27. package/dist/lib/handlers/groups/strategies/IReadOnlyDedupStrategy.js +3 -0
  28. package/dist/lib/handlers/groups/strategies/IReadOnlyDedupStrategy.js.map +1 -0
  29. package/dist/lib/handlers/groups/strategies/NoDedupStrategy.d.ts +10 -0
  30. package/dist/lib/handlers/groups/strategies/NoDedupStrategy.d.ts.map +1 -0
  31. package/dist/lib/handlers/groups/strategies/NoDedupStrategy.js +14 -0
  32. package/dist/lib/handlers/groups/strategies/NoDedupStrategy.js.map +1 -0
  33. package/dist/lib/handlers/groups/strategies/ReadVsGetDedupStrategy.d.ts +14 -0
  34. package/dist/lib/handlers/groups/strategies/ReadVsGetDedupStrategy.d.ts.map +1 -0
  35. package/dist/lib/handlers/groups/strategies/ReadVsGetDedupStrategy.js +22 -0
  36. package/dist/lib/handlers/groups/strategies/ReadVsGetDedupStrategy.js.map +1 -0
  37. package/dist/lib/handlers/groups/strategies/index.d.ts +4 -0
  38. package/dist/lib/handlers/groups/strategies/index.d.ts.map +1 -0
  39. package/dist/lib/handlers/groups/strategies/index.js +8 -0
  40. package/dist/lib/handlers/groups/strategies/index.js.map +1 -0
  41. package/dist/server/EmbeddableMcpServer.d.ts +12 -0
  42. package/dist/server/EmbeddableMcpServer.d.ts.map +1 -1
  43. package/dist/server/EmbeddableMcpServer.js +22 -10
  44. package/dist/server/EmbeddableMcpServer.js.map +1 -1
  45. package/dist/server/launcher.js +23 -9
  46. package/dist/server/launcher.js.map +1 -1
  47. package/docs/user-guide/AVAILABLE_TOOLS.md +97 -65
  48. package/docs/user-guide/AVAILABLE_TOOLS_COMPACT.md +4 -5
  49. package/docs/user-guide/AVAILABLE_TOOLS_HIGH.md +32 -34
  50. package/docs/user-guide/AVAILABLE_TOOLS_LEGACY.md +21 -21
  51. package/docs/user-guide/AVAILABLE_TOOLS_LOW.md +49 -13
  52. package/docs/user-guide/AVAILABLE_TOOLS_READONLY.md +17 -19
  53. package/docs/user-guide/HANDLERS_MANAGEMENT.md +63 -3
  54. package/package.json +1 -1
@@ -180,7 +180,7 @@ Generated from code in `src/handlers/**` (not from docs).
180
180
 
181
181
  <a id="createbehaviordefinition-high-level-behavior-definition"></a>
182
182
  #### CreateBehaviorDefinition (High-Level / Behavior Definition)
183
- **Description:** Create a new ABAP Behavior Definition (BDEF) in SAP system. Defines RAP business object behavior: CRUD operations, validations, determinations, actions, and draft handling.
183
+ **Description:** Operation: Create. Subject: BehaviorDefinition. Will be useful for creating behavior definition. Create a new ABAP Behavior Definition (BDEF) in SAP system. Creates the behavior definition object in initial state.
184
184
 
185
185
  **Source:** `src/handlers/behavior_definition/high/handleCreateBehaviorDefinition.ts`
186
186
 
@@ -221,7 +221,7 @@ Generated from code in `src/handlers/**` (not from docs).
221
221
 
222
222
  <a id="updatebehaviordefinition-high-level-behavior-definition"></a>
223
223
  #### UpdateBehaviorDefinition (High-Level / Behavior Definition)
224
- **Description:** Update source code of an ABAP Behavior Definition (BDEF). Modifies RAP business object behavior: CRUD operations, validations, determinations, actions, and draft handling.
224
+ **Description:** Operation: Update, Create. Subject: BehaviorDefinition. Will be useful for updating or creating behavior definition. Update source code of an existing ABAP Behavior Definition (BDEF). Locks, updates, unlocks, and optionally activates.
225
225
 
226
226
  **Source:** `src/handlers/behavior_definition/high/handleUpdateBehaviorDefinition.ts`
227
227
 
@@ -309,7 +309,7 @@ Generated from code in `src/handlers/**` (not from docs).
309
309
 
310
310
  <a id="createclass-high-level-class"></a>
311
311
  #### CreateClass (High-Level / Class)
312
- **Description:** Create a new ABAP class in SAP system. Creates the class object in initial state. Use UpdateClass to set source code afterwards.
312
+ **Description:** Operation: Create. Subject: Class. Will be useful for creating class. Create a new ABAP class in SAP system. Creates the class object in initial state.
313
313
 
314
314
  **Source:** `src/handlers/class/high/handleCreateClass.ts`
315
315
 
@@ -451,7 +451,7 @@ Generated from code in `src/handlers/**` (not from docs).
451
451
 
452
452
  <a id="updateclass-high-level-class"></a>
453
453
  #### UpdateClass (High-Level / Class)
454
- **Description:** Update source code of an existing ABAP class. Locks, checks, updates, unlocks, and optionally activates.
454
+ **Description:** Operation: Update, Create. Subject: Class. Will be useful for updating or creating class. Update source code of an existing ABAP class. Locks, updates, unlocks, and optionally activates.
455
455
 
456
456
  **Source:** `src/handlers/class/high/handleUpdateClass.ts`
457
457
 
@@ -668,14 +668,13 @@ Generated from code in `src/handlers/**` (not from docs).
668
668
 
669
669
  <a id="handlerdumplist-high-level-compact"></a>
670
670
  #### HandlerDumpList (High-Level / Compact)
671
- **Description:** Runtime dump list. object_type: not used. Required: none. Optional: user, inlinecount, top, skip, orderby. Response: JSON.
671
+ **Description:** Runtime dump list. object_type: not used. Required: none. Optional: user, top, from, to. Response: JSON.
672
672
 
673
673
  **Source:** `src/handlers/compact/high/handleHandlerDumpList.ts`
674
674
 
675
675
  **Parameters:**
676
- - `inlinecount` (string, optional) - Include total count in response.
677
- - `orderby` (string, optional) - Sort expression.
678
- - `skip` (number, optional) - Offset for pagination.
676
+ - `from` (string, optional) - Start of time range (YYYYMMDDHHMMSS).
677
+ - `to` (string, optional) - End of time range (YYYYMMDDHHMMSS).
679
678
  - `top` (number, optional) - Limit number of returned dumps.
680
679
  - `user` (string, optional) - Filter dumps by user.
681
680
 
@@ -950,7 +949,7 @@ Generated from code in `src/handlers/**` (not from docs).
950
949
 
951
950
  <a id="createdataelement-high-level-data-element"></a>
952
951
  #### CreateDataElement (High-Level / Data Element)
953
- **Description:** Create a new ABAP data element in SAP system with all required steps: create, activate, and verify.
952
+ **Description:** Operation: Create. Subject: DataElement. Will be useful for creating data element. Create a new ABAP data element in SAP system. Creates the data element object in initial state.
954
953
 
955
954
  **Source:** `src/handlers/data_element/high/handleCreateDataElement.ts`
956
955
 
@@ -1000,7 +999,7 @@ Generated from code in `src/handlers/**` (not from docs).
1000
999
 
1001
1000
  <a id="updatedataelement-high-level-data-element"></a>
1002
1001
  #### UpdateDataElement (High-Level / Data Element)
1003
- **Description:** Data element name to update (e.g., ZZ_TEST_DTEL_01)
1002
+ **Description:** Operation: Update, Create. Subject: DataElement. Will be useful for updating or creating data element. Update an existing ABAP data element. Locks, updates with provided parameters (complete replacement), unlocks, and optionally activates.
1004
1003
 
1005
1004
  **Source:** `src/handlers/data_element/high/handleUpdateDataElement.ts`
1006
1005
 
@@ -1041,7 +1040,7 @@ Generated from code in `src/handlers/**` (not from docs).
1041
1040
 
1042
1041
  <a id="createmetadataextension-high-level-ddlx"></a>
1043
1042
  #### CreateMetadataExtension (High-Level / Ddlx)
1044
- **Description:** Create a new ABAP Metadata Extension (DDLX) in SAP system. Defines Fiori UI annotations, field labels, search help, and list/object page layout for CDS views.
1043
+ **Description:** Operation: Create. Subject: MetadataExtension. Will be useful for creating metadata extension. Create a new ABAP Metadata Extension (DDLX) in SAP system. Creates the metadata extension object in initial state.
1045
1044
 
1046
1045
  **Source:** `src/handlers/ddlx/high/handleCreateMetadataExtension.ts`
1047
1046
 
@@ -1056,7 +1055,7 @@ Generated from code in `src/handlers/**` (not from docs).
1056
1055
 
1057
1056
  <a id="updatemetadataextension-high-level-ddlx"></a>
1058
1057
  #### UpdateMetadataExtension (High-Level / Ddlx)
1059
- **Description:** Update source code of an ABAP Metadata Extension (DDLX). Modifies Fiori UI annotations, field labels, search help, and list/object page layout for CDS views.
1058
+ **Description:** Operation: Update, Create. Subject: MetadataExtension. Will be useful for updating or creating metadata extension. Update source code of an existing ABAP Metadata Extension (DDLX). Locks, updates, unlocks, and optionally activates.
1060
1059
 
1061
1060
  **Source:** `src/handlers/ddlx/high/handleUpdateMetadataExtension.ts`
1062
1061
 
@@ -1085,7 +1084,7 @@ Generated from code in `src/handlers/**` (not from docs).
1085
1084
 
1086
1085
  <a id="createdomain-high-level-domain"></a>
1087
1086
  #### CreateDomain (High-Level / Domain)
1088
- **Description:** Create a new ABAP domain in SAP system with all required steps: lock, create, check, unlock, activate, and verify.
1087
+ **Description:** Operation: Create. Subject: Domain. Will be useful for creating domain. Create a new ABAP domain in SAP system. Creates the domain object in initial state.
1089
1088
 
1090
1089
  **Source:** `src/handlers/domain/high/handleCreateDomain.ts`
1091
1090
 
@@ -1132,7 +1131,7 @@ Generated from code in `src/handlers/**` (not from docs).
1132
1131
 
1133
1132
  <a id="updatedomain-high-level-domain"></a>
1134
1133
  #### UpdateDomain (High-Level / Domain)
1135
- **Description:** Domain name to update (e.g., ZZ_TEST_0001)
1134
+ **Description:** Operation: Update, Create. Subject: Domain. Will be useful for updating or creating domain. Update an existing ABAP domain. Locks, updates with provided parameters (complete replacement), unlocks, and optionally activates.
1136
1135
 
1137
1136
  **Source:** `src/handlers/domain/high/handleUpdateDomain.ts`
1138
1137
 
@@ -1197,7 +1196,7 @@ Generated from code in `src/handlers/**` (not from docs).
1197
1196
 
1198
1197
  <a id="createfunctionmodule-high-level-function"></a>
1199
1198
  #### CreateFunctionModule (High-Level / Function)
1200
- **Description:** Create a new ABAP function module within an existing function group. Creates the function module in initial state. Use UpdateFunctionModule to set source code afterwards.
1199
+ **Description:** Operation: Create. Subject: FunctionModule. Will be useful for creating function module. Create a new ABAP function module within an existing function group. Creates the function module in initial state.
1201
1200
 
1202
1201
  **Source:** `src/handlers/function/high/handleCreateFunctionModule.ts`
1203
1202
 
@@ -1224,7 +1223,7 @@ Generated from code in `src/handlers/**` (not from docs).
1224
1223
 
1225
1224
  <a id="updatefunctionmodule-high-level-function"></a>
1226
1225
  #### UpdateFunctionModule (High-Level / Function)
1227
- **Description:** Update source code of an existing ABAP function module. Locks the function module, uploads new source code, and unlocks. Optionally activates after update. Use this to modify existing function modules without re-creating metadata.
1226
+ **Description:** Operation: Update, Create. Subject: FunctionModule. Will be useful for updating or creating function module. Update source code of an existing ABAP function module. Locks, updates, unlocks, and optionally activates.
1228
1227
 
1229
1228
  **Source:** `src/handlers/function/high/handleUpdateFunctionModule.ts`
1230
1229
 
@@ -1309,7 +1308,7 @@ Generated from code in `src/handlers/**` (not from docs).
1309
1308
 
1310
1309
  <a id="createinterface-high-level-interface"></a>
1311
1310
  #### CreateInterface (High-Level / Interface)
1312
- **Description:** Create a new ABAP interface in SAP system. Creates the interface object in initial state. Use UpdateInterface to set source code afterwards.
1311
+ **Description:** Operation: Create. Subject: Interface. Will be useful for creating interface. Create a new ABAP interface in SAP system. Creates the interface object in initial state.
1313
1312
 
1314
1313
  **Source:** `src/handlers/interface/high/handleCreateInterface.ts`
1315
1314
 
@@ -1347,7 +1346,7 @@ Generated from code in `src/handlers/**` (not from docs).
1347
1346
 
1348
1347
  <a id="updateinterface-high-level-interface"></a>
1349
1348
  #### UpdateInterface (High-Level / Interface)
1350
- **Description:** Update source code of an existing ABAP interface. Uses stateful session with proper lock/unlock mechanism. Lock handle and transport number are passed in URL parameters.
1349
+ **Description:** Operation: Update, Create. Subject: Interface. Will be useful for updating or creating interface. Update source code of an existing ABAP interface. Locks, updates, unlocks, and optionally activates.
1351
1350
 
1352
1351
  **Source:** `src/handlers/interface/high/handleUpdateInterface.ts`
1353
1352
 
@@ -1440,7 +1439,7 @@ Generated from code in `src/handlers/**` (not from docs).
1440
1439
 
1441
1440
  <a id="createprogram-high-level-program"></a>
1442
1441
  #### CreateProgram (High-Level / Program)
1443
- **Description:** Create a new ABAP program (report) in SAP system. Creates the program object in initial state. Use UpdateProgram to set source code afterwards.
1442
+ **Description:** Operation: Create. Subject: Program. Will be useful for creating program. Create a new ABAP program (report) in SAP system. Creates the program object in initial state.
1444
1443
 
1445
1444
  **Source:** `src/handlers/program/high/handleCreateProgram.ts`
1446
1445
 
@@ -1480,7 +1479,7 @@ Generated from code in `src/handlers/**` (not from docs).
1480
1479
 
1481
1480
  <a id="updateprogram-high-level-program"></a>
1482
1481
  #### UpdateProgram (High-Level / Program)
1483
- **Description:** Update source code of an existing ABAP program. Locks the program, checks new code, uploads new source code, and unlocks. Optionally activates after update. Use this to modify existing programs without re-creating metadata.
1482
+ **Description:** Operation: Update, Create. Subject: Program. Will be useful for updating or creating program. Update source code of an existing ABAP program. Locks, updates, unlocks, and optionally activates.
1484
1483
 
1485
1484
  **Source:** `src/handlers/program/high/handleUpdateProgram.ts`
1486
1485
 
@@ -1497,18 +1496,17 @@ Generated from code in `src/handlers/**` (not from docs).
1497
1496
 
1498
1497
  <a id="createservicebinding-high-level-service-binding"></a>
1499
1498
  #### CreateServiceBinding (High-Level / Service Binding)
1500
- **Description:** Create ABAP service binding via ADT Business Services endpoint. XML is generated from high-level parameters.
1499
+ **Description:** Operation: Create. Subject: ServiceBinding. Will be useful for creating service binding. Create a new ABAP service binding in SAP system. Creates the service binding object in initial state.
1501
1500
 
1502
1501
  **Source:** `src/handlers/service_binding/high/handleCreateServiceBinding.ts`
1503
1502
 
1504
1503
  **Parameters:**
1505
1504
  - `activate` (boolean, optional (default: true)) - Activate service binding after create. Default: true.
1506
- - `binding_type` (string, optional (default: ODataV4)) - OData binding type.
1505
+ - `binding_variant` (string, optional (default: ODATA_V4_UI)) - Service binding variant. ODATA_V4_UI = OData V4 for Fiori Elements, ODATA_V4_WEB_API = OData V4 Web API, ODATA_V2_UI = OData V2 for Fiori Elements, ODATA_V2_WEB_API = OData V2 Web API.
1507
1506
  - `description` (string, optional) - Optional description. Defaults to service_binding_name when omitted.
1508
1507
  - `package_name` (string, required) - ABAP package name.
1509
1508
  - `response_format` (string, optional (default: xml)) -
1510
1509
  - `service_binding_name` (string, required) - Service binding name.
1511
- - `service_binding_version` (string, optional) - Service binding ADT version. Default inferred from type.
1512
1510
  - `service_definition_name` (string, required) - Referenced service definition name.
1513
1511
  - `service_name` (string, optional) - Published service name. Default: service_binding_name if omitted.
1514
1512
  - `service_version` (string, optional) - Published service version. Default: 0001.
@@ -1554,16 +1552,16 @@ Generated from code in `src/handlers/**` (not from docs).
1554
1552
 
1555
1553
  <a id="updateservicebinding-high-level-service-binding"></a>
1556
1554
  #### UpdateServiceBinding (High-Level / Service Binding)
1557
- **Description:** Update publication state for ABAP service binding via AdtServiceBinding workflow.
1555
+ **Description:** Operation: Update, Create. Subject: ServiceBinding. Will be useful for updating or creating service binding. Update publication state of an existing ABAP service binding.
1558
1556
 
1559
1557
  **Source:** `src/handlers/service_binding/high/handleUpdateServiceBinding.ts`
1560
1558
 
1561
1559
  **Parameters:**
1560
+ - `binding_variant` (string, required (default: ODATA_V4_UI)) - Service binding variant. Determines OData version for publish/unpublish routing.
1562
1561
  - `desired_publication_state` (string, required) - Target publication state.
1563
1562
  - `response_format` (string, optional (default: xml)) -
1564
1563
  - `service_binding_name` (string, required) - Service binding name to update.
1565
1564
  - `service_name` (string, required) - Published service name.
1566
- - `service_type` (string, required (default: ODataV4)) - OData service type for publish/unpublish action routing.
1567
1565
  - `service_version` (string, optional) - Published service version. Optional.
1568
1566
 
1569
1567
  ---
@@ -1588,7 +1586,7 @@ Generated from code in `src/handlers/**` (not from docs).
1588
1586
 
1589
1587
  <a id="createservicedefinition-high-level-service-definition"></a>
1590
1588
  #### CreateServiceDefinition (High-Level / Service Definition)
1591
- **Description:** Create a new ABAP service definition for OData services. Service definitions define the structure and behavior of OData services. Uses stateful session for proper lock management.
1589
+ **Description:** Operation: Create. Subject: ServiceDefinition. Will be useful for creating service definition. Create a new ABAP service definition in SAP system. Creates the service definition object in initial state.
1592
1590
 
1593
1591
  **Source:** `src/handlers/service_definition/high/handleCreateServiceDefinition.ts`
1594
1592
 
@@ -1628,7 +1626,7 @@ Generated from code in `src/handlers/**` (not from docs).
1628
1626
 
1629
1627
  <a id="updateservicedefinition-high-level-service-definition"></a>
1630
1628
  #### UpdateServiceDefinition (High-Level / Service Definition)
1631
- **Description:** Update source code of an existing ABAP service definition. Uses stateful session with proper lock/unlock mechanism.
1629
+ **Description:** Operation: Update, Create. Subject: ServiceDefinition. Will be useful for updating or creating service definition. Update source code of an existing ABAP service definition. Locks, updates, unlocks, and optionally activates.
1632
1630
 
1633
1631
  **Source:** `src/handlers/service_definition/high/handleUpdateServiceDefinition.ts`
1634
1632
 
@@ -1658,7 +1656,7 @@ Generated from code in `src/handlers/**` (not from docs).
1658
1656
 
1659
1657
  <a id="createstructure-high-level-structure"></a>
1660
1658
  #### CreateStructure (High-Level / Structure)
1661
- **Description:** Create a new ABAP structure in SAP system with fields and type references. Includes create, activate, and verify steps.
1659
+ **Description:** Operation: Create. Subject: Structure. Will be useful for creating structure. Create a new ABAP structure in SAP system. Creates the structure object in initial state.
1662
1660
 
1663
1661
  **Source:** `src/handlers/structure/high/handleCreateStructure.ts`
1664
1662
 
@@ -1699,7 +1697,7 @@ Generated from code in `src/handlers/**` (not from docs).
1699
1697
 
1700
1698
  <a id="updatestructure-high-level-structure"></a>
1701
1699
  #### UpdateStructure (High-Level / Structure)
1702
- **Description:** Update DDL source code of an existing ABAP structure. Locks the structure, uploads new DDL source, and unlocks. Optionally activates after update. Use this to modify existing structures without re-creating metadata.
1700
+ **Description:** Operation: Update, Create. Subject: Structure. Will be useful for updating or creating structure. Update DDL source code of an existing ABAP structure. Locks, updates, unlocks, and optionally activates.
1703
1701
 
1704
1702
  **Source:** `src/handlers/structure/high/handleUpdateStructure.ts`
1705
1703
 
@@ -1747,7 +1745,7 @@ Generated from code in `src/handlers/**` (not from docs).
1747
1745
 
1748
1746
  <a id="createtable-high-level-table"></a>
1749
1747
  #### CreateTable (High-Level / Table)
1750
- **Description:** Create a new ABAP table via the ADT API. Creates the table object in initial state. Use UpdateTable to set DDL code afterwards.
1748
+ **Description:** Operation: Create. Subject: Table. Will be useful for creating table. Create a new ABAP table in SAP system. Creates the table object in initial state.
1751
1749
 
1752
1750
  **Source:** `src/handlers/table/high/handleCreateTable.ts`
1753
1751
 
@@ -1785,7 +1783,7 @@ Generated from code in `src/handlers/**` (not from docs).
1785
1783
 
1786
1784
  <a id="updatetable-high-level-table"></a>
1787
1785
  #### UpdateTable (High-Level / Table)
1788
- **Description:** Update DDL source code of an existing ABAP table. Locks the table, uploads new DDL source, and unlocks. Optionally activates after update. Use this to modify existing tables without re-creating metadata.
1786
+ **Description:** Operation: Update, Create. Subject: Table. Will be useful for updating or creating table. Update DDL source code of an existing ABAP table. Locks, updates, unlocks, and optionally activates.
1789
1787
 
1790
1788
  **Source:** `src/handlers/table/high/handleUpdateTable.ts`
1791
1789
 
@@ -2001,7 +1999,7 @@ Generated from code in `src/handlers/**` (not from docs).
2001
1999
 
2002
2000
  <a id="createview-high-level-view"></a>
2003
2001
  #### CreateView (High-Level / View)
2004
- **Description:** Create CDS View or Classic View in SAP. Creates the view object in initial state. Use UpdateView to set DDL source code afterwards.
2002
+ **Description:** Operation: Create. Subject: View. Will be useful for creating view. Create a new CDS View or Classic View in SAP system. Creates the view object in initial state.
2005
2003
 
2006
2004
  **Source:** `src/handlers/view/high/handleCreateView.ts`
2007
2005
 
@@ -2039,7 +2037,7 @@ Generated from code in `src/handlers/**` (not from docs).
2039
2037
 
2040
2038
  <a id="updateview-high-level-view"></a>
2041
2039
  #### UpdateView (High-Level / View)
2042
- **Description:** Update DDL source code of an existing CDS View or Classic View. Locks the view, checks new code, uploads new DDL source, unlocks, and optionally activates.
2040
+ **Description:** Operation: Update, Create. Subject: View. Will be useful for updating or creating view. Update DDL source code of an existing CDS View or Classic View. Locks, updates, unlocks, and optionally activates.
2043
2041
 
2044
2042
  **Source:** `src/handlers/view/high/handleUpdateView.ts`
2045
2043
 
@@ -2051,4 +2049,4 @@ Generated from code in `src/handlers/**` (not from docs).
2051
2049
 
2052
2050
  ---
2053
2051
 
2054
- *Last updated: 2026-04-13*
2052
+ *Last updated: 2026-04-24*
@@ -180,7 +180,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
180
180
 
181
181
  <a id="readclass-read-only-class"></a>
182
182
  #### ReadClass (Read-Only / Class)
183
- **Description:** [read-only] Read ABAP class source code and metadata. Answers:
183
+ **Description:** Operation: Read, Create, Update. Subject: Class. Will be useful for reading, creating, or updating class. [read-only] Read ABAP class source code and metadata. Answers:
184
184
 
185
185
  **Source:** `src/handlers/class/readonly/handleReadClass.ts`
186
186
 
@@ -214,7 +214,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
214
214
 
215
215
  <a id="readfunctionmodule-read-only-function-module"></a>
216
216
  #### ReadFunctionModule (Read-Only / Function Module)
217
- **Description:** [read-only] Read ABAP function module source code and metadata. Answers:
217
+ **Description:** Operation: Read, Create, Update. Subject: FunctionModule. Will be useful for reading, creating, or updating function module. [read-only] Read ABAP function module source code and metadata. Answers:
218
218
 
219
219
  **Source:** `src/handlers/function_module/readonly/handleReadFunctionModule.ts`
220
220
 
@@ -264,7 +264,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
264
264
 
265
265
  <a id="readinterface-read-only-interface"></a>
266
266
  #### ReadInterface (Read-Only / Interface)
267
- **Description:** [read-only] Read ABAP interface source code and metadata. Answers:
267
+ **Description:** Operation: Read, Create, Update. Subject: Interface. Will be useful for reading, creating, or updating interface. [read-only] Read ABAP interface source code and metadata. Answers:
268
268
 
269
269
  **Source:** `src/handlers/interface/readonly/handleReadInterface.ts`
270
270
 
@@ -325,7 +325,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
325
325
 
326
326
  <a id="readprogram-read-only-program"></a>
327
327
  #### ReadProgram (Read-Only / Program)
328
- **Description:** [read-only] Read ABAP program (report) source code and metadata. Answers:
328
+ **Description:** Operation: Read, Create, Update. Subject: Program. Will be useful for reading, creating, or updating program. [read-only] Read ABAP program (report) source code and metadata. Answers:
329
329
 
330
330
  **Source:** `src/handlers/program/readonly/handleReadProgram.ts`
331
331
 
@@ -342,7 +342,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
342
342
 
343
343
  <a id="readview-read-only-view"></a>
344
344
  #### ReadView (Read-Only / View)
345
- **Description:** [read-only] Read ABAP CDS view source code and metadata. Answers:
345
+ **Description:** Operation: Read, Create, Update. Subject: View. Will be useful for reading, creating, or updating view. [read-only] Read ABAP CDS view source code and metadata. Answers:
346
346
 
347
347
  **Source:** `src/handlers/view/readonly/handleReadView.ts`
348
348
 
@@ -377,7 +377,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
377
377
 
378
378
  <a id="createclass-high-level-class"></a>
379
379
  #### CreateClass (High-Level / Class)
380
- **Description:** Create a new ABAP class in SAP system. Creates the class object in initial state. Use UpdateClass to set source code afterwards.
380
+ **Description:** Operation: Create. Subject: Class. Will be useful for creating class. Create a new ABAP class in SAP system. Creates the class object in initial state.
381
381
 
382
382
  **Source:** `src/handlers/class/high/handleCreateClass.ts`
383
383
 
@@ -541,7 +541,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
541
541
 
542
542
  <a id="updateclass-high-level-class"></a>
543
543
  #### UpdateClass (High-Level / Class)
544
- **Description:** Update source code of an existing ABAP class. Locks, checks, updates, unlocks, and optionally activates.
544
+ **Description:** Operation: Update, Create. Subject: Class. Will be useful for updating or creating class. Update source code of an existing ABAP class. Locks, updates, unlocks, and optionally activates.
545
545
 
546
546
  **Source:** `src/handlers/class/high/handleUpdateClass.ts`
547
547
 
@@ -686,7 +686,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
686
686
 
687
687
  <a id="createfunctionmodule-high-level-function"></a>
688
688
  #### CreateFunctionModule (High-Level / Function)
689
- **Description:** Create a new ABAP function module within an existing function group. Creates the function module in initial state. Use UpdateFunctionModule to set source code afterwards.
689
+ **Description:** Operation: Create. Subject: FunctionModule. Will be useful for creating function module. Create a new ABAP function module within an existing function group. Creates the function module in initial state.
690
690
 
691
691
  **Source:** `src/handlers/function/high/handleCreateFunctionModule.ts`
692
692
 
@@ -717,7 +717,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
717
717
 
718
718
  <a id="updatefunctionmodule-high-level-function"></a>
719
719
  #### UpdateFunctionModule (High-Level / Function)
720
- **Description:** Update source code of an existing ABAP function module. Locks the function module, uploads new source code, and unlocks. Optionally activates after update. Use this to modify existing function modules without re-creating metadata.
720
+ **Description:** Operation: Update, Create. Subject: FunctionModule. Will be useful for updating or creating function module. Update source code of an existing ABAP function module. Locks, updates, unlocks, and optionally activates.
721
721
 
722
722
  **Source:** `src/handlers/function/high/handleUpdateFunctionModule.ts`
723
723
 
@@ -814,7 +814,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
814
814
 
815
815
  <a id="createinterface-high-level-interface"></a>
816
816
  #### CreateInterface (High-Level / Interface)
817
- **Description:** Create a new ABAP interface in SAP system. Creates the interface object in initial state. Use UpdateInterface to set source code afterwards.
817
+ **Description:** Operation: Create. Subject: Interface. Will be useful for creating interface. Create a new ABAP interface in SAP system. Creates the interface object in initial state.
818
818
 
819
819
  **Source:** `src/handlers/interface/high/handleCreateInterface.ts`
820
820
 
@@ -858,7 +858,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
858
858
 
859
859
  <a id="updateinterface-high-level-interface"></a>
860
860
  #### UpdateInterface (High-Level / Interface)
861
- **Description:** Update source code of an existing ABAP interface. Uses stateful session with proper lock/unlock mechanism. Lock handle and transport number are passed in URL parameters.
861
+ **Description:** Operation: Update, Create. Subject: Interface. Will be useful for updating or creating interface. Update source code of an existing ABAP interface. Locks, updates, unlocks, and optionally activates.
862
862
 
863
863
  **Source:** `src/handlers/interface/high/handleUpdateInterface.ts`
864
864
 
@@ -921,7 +921,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
921
921
 
922
922
  <a id="createprogram-high-level-program"></a>
923
923
  #### CreateProgram (High-Level / Program)
924
- **Description:** Create a new ABAP program (report) in SAP system. Creates the program object in initial state. Use UpdateProgram to set source code afterwards.
924
+ **Description:** Operation: Create. Subject: Program. Will be useful for creating program. Create a new ABAP program (report) in SAP system. Creates the program object in initial state.
925
925
 
926
926
  **Source:** `src/handlers/program/high/handleCreateProgram.ts`
927
927
 
@@ -967,7 +967,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
967
967
 
968
968
  <a id="updateprogram-high-level-program"></a>
969
969
  #### UpdateProgram (High-Level / Program)
970
- **Description:** Update source code of an existing ABAP program. Locks the program, checks new code, uploads new source code, and unlocks. Optionally activates after update. Use this to modify existing programs without re-creating metadata.
970
+ **Description:** Operation: Update, Create. Subject: Program. Will be useful for updating or creating program. Update source code of an existing ABAP program. Locks, updates, unlocks, and optionally activates.
971
971
 
972
972
  **Source:** `src/handlers/program/high/handleUpdateProgram.ts`
973
973
 
@@ -1196,7 +1196,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
1196
1196
 
1197
1197
  <a id="createview-high-level-view"></a>
1198
1198
  #### CreateView (High-Level / View)
1199
- **Description:** Create CDS View or Classic View in SAP. Creates the view object in initial state. Use UpdateView to set DDL source code afterwards.
1199
+ **Description:** Operation: Create. Subject: View. Will be useful for creating view. Create a new CDS View or Classic View in SAP system. Creates the view object in initial state.
1200
1200
 
1201
1201
  **Source:** `src/handlers/view/high/handleCreateView.ts`
1202
1202
 
@@ -1240,7 +1240,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
1240
1240
 
1241
1241
  <a id="updateview-high-level-view"></a>
1242
1242
  #### UpdateView (High-Level / View)
1243
- **Description:** Update DDL source code of an existing CDS View or Classic View. Locks the view, checks new code, uploads new DDL source, unlocks, and optionally activates.
1243
+ **Description:** Operation: Update, Create. Subject: View. Will be useful for updating or creating view. Update DDL source code of an existing CDS View or Classic View. Locks, updates, unlocks, and optionally activates.
1244
1244
 
1245
1245
  **Source:** `src/handlers/view/high/handleUpdateView.ts`
1246
1246
 
@@ -1262,7 +1262,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
1262
1262
 
1263
1263
  <a id="activateclasslow-low-level-class"></a>
1264
1264
  #### ActivateClassLow (Low-Level / Class)
1265
- **Description:** [low-level] Activate an ABAP class. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1265
+ **Description:** Operation: Activate, Create, Update. Subject: Class. Will be useful for activating, creating, or updating class. [low-level] Activate an ABAP class. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1266
1266
 
1267
1267
  **Source:** `src/handlers/class/low/handleActivateClass.ts`
1268
1268
 
@@ -1542,7 +1542,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
1542
1542
 
1543
1543
  <a id="activatefunctionmodulelow-low-level-function"></a>
1544
1544
  #### ActivateFunctionModuleLow (Low-Level / Function)
1545
- **Description:** [low-level] Activate an ABAP function module. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1545
+ **Description:** Operation: Activate, Create, Update. Subject: FunctionModule. Will be useful for activating, creating, or updating function module. [low-level] Activate an ABAP function module. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1546
1546
 
1547
1547
  **Source:** `src/handlers/function/low/handleActivateFunctionModule.ts`
1548
1548
 
@@ -1776,7 +1776,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
1776
1776
 
1777
1777
  <a id="activateinterfacelow-low-level-interface"></a>
1778
1778
  #### ActivateInterfaceLow (Low-Level / Interface)
1779
- **Description:** [low-level] Activate an ABAP interface. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1779
+ **Description:** Operation: Activate, Create, Update. Subject: Interface. Will be useful for activating, creating, or updating interface. [low-level] Activate an ABAP interface. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1780
1780
 
1781
1781
  **Source:** `src/handlers/interface/low/handleActivateInterface.ts`
1782
1782
 
@@ -1992,7 +1992,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
1992
1992
 
1993
1993
  <a id="activateprogramlow-low-level-program"></a>
1994
1994
  #### ActivateProgramLow (Low-Level / Program)
1995
- **Description:** [low-level] Activate an ABAP program. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1995
+ **Description:** Operation: Activate, Create, Update. Subject: Program. Will be useful for activating, creating, or updating program. [low-level] Activate an ABAP program. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1996
1996
 
1997
1997
  **Source:** `src/handlers/program/low/handleActivateProgram.ts`
1998
1998
 
@@ -2124,7 +2124,7 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
2124
2124
 
2125
2125
  <a id="activateviewlow-low-level-view"></a>
2126
2126
  #### ActivateViewLow (Low-Level / View)
2127
- **Description:** [low-level] Activate an ABAP view (CDS view). Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
2127
+ **Description:** Operation: Activate, Create, Update. Subject: View. Will be useful for activating, creating, or updating view. [low-level] Activate an ABAP view (CDS view). Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
2128
2128
 
2129
2129
  **Source:** `src/handlers/view/low/handleActivateView.ts`
2130
2130
 
@@ -2253,4 +2253,4 @@ Legacy systems support a subset of tools — primarily Class, Interface, View, P
2253
2253
 
2254
2254
  ---
2255
2255
 
2256
- *Last updated: 2026-04-13*
2256
+ *Last updated: 2026-04-24*
@@ -3,7 +3,7 @@
3
3
  Generated from code in `src/handlers/**` (not from docs).
4
4
 
5
5
  - Level: Low-Level
6
- - Total tools: 122
6
+ - Total tools: 124
7
7
 
8
8
  ## Navigation
9
9
 
@@ -113,6 +113,10 @@ Generated from code in `src/handlers/**` (not from docs).
113
113
  - [UnlockProgramLow](#unlockprogramlow-low-level-program)
114
114
  - [UpdateProgramLow](#updateprogramlow-low-level-program)
115
115
  - [ValidateProgramLow](#validateprogramlow-low-level-program)
116
+ - [Service Binding](#low-level-service-binding)
117
+ - [ActivateServiceBindingLow](#activateservicebindinglow-low-level-service-binding)
118
+ - [Service Definition](#low-level-service-definition)
119
+ - [ActivateServiceDefinitionLow](#activateservicedefinitionlow-low-level-service-definition)
116
120
  - [Structure](#low-level-structure)
117
121
  - [ActivateStructureLow](#activatestructurelow-low-level-structure)
118
122
  - [CheckStructureLow](#checkstructurelow-low-level-structure)
@@ -157,7 +161,7 @@ Generated from code in `src/handlers/**` (not from docs).
157
161
 
158
162
  <a id="activatebehaviordefinitionlow-low-level-behavior-definition"></a>
159
163
  #### ActivateBehaviorDefinitionLow (Low-Level / Behavior Definition)
160
- **Description:** [low-level] Activate an ABAP behavior definition. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
164
+ **Description:** Operation: Activate, Create, Update. Subject: BehaviorDefinition. Will be useful for activating, creating, or updating behavior definition. [low-level] Activate an ABAP behavior definition. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
161
165
 
162
166
  **Source:** `src/handlers/behavior_definition/low/handleActivateBehaviorDefinition.ts`
163
167
 
@@ -326,7 +330,7 @@ Generated from code in `src/handlers/**` (not from docs).
326
330
 
327
331
  <a id="activateclasslow-low-level-class"></a>
328
332
  #### ActivateClassLow (Low-Level / Class)
329
- **Description:** [low-level] Activate an ABAP class. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
333
+ **Description:** Operation: Activate, Create, Update. Subject: Class. Will be useful for activating, creating, or updating class. [low-level] Activate an ABAP class. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
330
334
 
331
335
  **Source:** `src/handlers/class/low/handleActivateClass.ts`
332
336
 
@@ -637,7 +641,7 @@ Generated from code in `src/handlers/**` (not from docs).
637
641
 
638
642
  <a id="activatedataelementlow-low-level-data-element"></a>
639
643
  #### ActivateDataElementLow (Low-Level / Data Element)
640
- **Description:** [low-level] Activate an ABAP data element. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
644
+ **Description:** Operation: Activate, Create, Update. Subject: DataElement. Will be useful for activating, creating, or updating data element. [low-level] Activate an ABAP data element. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
641
645
 
642
646
  **Source:** `src/handlers/data_element/low/handleActivateDataElement.ts`
643
647
 
@@ -756,7 +760,7 @@ Generated from code in `src/handlers/**` (not from docs).
756
760
 
757
761
  <a id="activatemetadataextensionlow-low-level-ddlx"></a>
758
762
  #### ActivateMetadataExtensionLow (Low-Level / Ddlx)
759
- **Description:** [low-level] Activate an ABAP metadata extension. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
763
+ **Description:** Operation: Activate, Create, Update. Subject: MetadataExtension. Will be useful for activating, creating, or updating metadata extension. [low-level] Activate an ABAP metadata extension. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
760
764
 
761
765
  **Source:** `src/handlers/ddlx/low/handleActivateMetadataExtension.ts`
762
766
 
@@ -871,7 +875,7 @@ Generated from code in `src/handlers/**` (not from docs).
871
875
 
872
876
  <a id="activatedomainlow-low-level-domain"></a>
873
877
  #### ActivateDomainLow (Low-Level / Domain)
874
- **Description:** [low-level] Activate an ABAP domain. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
878
+ **Description:** Operation: Activate, Create, Update. Subject: Domain. Will be useful for activating, creating, or updating domain. [low-level] Activate an ABAP domain. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
875
879
 
876
880
  **Source:** `src/handlers/domain/low/handleActivateDomain.ts`
877
881
 
@@ -998,7 +1002,7 @@ Generated from code in `src/handlers/**` (not from docs).
998
1002
 
999
1003
  <a id="activatefunctionmodulelow-low-level-function"></a>
1000
1004
  #### ActivateFunctionModuleLow (Low-Level / Function)
1001
- **Description:** [low-level] Activate an ABAP function module. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1005
+ **Description:** Operation: Activate, Create, Update. Subject: FunctionModule. Will be useful for activating, creating, or updating function module. [low-level] Activate an ABAP function module. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1002
1006
 
1003
1007
  **Source:** `src/handlers/function/low/handleActivateFunctionModule.ts`
1004
1008
 
@@ -1204,7 +1208,7 @@ Generated from code in `src/handlers/**` (not from docs).
1204
1208
 
1205
1209
  <a id="activateinterfacelow-low-level-interface"></a>
1206
1210
  #### ActivateInterfaceLow (Low-Level / Interface)
1207
- **Description:** [low-level] Activate an ABAP interface. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1211
+ **Description:** Operation: Activate, Create, Update. Subject: Interface. Will be useful for activating, creating, or updating interface. [low-level] Activate an ABAP interface. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1208
1212
 
1209
1213
  **Source:** `src/handlers/interface/low/handleActivateInterface.ts`
1210
1214
 
@@ -1429,7 +1433,7 @@ Generated from code in `src/handlers/**` (not from docs).
1429
1433
 
1430
1434
  <a id="activateprogramlow-low-level-program"></a>
1431
1435
  #### ActivateProgramLow (Low-Level / Program)
1432
- **Description:** [low-level] Activate an ABAP program. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1436
+ **Description:** Operation: Activate, Create, Update. Subject: Program. Will be useful for activating, creating, or updating program. [low-level] Activate an ABAP program. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1433
1437
 
1434
1438
  **Source:** `src/handlers/program/low/handleActivateProgram.ts`
1435
1439
 
@@ -1540,12 +1544,44 @@ Generated from code in `src/handlers/**` (not from docs).
1540
1544
 
1541
1545
  ---
1542
1546
 
1547
+ <a id="low-level-service-binding"></a>
1548
+ ### Low-Level / Service Binding
1549
+
1550
+ <a id="activateservicebindinglow-low-level-service-binding"></a>
1551
+ #### ActivateServiceBindingLow (Low-Level / Service Binding)
1552
+ **Description:** Operation: Activate, Create, Update. Subject: ServiceBinding. Will be useful for activating, creating, or updating service binding. [low-level] Activate an ABAP service binding. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1553
+
1554
+ **Source:** `src/handlers/service_binding/low/handleActivateServiceBinding.ts`
1555
+
1556
+ **Parameters:**
1557
+ - `name` (string, required) - Service binding name (e.g., ZSB_MY_SERVICE).
1558
+ - `session_id` (string, optional) - Session ID from GetSession. If not provided, a new session will be created.
1559
+ - `session_state` (object, optional) - Session state from GetSession (cookies, csrf_token, cookie_store). Required if session_id is provided.
1560
+
1561
+ ---
1562
+
1563
+ <a id="low-level-service-definition"></a>
1564
+ ### Low-Level / Service Definition
1565
+
1566
+ <a id="activateservicedefinitionlow-low-level-service-definition"></a>
1567
+ #### ActivateServiceDefinitionLow (Low-Level / Service Definition)
1568
+ **Description:** Operation: Activate, Create, Update. Subject: ServiceDefinition. Will be useful for activating, creating, or updating service definition. [low-level] Activate an ABAP service definition. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1569
+
1570
+ **Source:** `src/handlers/service_definition/low/handleActivateServiceDefinition.ts`
1571
+
1572
+ **Parameters:**
1573
+ - `name` (string, required) - Service definition name (e.g., ZSD_MY_SERVICE).
1574
+ - `session_id` (string, optional) - Session ID from GetSession. If not provided, a new session will be created.
1575
+ - `session_state` (object, optional) - Session state from GetSession (cookies, csrf_token, cookie_store). Required if session_id is provided.
1576
+
1577
+ ---
1578
+
1543
1579
  <a id="low-level-structure"></a>
1544
1580
  ### Low-Level / Structure
1545
1581
 
1546
1582
  <a id="activatestructurelow-low-level-structure"></a>
1547
1583
  #### ActivateStructureLow (Low-Level / Structure)
1548
- **Description:** [low-level] Activate an ABAP structure. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1584
+ **Description:** Operation: Activate, Create, Update. Subject: Structure. Will be useful for activating, creating, or updating structure. [low-level] Activate an ABAP structure. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1549
1585
 
1550
1586
  **Source:** `src/handlers/structure/low/handleActivateStructure.ts`
1551
1587
 
@@ -1711,7 +1747,7 @@ Generated from code in `src/handlers/**` (not from docs).
1711
1747
 
1712
1748
  <a id="activatetablelow-low-level-table"></a>
1713
1749
  #### ActivateTableLow (Low-Level / Table)
1714
- **Description:** [low-level] Activate an ABAP table. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1750
+ **Description:** Operation: Activate, Create, Update. Subject: Table. Will be useful for activating, creating, or updating table. [low-level] Activate an ABAP table. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1715
1751
 
1716
1752
  **Source:** `src/handlers/table/low/handleActivateTable.ts`
1717
1753
 
@@ -1843,7 +1879,7 @@ Generated from code in `src/handlers/**` (not from docs).
1843
1879
 
1844
1880
  <a id="activateviewlow-low-level-view"></a>
1845
1881
  #### ActivateViewLow (Low-Level / View)
1846
- **Description:** [low-level] Activate an ABAP view (CDS view). Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1882
+ **Description:** Operation: Activate, Create, Update. Subject: View. Will be useful for activating, creating, or updating view. [low-level] Activate an ABAP view (CDS view). Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session.
1847
1883
 
1848
1884
  **Source:** `src/handlers/view/low/handleActivateView.ts`
1849
1885
 
@@ -1956,4 +1992,4 @@ Generated from code in `src/handlers/**` (not from docs).
1956
1992
 
1957
1993
  ---
1958
1994
 
1959
- *Last updated: 2026-04-13*
1995
+ *Last updated: 2026-04-24*