cancel
Showing results for 
Search instead for 
Did you mean: 

Report standard SAP into BSP page

Former Member
0 Kudos

I want know how I can read the output of a standard report SAP R/3 into a BSP page ( WAS 6.20 ).

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Try using

SUBMIT report WITH parameter1 EQ 'value1'

WITH parameter2 EQ 'value2'

EXPORTING LIST TO MEMORY

AND RETURN.

CALL FUNCTION 'LIST_FROM_MEMORY'

TABLES

listobject = t_listobject

EXCEPTIONS

not_found = 1

OTHERS = 2.

CALL FUNCTION 'WWW_HTML_FROM_LISTOBJECT'

  • EXPORTING

  • REPORT_NAME =

  • TEMPLATE_NAME = 'WEBREPORTING_REPORT'

TABLES

html = t_compressed_attachment

listobject = t_listobject

  • LISTICONS =

.

This will give you the output of ABAP report in HTML format.

Regards,

Pranav.

Former Member
0 Kudos

I've used this code in regular ABAP's to output a page --- What does the BSP code look like ( I'm new to BSP's)?

Ulli_Hoffmann
Contributor
0 Kudos

Hi Rick,

a short answer would be: create a BSP application and place the code into the onInizialization handler. But since you are completely new to BSP I'd recommend the following links for tutorials:

http://help.sap.com/saphelp_webas620/helpdata/en/e9/bb153aab4a0c0ee10000000a114084/frameset.htm

http://help.sap.com/saphelp_webas620/helpdata/en/c8/101c3a1cf1c54be10000000a114084/frameset.htm

Recommended reading is also https://weblogs.sdn.sap.com/pub/wlg/542. [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken]

After you have done this and you still got questions, switch over to the BSP forum. There you'll find a lot more experts.

Have fun with BSP,

Ulli

asuman_suenbuel
Employee
Employee
0 Kudos

Hi folks,

Can someone tell me where I find installation guides for the Enterprise Portal 6.0

Asu