It's possible to create a report in Apex that works as a service.
To be able to define a webservice the administrator has to make a change in the default configuration of the apex workspace.
- Allow Restfull access
- Create region
- Modify attributes
- Define a static id for the region
- Enable Restful Access, the url will be shown
Ready.
The url looks like this:
http://<host>/pls/apex/apex_rest.getReport?app=613&page=5&reportid=hekr01&parmvalues=H01&output=xml
app = Application name/number
page = Pagenumber
reportid = Unique identifier report (defined at creation)
output = Format (XML or JSON)
parmvalues = additional parameters (value)
The value of <H01> will be assigned to the first itemof region
Use of multiple parameters:
First the values (comma seperated), than the items.
http://<host>/pls/apex/apex_rest.getReport?app=613&page=5&reportid=hekr01&parmvalues=H01,H02&output=xml
The values are assigned sequentially to the items of the report based on their (internal) ids.
So, H01 will be assigned to the item with the lowest ID and H02 will be assigned to the next item notwithstanding which region.
No comments:
Post a Comment