hi,
dear experts,
I read out some characters and concatenate
them later. My problem is the first readed
character appears at the end and the last readed
at the beginning. How can I avoid that.
They must be appear vice versa (other way round).
The first readed must be stay at the first position
and the second ....
rgds
ertas
LOOP AT l_api_iaprop_data_tab INTO l_api_iaprop_unftxt2_wa WHERE recnmaster EQ l_api_iava_wa-recn AND atnam = 'HS_1103_001_UNF'. concatenate l_api_iaprop_unftxt2_wa-atwrt gv_unftxt INTO gv_unftxt separated by space. ENDLOOP. wa_zehs_incident_li-loa = gv_unftxt. wa_zehs_incident_li-loat = l_api_iaprop_data_wa-atwtb. clear: l_api_iaprop_unftxt2_wa-atwtb, gv_unftxt. MODIFY lt_zehs_incident_li FROM wa_zehs_incident_li TRANSPORTING loa loat. ENDIF. ENDLOOP.