HI,
I am doing unicode conversion in SAP. In one program, i need to change the data type which is not unicode compatiable. Anyone can help me out to change the type, which i mentioned below.
data: srcstr1 type x value '0D'. -
>needs to be changed
For Example.
c_split TYPE x VALUE '09',
i replaced with code
CLASS cl_abap_char_utilities DEFINITION LOAD.
CONSTANTS : s_split(1) TYPE c VALUE
cl_abap_char_utilities=>horizontal_tab.
Like this i need some input for the conversion which i have mentioned above for '0D'.
Thanks