Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

field type String (long length more than 1500)

Former Member
0 Kudos

Hi All,

we have requirement like one custom table with field string type(1500 length) should update through the report.

problem is, it is not updating that many characters through the report.

(till 255 chars only updating in the table)

i have to update full string in the custom table.

the code is below, please help me any one come accross the situation.

thanks in advance.

data: lv_test type string,

lv_test1 type string,

lv_num type i,

it_test type table of ZFEILD_TEST,

wa_test type zfeild_test.

do 10 times.

lv_test = 'thptjpojtgpeojygpeojhpoewjhpojwhjwpohjopsjhoptrjhopjwhopjwpojhpowjhopwjojwpojhpowjhpowjkahglfdglkaglkahklrhlfhslhkalklklhkalhalkhlahlkajljhlajhlajlajlkajlhjaljlajlhjaljhlajhlahpojwpohjwopjhojhwjhojopjwopjhwojhotjhwojwhojwpojhpwojhpowjophjwpojh'

.

lv_test1 = lv_test.

concatenate lv_test lv_test1 into lv_test1.

clear: lv_test.

enddo.

lv_num = strlen( lv_test1 ).

wa_test-STRIN = lv_test1.

wa_test-znumber = '001'.

append wa_test to it_test.

loop at it_test into wa_test.

write: / wa_TEST-strin.

modify zfeild_test from wa_test.

endloop.

1 REPLY 1

Former Member
0 Kudos

Hi,

I assume you have chunks of the string and you need to concatenate it and put it to the table.

You can try this.

data : begin of w_string occurs 0,

string type string,

end of w_string.

data : w_char1(255) type c value 'BLAUGBUSSUSSF',

w_char2(255) type c value 'GSIUHFSHF',

....

.....

....

w_string-string+0(255) = w_char1.

w_string-straing+255(255) = w_char2.

so on....

...........

...

append w_string.

Regards,

Pramod