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

Edit_Text

Former Member
0 Likes
354

Can anyone please help me on how to use function module

EDIT_TEXT.

There is a parameter called Header like Thead.

How should it be used ?

Thanks in Advance

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
308

hi

good

check this sample code

report zrich_0001 no standard page heading..

types: t_source(72).

data: isource type table of t_source,

xsource type t_source.

xsource = 'This is text line 1'. append xsource to isource.

xsource = 'This is text line 2'. append xsource to isource.

xsource = 'This is text line 3'. append xsource to isource.

xsource = 'This is text line 4'. append xsource to isource.

xsource = 'This is text line 5'. append xsource to isource.

editor-call for isource.

Loop at isource into xsource.

Write:/ xsource.

endloop.

[/code]

thanks

mrutyun^

1 REPLY 1
Read only

Former Member
0 Likes
309

hi

good

check this sample code

report zrich_0001 no standard page heading..

types: t_source(72).

data: isource type table of t_source,

xsource type t_source.

xsource = 'This is text line 1'. append xsource to isource.

xsource = 'This is text line 2'. append xsource to isource.

xsource = 'This is text line 3'. append xsource to isource.

xsource = 'This is text line 4'. append xsource to isource.

xsource = 'This is text line 5'. append xsource to isource.

editor-call for isource.

Loop at isource into xsource.

Write:/ xsource.

endloop.

[/code]

thanks

mrutyun^