↧
Re: Run custom (SDK) applications from my local machine
To add to Rajarsh's comments, I write a lot of utility programs that have no GUI - web or otherwise - using the Java SDK. I compile them into .jar files and run them using "java -jar". I've never had...
View ArticleRe: Java code to download list of unused reports
Actually, the audit database will only give you information about what has been used - it does not contain any records for reports that haven't been used. So you'll have to use a combination of data...
View ArticleGetting the data format through the SDK
Is there a way to get the display format for a Measure in BO 4.1 using the API? I see methods to get the datatype, access level, LOV, etc. How do I get the display format? For ex, if I set the format...
View ArticleRe: Java code to download list of unused reports
Thanks Dell for your helpful comment!!!
View ArticleRe: Run custom (SDK) applications from my local machine
Dell, If you do that on your local machine instead of the server, that is precisely what I'm trying to do. But the programs fail to compile with "package X does not exist" and I am compiling with the...
View ArticleBI 4.1
Hi Guys,I am trying to connect to the BI Serve from a grails app and came across a very good source : Getting started with BusinessObjects Java SDK However, when I run my app I get an error because I...
View ArticleRe: Run custom (SDK) applications from my local machine
Most, if not all of the SDK is installed as part of the server install - the BO system uses it. What I usually do is develop in Eclipse and make sure that I have all of the library .jars that I need...
View ArticleRe: Run custom (SDK) applications from my local machine
Thank you for the prompt response. But I'm confused as to where I should be looking for these libraries. I am trying to compile these on my local machine, but you mention that the SDK is part of the...
View ArticleRe: Run custom (SDK) applications from my local machine
You can't compile the libraries. So you have two options: 1. Copy the files from the server to your dev machine. 2. Install the SDK on the dev machine using the Client Tools install. I have done #2...
View ArticleRe: Where is BusinessObjects Enterprise Java SDK jars located(BO XI3.1)?
I am getting a ClassNotFoundError for com.businessobjects.sdk.aspect.LoggingContextAspect I did go over the above list and did not see this class file in any of the jars. Does anyone know which jar...
View ArticleRe: BI 4.1
Hi Kishore, In BO 4.1, the wilog.jar is present at the below location:C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for Enterprise XI...
View ArticleRe: BI 4.1
Hi Rajarash,Thanks for the information. I am good now.Had another question regarding BI Authenetication. We plan to integrate the BI solution within a web app which would be authenticated using a third...
View ArticleBI4.1 SP3.2 sdk-can't get the data provider of a webi report based on excel
Hello, - I create a webi report based on an Excel source- And I write a java sdk trying to read the data provider of the above webi report ReportEngines repEngines =...
View ArticleHow to update or delete a context using Semantic Layer Java SDK 4.1
Hello, I am working in a scenario where I need to delete a context and joins using java code. I could see a API for creation of joins and context using java SDK 4.1 SP 4. Thanks in advance
View ArticleRe: WebIProcessingServer: open Connections
Hi Noah, To clear up the session and any opendocument, you would need to close the document and release the report engine.Check for below in your...
View ArticleRe: How to update or delete a context using Semantic Layer Java SDK 4.1
Hi Vipul, Refer to the guides avaiable for SL SDK at http://help.sap.com Samples are self-documented in this release. Find descriptions and explanations of how samples work in the sample code files....
View ArticleRe: BI 4.1
Yes, can be done. Need to enable trusted authentication for that. You then would need to only paas the usernames to BO(provided the user exists in BO repository) and all the users would share a common...
View ArticleRe: BI4.1 SP3.2 sdk-can't get the data provider of a webi report based on excel
Hi Saints, If your webi is based on an Excel file, then your webi is based on PersonalDataProvider.You would need to cast the DataProvider object as a PersonalDataProvider object and would be able to...
View ArticleRe: BI4.1 SP3.2 sdk-can't get the data provider of a webi report based on excel
Thanks Prithvi for your information.But it doesn't work, as it doesn't have getPersonalDataProviders().It means I can't retrieve the DataProviders information, also its children DataProvider.I can't...
View Article