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: 

Internal table contents in HTML page

Former Member
0 Kudos

Hi,

I hv a reqt, I want to display the contents of the internal table in the HTML page, in a docking container....probably. in differnt font size....

how do I achieve this ?

2 REPLIES 2

Former Member
0 Kudos

hi

good

go through this code

data wa like line of itab.

data html type string.

  • Top part of HTML here

concatenate `<html><body>'

'<table>' into html.

loop at itab into wa.

concatenate html `<tr><td>` wa-field1 `</td><td>` wa-field2 .... '</td></tr>` into html.

endloop.

  • Bottom part of HTML here

concatenate html `</table></body></html>` into html.

reward point if helpful.

thanks

mrutyun^

0 Kudos

Hi,

But how to display it in browser? Any FM wher we have to pass this string?

Regards,

Niyaz