cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP Report as HTML

Former Member
0 Kudos

Hello,

we have a couple of ABAP reports that generate a traditional list (with WRITE) and now I have to convert the output as HTML and display it (perhaps) in a new window of the browser. I´m not sure if function WWW_LIST_TO_HTML can be very helpful for that purpose.

Has any one experience in this field that can tell me a couple of tricks on how to do it the best way ?? The reports will be called from BSP pages, of course.

Thanks a lot

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

thanks. Both examples work perfect.

Now I need to know how I can read the select-options and parameters from the report, so that I can create a dynamic BSP-Page with those fields.

I think there´s an ABAP instruction for reading the conditions but I can´t remember now.

Thanks

athavanraja
Active Contributor
0 Kudos

use Function Module

RS_REPORTSELECTSCREEN_INFO to get the report selection screen parameters/select-options names with their default values.

Regards

Raja

Former Member
0 Kudos

Hi,

This function is interesting but does not deliver all information that I need, like texts to selection fields, length of field and type of field (Radiobutton or Checkbox).

Does any one know another function or perhaps the tables where all this information hides ??

Answers (2)

Answers (2)

athavanraja
Active Contributor
0 Kudos

if your report dosent have parameters or you dont need to supply any parameter simply call the following url

http://<wasserver>.xxx.com:<port>/sabp/bc/report?report=<your report>

else follow the following link for details

Regards

Raja

eddy_declercq
Active Contributor
0 Kudos

Hi,

Check this thread with the same question:

Eddy