Show TOC

Web Reporting Function ModulesLocate this document in the navigation structure

Use

To enable Web users to access business information in SAP system through Web Reporting, you simply place the appropriate URL on your company's homepage.

The URL must contain a call to one of the following function modules provided by SAP for Web Reporting:

Function module

Description

WWW_GET_REPORT

Gets and executes a report immediately and displays the results. It calls reports that do not have a selection screen.

Example

http://<machine>:<port>/sap/bc/webrfc?_FUNCTION=WWW_GET_REPORT&_REPORT=RDTEST01

This URL specifies the service webrfc and instructs function module WWW_GET_REPORT to get and execute report RDTEST01.

Parameter-value pairs are separated by &.

If you want to pass further criteria, you simply pack them into the URL as additional parameters and separate each by &.

Note

Never use single or double quotation marks in a URL.

If parameter values contain spaces, replace each space with a + character.

If parameter values contain &, replace the symbol with a % character and its ASCII equivalent 26 (hexadecimal), that is %26.