2006 Jun 05 1:40 PM
Hi,
I'm calling an RFC FM inside my BSP Applicaiton. I am concatenating strings in this RFC FM. But it is concatenating upto 132 characters only, though I have declared the variable with the type TEXT8192.
Pls let me know ASAP if anybody has some solution.
Thanks in advance.
Regards
Raghav
2006 Jun 05 1:41 PM
Declare it as type string or char1024.
On second thoughts, i don't think this is a problem.
Can you show how you wrote the code?
Probably the variable you are collecting is of length 132?
Can you show your code?
Regards,
Ravi
2006 Jun 05 1:41 PM
Declare it as type string or char1024.
On second thoughts, i don't think this is a problem.
Can you show how you wrote the code?
Probably the variable you are collecting is of length 132?
Can you show your code?
Regards,
Ravi
2006 Jun 05 1:59 PM
Hi,
here is my code:
data: lt_log TYPE STANDARD TABLE OF zpqr_stand_alone_st WITH HEADER LINE.
data: lv_comm type text8192.
LOOP AT lt_msg.
CONCATENATE lv_comm lt_msg-message
INTO lv_comm SEPARATED BY c_sep.
ENDLOOP.
lt_log-comments = lv_comm.
2006 Jun 05 2:50 PM
Hi,
Most probably, the <b>field COMMENTS of structure ZPQR_STAND_ALONE is only 132 characters long</b>. Thus, it is troncated when assigned.
Try to check this in debug and get back.
Best regards,
Guillaume
2006 Jun 05 2:54 PM
What is the type of lt_log-comments?
I think it is 132 characters long.
Regards,
Ravi
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |