Change 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.