Hi all,
I have written the following piece of code
i_objtxt_temp = 'Hello all,'.
APPEND i_objtxt_temp TO i_objtxt .
i_objtxt_temp = 'How are you.'.
APPEND i_objtxt_temp TO i_objtxt .
The output to which is coming like this
Hello all,
How are you.
Now I need a space between these two lines. Please suggest how can I do that.
Points will be given.
Thanks in advance.