Questions tagged [business-objects-sdk]

A software development kit (SDK) to access users and groups, folders and objects, and services provided by BusinessObjects Enterprise. Includes Java, .Net, COM, SOAP, and REST versions.

Documentation:

112 questions
0
votes
1 answer

where to get java SDK for BusinessObjects

I want to import the packages, for example: import java.io.PrintWriter; import java.text.DateFormat; import java.util.Date; these packages have already existed so it doesn't pop up any error messages. When I want to import others packages: import…
0
votes
1 answer

Re-trigger scheduled instances with SAP BO API?

I want to re-trigger all the failed schedules using a java jar file on CMS. Just for testing I wrote this below program which I suppose would re-trigger a certain schedule, which completed successfully. Please help me find where did I go wrong since…
0
votes
2 answers

Unable to define custom headers using HttpHeaders on Angular 8

I am trying to run a GET request to SAP Business Objects which requires some custom headers. I followed Angular documentation to define the headers using HttpHeaders class but it seems like the custom headers (X-...) are not being recognized. Here…
0
votes
1 answer

Get folder where Webi report is stored in FRS

I have a report on Webi server. I need a code snippet to show the folder where the report is located.
user727272
  • 475
  • 2
  • 9
  • 20
0
votes
1 answer

Retrieving queries from webI reports in Business Objects

Is it possible to retrieve the SQL queries from a report in business objects using the SDK. Any tutorials or code would be useful. regards, nithen
user727272
  • 475
  • 2
  • 9
  • 20
0
votes
1 answer

Business Objects History

Is it possible to add an instance name to the history of Business Objects? I want to see the following columns: Time, Instance Name, Run by, Parameters, Format, Status, Reschedule, Selected
Jeremy F.
  • 1,778
  • 11
  • 51
  • 86
0
votes
0 answers

SAP BO RESTful API returns binary

Summary: I have an issue with consuming SAP BO RESTful API. Instead of an expected HTTP response, I'm getting a binary output. Details: I have two SAP BO servers. One of them works as expected. The other one does not. When I run "curl" on the…
0
votes
0 answers

SAP Business Objects 4.2 Integration

I need help on how to migrate our java codes with regards to connecting to business objects. It was recently migrated from version 3 to 4.2. We are using java 8 running on WAS 9. I have tried updating the jars based from the forums that I have read…
sheeilala
  • 11
  • 3
0
votes
1 answer

How to set the Provider for CrystalDecisions.Enterprise.Desktop.Report?

For our reporting environment, we allow users to run reports "online" (the code for this is based on CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocument) or "offline" which is to schedule them on the Business Objects server directly.…
0
votes
0 answers

BI Platform REST API: add to favorite folder?

I'm redeveloping a Crystal Reports UI using the Business Intelligence Platform REST API (4.2 SP5), and I'm finding some gaps in the API. The one I'm stumbling over now is how to add a report to a user's favorites folder. I can find the user's…
john paz
  • 318
  • 3
  • 13
0
votes
1 answer

.NET SDK for BusinessObjects 3.x

I'm looking at code which uses the CrystalEnterpriseLib library. I've been wanting to look at the SDK for this. However the archive of SAP is ....., well, all the links are dead: https://archive.sap.com/documents/docs/DOC-27446 And they only want to…
Sjors
  • 83
  • 1
  • 7
0
votes
1 answer

Report Parameter (OWNERID) cannot be changed using restful webservices

While trying to update a document properties using the restful API I cannot change the ownerid. This is the result of my get request: document 2018-03-29T10:56:51.939Z
0
votes
1 answer

BiarEnginer.jar/Command Line Import Documentation/Usage

Anyone know where the documentation is for the properites file? I am trying the following exportQuery: select * form ci_infoobjects where si_kind like 'FavoritesFolder' and si_name like 't%' It is correctly grabbing the users but, is not biaring any…
XanderLynn
  • 883
  • 3
  • 16
  • 29
0
votes
1 answer

How to update database configuration for Crystal Report with BusinessObjects Java SDK

I'm trying to update database configuration of a report using BO 4.2 SDK. Here is what I have tried. query=Select SI_NAME,SI_ID From CI_INFOOBJECTS Where SI_PROGID = 'CrystalEnterprise.Report' And SI_NAME=…
0
votes
1 answer

Retrive child objects using sdk in sap bo?

I am trying to write a code to change report ownership. I need to retrieve all the child objects of a parent object. How to do it using the java sdk or query?