Code: Alles auswählen.
form ileng_2_cleng using p_type type sychar01
p_ileng type i
changing p_cleng type i.
if p_type co 'CNDT'. " Unicode
p_cleng =
p_ileng / CL_ABAP_CHAR_UTILITIES=>charsize.
else.
p_cleng = p_ileng.
endif.
endform.