2009 Feb 04 11:04 AM
Hi,
I have declared a internal table like
DATA: gv_objtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE.
I have to concatenate some text to the table gv_objtxt but the contents of the text exceeds 255 characters.
gv_objtxt can hold only 255 characters.How to get all the contents.Please help
2009 Feb 04 11:12 AM
try this,
data: begin of itab occurs o,
abap(300) type string,
end of itab.
Hi,
I have declared a internal table like
DATA: gv_objtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE.
I have to concatenate some text to the table gv_objtxt but the contents of the text exceeds 255 characters.
gv_objtxt can hold only 255 characters.How to get all the contents.Please help
2009 Feb 04 11:06 AM
Hi ,
Try like this
types : begin of ty_itab,
gv_text(1000) type c,
end of ty_itab.
data : itab type table of ty_itab.
Now u can use the itab for ur purpose.
Regards,
Nagaraj
2009 Feb 04 11:11 AM
HI,
Declare your internal table like this,
data: it_tab1 TYPE TABLE OF string.
Thanks
vijay.R
2009 Feb 04 11:12 AM
try this,
data: begin of itab occurs o,
abap(300) type string,
end of itab.
2009 Feb 04 11:12 AM
2009 Feb 04 11:20 AM
Hi Hema,
U can try using the following statement
data:
begin of table_name occurs 10,
char type string,
end of table_name
Regards
Ravi Aswani.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |