DetectedIntegration, APIs & connectivity
ABAP Openapi
A source-verified project description is not available yet. Open the detail page or wait for a manual refresh.
abapdotabapintegration-api
Source facts need a manual refresh
Case convertors
Simple case converter
zcl_abap_case=>camel( )->to_abap( 'camelCase' ) " --> CAMEL_CASE
zcl_abap_case=>camel( )->from_abap( 'CAMEL_CASE' ) " --> camelCasezcl_abap_case=>snake( )->to_abap( 'snake_case' ) " --> SNAKE_CASE
zcl_abap_case=>snake( )->from_abap( 'SNAKE_CASE' ) " --> snake_casezcl_abap_case=>kebab( )->to_abap( 'kebab-case' ) " --> KEBAB_CASE
zcl_abap_case=>kebab( )->from_abap( 'KEBAB_CASE' ) " --> kebab-caseAll converters are instances of ZIFABAPCASE interface which allows to send convertor as a variable to other libs