Hi,
This solution I've already seen.
FIELD-SYMBOLS: <fs> TYPE ANY.
ASSIGN p_e_event_data->m_data->* TO <fs>.
<fs> = 'TOTAL'(027).
Then. I adjusted the code and got what I want.
Final code:
ASSIGN ep_subtot_line->* TO <fs1>.
ASSIGN e_event_data->m_data->* TO <fs2>.
CONCATENATE es_subtottxt_info-keyword
<fs1>-field
'Instalações técnicas'
INTO <fs2>
SEPARATED BY space.
Thanks!