Long Text ## problems and # problems how to solve
below code help you remove the # code to your program
******************************************* below help to remove specail symbol like @# to string********************
DATA: c_tab VALUE cl_abap_char_utilities=>newline.
REPLACE ALL OCCURRENCES OF c_tab IN gv_length1 WITH space.
DATA: c_tab1 VALUE cl_abap_char_utilities=>cr_lf.
REPLACE ALL OCCURRENCES OF c_tab1 IN gv_length1 WITH space.
******************************************* below help to remove specail symbol like @# to string********************
DATA: c_tab VALUE cl_abap_char_utilities=>newline.
DATA: c_tab1 VALUE cl_abap_char_utilities=>cr_lf.
REPLACE ALL OCCURRENCES OF c_tab IN gv_length6 WITH space.
REPLACE ALL OCCURRENCES OF c_tab1 IN gv_length6 WITH space.
******************************************* below help to remove specail symbol like @# to string********************
DATA: c_tab VALUE cl_abap_char_utilities=>newline.
REPLACE ALL OCCURRENCES OF c_tab IN gv_length1 WITH space.
DATA: c_tab1 VALUE cl_abap_char_utilities=>cr_lf.
REPLACE ALL OCCURRENCES OF c_tab1 IN gv_length1 WITH space.
******************************************* below help to remove specail symbol like @# to string********************
DATA: c_tab VALUE cl_abap_char_utilities=>newline.
DATA: c_tab1 VALUE cl_abap_char_utilities=>cr_lf.
REPLACE ALL OCCURRENCES OF c_tab IN gv_length6 WITH space.
REPLACE ALL OCCURRENCES OF c_tab1 IN gv_length6 WITH space.
Comments
Post a Comment