I have consumed BI Report through WSDL, I have checked in SOAP UI there is a method to create BI Report through WSDL.
How can i create BI Report through WSDL?.Kindly help me
Regards Suba
I have consumed BI Report through WSDL, I have checked in SOAP UI there is a method to create BI Report through WSDL.
How can i create BI Report through WSDL?.Kindly help me
Regards Suba
To create a BIPublisher report, you need a report template, and a datamodel. You can either place the template on the BIP server, and pass templateFileName
in the createReport
method. Or if you want to send the template in SOAP, you will have to Base64 encode it and send that data in templateData
.
You will have to provide folderAbsolutePathURL
, that will the path where the report will be saved. And dataModelURL
, pointing to the datamodel for this report. The datamodel has to be created manually on the server.
The other parameters are optional. Its all documented here.