CONVERT_TO_CAMEL_CASE SAP Method of class /UI2/CL_ABAP2JSON
Below is documentation, parameters and attributes of ABAP Method CONVERT_TO_CAMEL_CASE within SAP class /UI2/CL_ABAP2JSON. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /UI2/CL_ABAP2JSON into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method CONVERT_TO_CAMEL_CASE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CONVERT_TO_CAMEL_CASE
.| Name | Type | Data Type | Description | Default Value |
| I_ABAP_FIELD_NAME | Importing | TYPE STRING | ||
| R_CAMEL_CASED | Returning | TYPE STRING |
Exceptions of Method CONVERT_TO_CAMEL_CASE
This method does not have any exceptionsExample ABAP coding
DATA: lv_I_ABAP_FIELD_NAME TYPE STRING,
lv_R_CAMEL_CASED TYPE STRING,
lv_other TYPE c.
CALL METHOD /UI2/CL_ABAP2JSON=>CONVERT_TO_CAMEL_CASE(
EXPORTING
I_ABAP_FIELD_NAME = lv_I_ABAP_FIELD_NAME
RECEIVING
R_CAMEL_CASED = lv_R_CAMEL_CASED )
"Alternate coding for Method Call with returning parameter
lv_R_CAMEL_CASED = /UI2/CL_ABAP2JSON=>CONVERT_TO_CAMEL_CASE(
EXPORTING
I_ABAP_FIELD_NAME = lv_I_ABAP_FIELD_NAME ).
Links to Related Class(s)
/UI2/CL_...Full list of available SAP object classes
Search for further information about these or an SAP related objects