
How to change CL_SALV_TABLE=>FACTORY ALV Field Label
July 17, 2019
How to Flush DNS for Website in public DNS
March 7, 2020Change the First letter of every word in a sentence to Uppercase using SAP Delivered Class Method
Eg.
MOHAMED KALEEL → Mohamed Kaleel
DATA: lv_str type string.
lv_str = 'MOHAMED KALEEL'.
WRITE:/ lv_str.
lv_str = cl_hrpayus_format_string=>conv_first_chars_to_upper_case( lv_str ).
WRITE:/ lv_str.