Oracle Transactional Business Intelligence

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

BI publisher API uploadReportObject completed with error

112
Views
1
Comments

Content

I would like to upload BIP directory object by using BI pub APIs, the directory contains RP and DM.
Tried out this operation with appropriate parameters;
reportObjectAbsolutePathURL
objectType : xdrz (this means the object type is Directory)
objectZippedData : zipped and encoded with base64 object data, and I passed the response of downloadReportObject API.
And I am trying to invoke this api by Python script.

As a result, uploadReportObject API completed with error. The error massage
"PublicReportServiceImpl::executeUploadReport Failure: due to Report Name contains special characters for report"
was returned.

On the other hand, when I invoke this api with exactly same parameters from SOAP client tools (SOAP UI e.g.), in that case api was completed successfully and the directory object was found BIP catalog appropriately.

Does anyone help us determining the cause of API error?

Thanks,

Version

BIP 11.1.9 bundled with ERP Cloud

Tagged:

Comments

  • shun nakamura
    shun nakamura Rank 2 - Community Beginner

    Resolved myself.

    To upload object by Directory, pass the reportObjectAbsolutePathURL without "/"  on end of URL

    OK: Custom/XXGL/01
    NG: Custom/XXGL/01/

    I hope this will help.