Application Development and Automation 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: 
Read only

printing long text

Former Member
0 Likes
911

Hi,

i am trying to display purchase order, material and material long text, actually few of the materials long text contains more than 700 characters is it possible to display.

i was trying to read the material long text using read_text function module but it returns long text in the table format, how can we display table data in the list column.

regards,

revoori

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
788

data: l_v_text type char1024.

"suppose the output of read_text is in it_text then

loop at it_text in wa_text.

concatenate l_v_text wa-text-tdline into l_v_text seperated by ` `.
clear wa_text.
endloop.

кu03B1ятu03B9к

Hi,

i am trying to display purchase order, material and material long text, actually few of the materials long text contains more than 700 characters is it possible to display.

i was trying to read the material long text using read_text function module but it returns long text in the table format, how can we display table data in the list column.

regards,

revoori

3 REPLIES 3
Read only

Former Member
0 Likes
789

data: l_v_text type char1024.

"suppose the output of read_text is in it_text then

loop at it_text in wa_text.

concatenate l_v_text wa-text-tdline into l_v_text seperated by ` `.
clear wa_text.
endloop.

кu03B1ятu03B9к

Read only

former_member203501
Active Contributor
0 Likes
788

hi use like this...i think it is possible..

/: L_TEXT+0(255)

/: L_TEXT+255(255)

Read only

Former Member
0 Likes
788

thanks All