hi,
i have a table which is definied this way:
ETR_TABLE Type Ref To /UI2/IF_NWBC_RUNTIME=>T_NAVIGATION_TREE_SRT
now i have to modify this table , i have to update one field in this table under certain conditions:
i have tried it like this:
loop at etr_table into es_table.
es_table-field = 'xxxxx'
modify etr_table from es_table.
endloop.
but this is not working because of this "type ref to" type.
So how to update such a internal table ?
br Martin