I have a internal table, i need loop the internal table and append the record index to text.
like
loop at itab
CONCATENATE 'INFO' + SY-TABIX into itab-text.
modify itab index SY-TABIX
endloop.
how can i do that. Thanks!