on 2024 Aug 30 1:44 PM
Hi,
I have to export the metadata of BO into an excel file. I read that we can use SAP BO SDK to export the metadata using java or VBA (BusinessObjects SDK for Microsoft Office).
I need details of how to do this. What are the prerequisites and other things to do this. I am unable to find much details regarding this.
I am more interested in doing this using VBA and exporting the metadata directly into excel file. Any code example would also be helpful.
Request clarification before answering.
Use BI RESTful API to retrieve the metadata.
You can call RESTful from your VBA or Java code.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Read the help guide for using the BI RESTful SDK
https://help.sap.com/doc/2534ba1cbc6f433595e8582045503bcb/4.3.4/en-US/sbo43sp2_webi_restful_web_serv...
to call RESTfull from VBA. If you search the internet you will find many examples
here is one of them
Option Explicit Sub Test_LateBinding() Dim objRequest As Object Dim strUrl As String Dim blnAsync As Boolean Dim strResponse As String Set objRequest = CreateObject("MSXML2.XMLHTTP") strUrl = "https://<server>:<port>/<1>" blnAsync = True With objRequest .Open "GET", strUrl, blnAsync .SetRequestHeader "Content-Type", "application/json" .Send 'spin wheels whilst waiting for response While objRequest.readyState <> 4 DoEvents Wend strResponse = .ResponseText End With Debug.Print strResponse End Sub
| User | Count |
|---|---|
| 7 | |
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.