hallow
i have internal table (person_tab) and i wont convert it to
<b>xtring</b>
how can i do that?
best regards.
TYPES : BEGIN OF 1_itab,
werks TYPE persa,
persg TYPE persg,
persk TYPE persk,
orgeh TYPE orgeh,
stell TYPE stell,
lastname TYPE pad_nachn,
firstname TYPE pad_vorna,
stdaz TYPE enstd,
btrtl TYPE btrtl,
name1 TYPE pbtxt,
btext TYPE btrtx,
perid TYPE prdni,
END OF 1_itab.
DATA : person_tab TYPE TABLE OF 1_itab,
wa_person_tab LIKE LINE OF person_tab
<b>
i now this function but how i move person_tab to this function?</b>
<b>plz give example</b>
call function 'SOTR_SERV_TABLE_TO_STRING'
exporting
line_length = gl_linewidth
langu = p_langu
importing
text = l_text
tables
text_tab = l_text_tab.
call function 'SCMS_STRING_TO_XSTRING'
exporting
text = l_text
importing
buffer = l_xstring_data
exceptions
failed = 1
others = 2