I have a standard text as below :
Notification number &qmel-qmnumn& created.
In my code i will read this stndard text using function module READ_TEXT.Once read I want the internal table IT_LINES of read_text to pass to my internal table.
Loop at IT_LINES.
my_table-lines = IT_LINES-tdline.
append my_table.
endloop.
Now the problem is that my_table is getting populated with
text otification number &qmel-qmnumn& created' but I want the value of variable to be populated like 'Notification number 999999 created'.
Is there any symbol i need to maintain in the standard text.
please note that I am not going to use this in form but for sending mail.
Please suggest.