Question:
hai,
I am having 2 internal tables.
In one internal table t_sd I am having a field 'text' which has n rows.
In other internal table t_br I am having field which has a row 'text',which should have the cocatenated value of the all rows in first internal table.
thank you
Answer:
clear t_br.
loop at t_sd.
concatenate t_br-text t_sd-text
into
t_br-text.
endloop.
append t_br-text.
Answer:
Hai,
first of all, for your next post, follow some minor rules. When I read your post, the first thing I though was: "the next post will say: 'Cool, what's the problem?'"
Subject: "concatenate"... ??
Body: "I have this thing"
You said not to us what was your problem... That guest has been so kindly to answer you with a possible solution to your possible problem.
It's not a flame, it's just some kind of advice.
----------------
And now, seriously, if that guest has found your solution, remember:
- CONCATENATE "eats" all the spaces at the start and at the end of the strings being concatenated. Check the syntax or use the "search" feature to get some points about it.
- check the size of your texts and of the field you are concatenating in, you will save some troubles (take a look at STRLEN() ).
-----------------
From R's sing (one of this site's gurues):
http://www.catb.org/~esr/faqs/smart-questions.html
Take a glance at it, if you are able to keep all the sadistic comments out, it will help you a lot for your next posts
Answer:
From R's sing (one of this site's gurues):
http://www.catb.org/~esr/faqs/smart-questions.html
No I'm not, but thanks anyway!
_________________
Regards
R
Abap KC
SFMDR