top of page

Tags

Archive

Deploy BIP Reports using Web-service -ERP Cloud

In this Quick Post , I will outline the steps to perform the BIP reports deployment using web service . This will be extremely helpful , if you want to automate the deployments using CI/CD pipelines.


WSDL:

https://POD/xmlpserver/services/v2/CatalogService?wsdl


Request Payload : for downloading the BIP report from source instance



<x:Envelope
    xmlns:x="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:v="http://xmlns.oracle.com/oxp/service/v2">
    <x:Header/>
    <x:Body>
        <v:downloadObject>
            <v:reportAbsolutePath>Provide your report path </v:reportAbsolutePath>
            <v:userID>username</v:userID>
            <v:password>password</v:password>
        </v:downloadObject>
    </x:Body>
</x:Envelope>


Response Payload:

This will contain the Encoded base64 data .


Request Payload for Upload Object :

The above returned encoded data need to be passed as input to the below along with report absolute path


<x:Envelope
    xmlns:x="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:v="http://xmlns.oracle.com/oxp/service/v2">
    <x:Header/>
    <x:Body>
        <v:uploadObject>
            <v:reportObjectAbsolutePathURL>?</v:reportObjectAbsolutePathURL>
            <v:objectType>xdoz</v:objectType>
            <v:objectZippedData>[base64Binary?]</v:objectZippedData>
            <v:userID>?</v:userID>
            <v:password>?</v:password>
        </v:uploadObject>
    </x:Body>
</x:Envelope>

Hope this Helps ! Happy Learning.

475 views0 comments

Recent Posts

See All

When transactions are entered, Dynamic Insertion in Oracle Fusion General Ledger (GL) allows an organisation to automatically insert extra segments or values in the GL chart of accounts. This feature

Oracle Fusion Segment Security The General Ledger (GL) feature enables an organisation to restrict access to data in the GL depending on certain parts of the GL chart of accounts. A segment is a subse

Oracle Fusion General Ledger (GL) Cross-Validation Rules are used to assure the integrity and accuracy of data entered into the GL module. They are used to ensure that data submitted in the GL is cons

Other Posts you may Interested 

bottom of page