Quantcast
Channel: SCN : Popular Discussions - Java SDK Application Development
Viewing all 1701 articles
Browse latest View live

Jar Files Needed for BI SDK Development

$
0
0

Hello,

 

I'm working to migrate our Java Web application from Crystal Report Server 2008 to SAP Crystal Server 2013.

 

I currently have a trail version of SAP CS 2013 SP1.  It's been installed and I'm having an issue finding all the jar files

that are referenced in the Dev Docs that need to be deployed with our Web application in the CS installations.

ie.  java\lib and java\external folders

 

The Dev docs mention running the following to obtain the SDK jar files:

SAP BusinessObjects Business Intelligence Platform Client Tools 4.0 installer.

 

Where do I obtain the above Client Tools installer ?

 

Thanks,

Scott


How to link a document in BI inbox with the source document ?

$
0
0

Hi all

 

On my platform I have multiple schedules on Webi & Deski documents, the destination is set to multiple BI Inboxes. This is working fine. But I am searching a way to know / to link the document generated in BI inboxes to the original document that have generated the document... I don't seems there is a link present in the document present in the BI Inbox (no reference to the parent doc when I check that on the iinfoobject via AdminTools).

 

Do you know if there is a way to achieve that ?

 

THANKS for your help !

Semantic Layer Java SDK in local machine without BO Client

$
0
0

Hi, 

 

I am using Bo4.1 sp3.I am working on semantic layer java Sdk in Eclipse IDE .

Whether can we work semantic layer Java sdk using Eclipse in local machine without BO Client? 

 

I tried in eclipse without Bo client,I got the below error.

 

Exception in thread "main" com.sap.tools.commons.exception.NestedException: Interface requested not found : csLIB

at com.sap.tools.commons.exception.NestedException.create(Unknown Source)

at com.businessobjects.mds.services.parser.decoder.DataFoundationSQLDecoder.getPRM(DataFoundationSQLDecoder.java:81)

at com.businessobjects.mds.services.parser.decoder.DataFoundationSQLDecoder.<init>(DataFoundationSQLDecoder.java:96)

at com.businessobjects.mds.services.parser.decoder.UniverseSQLDecoder.<init>(UniverseSQLDecoder.java:40)

at com.businessobjects.mds.services.parser.EncodeDecodeHelper.decodeExpression(EncodeDecodeHelper.java:301)

at com.businessobjects.mds.services.helpers.BindingHelper.decodeExpression(BindingHelper.java:250)

 

Can anyone help.

 

Regards,

Kavitha S

How to set connect to the Bo server

$
0
0

I used the BI 4.0 , I just begin learn to it. I coding in java, I follow the sample to export the RPT from BI, but I do not know the java how to connect the BI server. Please help.

thanks.

 

--Alex

BO SDK code for Universe

$
0
0

Hi Experts,

 

I am trying to create a JSP page which will be used  to change universe object name without using IDT using BO SDK.

 

We are using Bo 4.0 SP6 and we generate the Universe with class name same as table name and columns name as objects names.I need a script which will modify these object name in the Universe with proper name.I have some information that we can use SL SDK to achieve the same.

 

Could you please guide me with some start points on SL SDK.I have some  prior experience in SDK programming but most of them are to extract information from CMS repo.

Thanks in advance for your help and guidance.

 

Regards

Kishore

How to link a document in BI inbox with the source document ?

$
0
0

Hi all

 

On my platform I have multiple schedules on Webi & Deski documents, the destination is set to multiple BI Inboxes. This is working fine. But I am searching a way to know / to link the document generated in BI inboxes to the original document that have generated the document... I don't seems there is a link present in the document present in the BI Inbox (no reference to the parent doc when I check that on the iinfoobject via AdminTools).

 

Do you know if there is a way to achieve that ?

 

THANKS for your help !

[BOXI 40] - ReportEngineType.WI_REPORT_ENGINE error

$
0
0

Hi All,

    I'm using this simple class below to open a WebIntelligence Documet :

 

package Burst;

 

import com.businessobjects.rebean.wi.DocumentInstance;

import com.businessobjects.rebean.wi.ReportDictionary;

import com.businessobjects.rebean.wi.ReportEngine;

import com.businessobjects.rebean.wi.ReportEngines;

import com.businessobjects.rebean.wi.ReportEngines.ReportEngineType;

import com.businessobjects.rebean.wi.VariableExpression;

import com.crystaldecisions.sdk.exception.SDKException;

import com.crystaldecisions.sdk.framework.CrystalEnterprise;

import com.crystaldecisions.sdk.framework.IEnterpriseSession;

import com.crystaldecisions.sdk.framework.ISessionMgr;

import com.crystaldecisions.sdk.occa.infostore.IInfoObject;

import com.crystaldecisions.sdk.occa.infostore.IInfoObjects;

import com.crystaldecisions.sdk.occa.infostore.IInfoStore;

import com.crystaldecisions.sdk.occa.security.ILogonTokenMgr;

 

 

 

public class Schedule {

   public static void main(String[] args) throws SDKException {

 

         System.out.println("Connecting...");

         ISessionMgr mySessionMgr = CrystalEnterprise.getSessionMgr();

 

         IEnterpriseSession oEnterpriseSession = mySessionMgr.logon("XXX", "YYYY", "WIN-ZZZZZ:6400", "secEnterprise");

 

         IInfoStore oInfoStore = (IInfoStore) oEnterpriseSession.getService("InfoStore");

         ReportEngines oReportEngines = (ReportEngines) oEnterpriseSession.getService("ReportEngines");

         ReportEngine oReportEngine = oReportEngines.getService(ReportEngineType.WI_REPORT_ENGINE);

         System.out.println("Finished");

   }

 

}

 

 

But I receive this error on  :

 

Connecting...

Exception in thread "main" com.businessobjects.rebean.wi.CommunicationException: Unable to instantiate ReportEngine.

    at com.businessobjects.rebean.wi.ReportEngines.createReportEngine(ReportEngines.java:290)

    at com.businessobjects.rebean.wi.ReportEngines.getService(ReportEngines.java:249)

    at Burst.Schedule.main(Schedule.java:40)

Caused by: com.businessobjects.sdk.core.CoreException: findBundleConfigurator problem with URL: jar:file:/E:/Program%20Files%20(x86)/SAP%20BusinessObjects/SAP%20BusinessObjects%20Enterprise%20XI%204.0/java/lib/sdk.core.server.common.jar!/META-INF/MANIFEST.MF

    at com.businessobjects.sdk.core.internal.dynenv.impl.ManifestDiscoveryManager.findBundleConfigurator(ManifestDiscoveryManager.java:172)

    at com.businessobjects.sdk.core.internal.dynenv.impl.ManifestDiscoveryManager.startDiscovery(ManifestDiscoveryManager.java:125)

    at com.businessobjects.sdk.core.internal.dynenv.impl.ManifestDiscoveryManager.<init>(ManifestDiscoveryManager.java:99)

    at com.businessobjects.sdk.core.internal.dynenv.impl.ManifestDiscoveryManager.<init>(ManifestDiscoveryManager.java:69)

    at com.businessobjects.sdk.core.internal.dynenv.impl.ManifestDiscoveryManager.<init>(ManifestDiscoveryManager.java:58)

    at com.businessobjects.sdk.core.Core.init(Core.java:118)

    at com.businessobjects.sdk.core.Core.checkInit(Core.java:156)

    at com.businessobjects.sdk.core.Core.create(Core.java:456)

    at com.businessobjects.rebean.wi.internal.ReportEngineFactory.makeOCCA(ReportEngineFactory.java:76)

    at com.businessobjects.rebean.wi.ReportEngines.createReportEngine(ReportEngines.java:281)

    ... 2 more

Caused by: com.businessobjects.sdk.core.CoreException: Configurator problem with com.businessobjects.sdk.core.server.internal.config.CommonCommandsConfigurator:

    at com.businessobjects.sdk.core.internal.dynenv.impl.ManifestDiscoveryManager.loadConfigurator(ManifestDiscoveryManager.java:278)

    at com.businessobjects.sdk.core.internal.dynenv.impl.ManifestDiscoveryManager.readConfigurator(ManifestDiscoveryManager.java:256)

    at com.businessobjects.sdk.core.internal.dynenv.impl.ManifestDiscoveryManager.readBundle(ManifestDiscoveryManager.java:210)

    at com.businessobjects.sdk.core.internal.dynenv.impl.ManifestDiscoveryManager.findBundleConfigurator(ManifestDiscoveryManager.java:143)

    ... 11 more

Caused by: java.lang.NoClassDefFoundError: com/google/inject/Module

    at java.lang.Class.getDeclaredConstructors0(Native Method)

    at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)

    at java.lang.Class.getConstructor0(Unknown Source)

    at java.lang.Class.newInstance0(Unknown Source)

    at java.lang.Class.newInstance(Unknown Source)

    at com.businessobjects.sdk.core.internal.dynenv.impl.ManifestDiscoveryManager.loadConfigurator(ManifestDiscoveryManager.java:274)

    ... 14 more

Caused by: java.lang.ClassNotFoundException: com.google.inject.Module

    at java.net.URLClassLoader$1.run(Unknown Source)

    at java.security.AccessController.doPrivileged(Native Method)

    at java.net.URLClassLoader.findClass(Unknown Source)

    at java.lang.ClassLoader.loadClass(Unknown Source)

    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)

    at java.lang.ClassLoader.loadClass(Unknown Source)

    ... 20 more

 

 

The problem is related to ReportEngine oReportEngine = oReportEngines.getService(ReportEngineType.WI_REPORT_ENGINE); , because this

line code the class is compiled without error....

 

 

 

P.S:

"There is any general SDK example regarding BOXI4 ? Where I can find It ?"

 

Any Help,

Best Regards,

ZAV

Semantic Layer Java SDK in local machine without BO Client

$
0
0

Hi, 

 

I am using Bo4.1 sp3.I am working on semantic layer java Sdk in Eclipse IDE .

Whether can we work semantic layer Java sdk using Eclipse in local machine without BO Client? 

 

I tried in eclipse without Bo client,I got the below error.

 

Exception in thread "main" com.sap.tools.commons.exception.NestedException: Interface requested not found : csLIB

at com.sap.tools.commons.exception.NestedException.create(Unknown Source)

at com.businessobjects.mds.services.parser.decoder.DataFoundationSQLDecoder.getPRM(DataFoundationSQLDecoder.java:81)

at com.businessobjects.mds.services.parser.decoder.DataFoundationSQLDecoder.<init>(DataFoundationSQLDecoder.java:96)

at com.businessobjects.mds.services.parser.decoder.UniverseSQLDecoder.<init>(UniverseSQLDecoder.java:40)

at com.businessobjects.mds.services.parser.EncodeDecodeHelper.decodeExpression(EncodeDecodeHelper.java:301)

at com.businessobjects.mds.services.helpers.BindingHelper.decodeExpression(BindingHelper.java:250)

 

Can anyone help.

 

Regards,

Kavitha S


explorer SDK

$
0
0

Is there SDK available for Explorer SDK  in BI 4.0 and above?

Test Connections

$
0
0

Hi Team ,

 

 

Environment : BI 4.1 SP6 Patch2

OS : Windows 2012 R2

 

 

In our environment , we often see connection related issues either database issues / BOBJ connection drivers issues.

 

 

We are using 12 different databases for reporting (SQL server , Oracle and SAP BW ) in BOBJ .we created a WebI report to test whether all connections are working (refresh manually / schedule ) .

 

If there is any issue , we'll further refresh all connections one by one to find which connection has issue .

 

Can we automate the process of connection testing? ( not using report)

 

Idea here is , we need a batch file / .exe file which will execute on periodic basis to test a list of specified connections and captures Test connection description message either success message or failure message description for each specified connection .

 

which then should be sent BOBJ admins to take immediate action .

 

Origin of this idea is How to Test All Connection using BusinessObjects SDK

 

Can we write SDK to achieve this requirement ?

 

Thank you .

Regarding Crystal Reports 2013 SP1, Server state changed Running to Starting

$
0
0

We are in the process of migrating existing Crystal Reports from CR Crystal Reports XI to CR 2013 SP1. But we facing issue on production environment, CR server getting change the state from Running to Starting,

I am unable to find out the root cause, did not get any help from logs,

Anyone can help on this issue.

[BO XI 4.1, JAVA] Migration from BO 3.1 to BO 4.1

$
0
0

Hi all,

 

I work on an application Java which connects to BO 3.1 and posts all the webis of the reference table, extracts the requests, the universes and the objects of a report Webi I want to migrate to the version 4.1 of BO, I have to use the jars of the version 4.1 but I have the following exception :

 

Exception in thread "Thread-4" java.lang.NoSuchMethodError: com.rsa.jsafe.CryptoJ.isFIPS140Compliant()Z

  at com.businessobjects.bcm.internal.BcmRsaLib.initialize(BcmRsaLib.java:214)

  at com.businessobjects.bcm.internal.BcmRsaLib.<clinit>(BcmRsaLib.java:289)

  at com.businessobjects.bcm.BCM.<clinit>(BCM.java:1144)

  at com.crystaldecisions.enterprise.ocaframework.BCMInitializer.run(BCMInitializer.java:29)

  at java.lang.Thread.run(Thread.java:619)

Exception in thread "Thread-3" java.lang.NoClassDefFoundError: Could not initialize class com.businessobjects.bcm.BCM

  at com.crystaldecisions.sdk.occa.security.internal.ConfidentialChannelService.establishConfidentialChannel(ConfidentialChannelService.java:175)

  at com.crystaldecisions.sdk.occa.security.internal.ConfidentialChannelService.createConfidentialChannel(ConfidentialChannelService.java:145)

  at com.crystaldecisions.sdk.occa.security.internal.CCMap.locateCCItem(CCMap.java:63)

  at com.crystaldecisions.sdk.occa.security.internal.LogonService.doUserLogon(LogonService.java:845)

  at com.crystaldecisions.sdk.occa.security.internal.LogonService.doUserLogon(LogonService.java:805)

  at com.crystaldecisions.sdk.occa.security.internal.LogonService.userLogon(LogonService.java:210)

  at com.crystaldecisions.sdk.occa.security.internal.SecurityMgr.userLogon(SecurityMgr.java:166)

  at com.crystaldecisions.sdk.framework.internal.SessionMgr.logon_aroundBody0(SessionMgr.java:454)

  at com.crystaldecisions.sdk.framework.internal.SessionMgr.logon_aroundBody1$advice(SessionMgr.java:512)

  at com.crystaldecisions.sdk.framework.internal.SessionMgr.logon(SessionMgr.java:1)

  at com.sqli.Utils.Connexion.connexion(Connexion.java:100)

  at com.sqli.UI.ConnexionBOGUI$5.run(ConnexionBOGUI.java:295)

  at java.lang.Thread.run(Thread.java:619)

 

 

There are the jars I use:

 

activation-1.1.jar

activation.jar

antlr.jar

asm-attrs.jar

asm.jar

xpp3.jar

xpp3-1.1.3_8.jar

xpp3_xpath.jar

xpp3_min.jar

xmlsec-1.4.6.jar

xml-apis.jar

xercesImpl.jar

XcelsiusServerSDK.jar

XcelsiusQuery.jar

XcelsiusApp.jar

xalan.jar

webi_proxies.jar

webreporting-jsf.jar

webreporting.jar

wilog.jar

wss4j-1.6.4.jar

wstk_java.jar

VISILUMS_plugins.jar

vsj-standard-3.3.jar

umpjni.jar

SetupWizard_en.jar

SharedObjects.jar

SIA_en.jar

sl_cdp_plugin_en.jar

sl_cdp_plugin.jar

SL_plugins.jar

slproxybridge.jar

SO.webi.adapter.jar

sslj.jar

stax-api-1.0.1.jar

SWFInjection_lang.en.jar

TraceLog.jar

ugv_services.jar

sdk.core.jar

sdk.core.server.common.jar

sdk.core.server.corba.jar

sdk.core.server.jar

sdk.core.session.cms.jar

sdk.core.session.jar

secOraApps.jar

secPSE1.jar

secpsenterprise.jar

secSAPR3.jar

secSiebel7.jar

serialization.jar

repo_proxy_jni.jar

repo_proxy.jar

repoaccess.jar

RepositoryProxyInterface.jar

rom.jar

rpoifs-14.1.jar

sap.com~tc~sec~csi.jar

sapjco3.jar

oda_en.jar

oda-api-services.jar

oda-bicsprovider_en.jar

oda-bicsprovider.jar

oda-bpc.jar

oda-core_en.jar

oda-core.jar

oda-ea.jar

oda-essbase_en.jar

oda-essbase.jar

oda-oracle.jar

oda-pcm.jar

oda-ssas_en.jar

oda-ssas.jar

oda-teradata.jar

oda-tom.jar

oda-xmla-core_en.jar

oda-xmla-core.jar

oda.jar

opensaml-2.5.1-1.jar

org.eclipse.emf.common_2.4.0.v200902171115.jar

org.eclipse.emf.ecore_2.4.2.v200902171115.jar

org.eclipse.emf.ecore.xmi_2.4.1.v200902171115.jar

org.eclipse.equinox.common_3.4.0.v20080421-2006.jar

org.eclipse.equinox.registry_3.4.0.v20080516-0950.jar

org.eclipse.osgi_3.4.3.R34x_v20081215-1030.jar

pdfcollation.jar

pfjgraphics_driver.jar

platformsearchplugins.jar

platformsearchsdk.jar

platformsearchsdkcommon.jar

poi-3.1-FINAL.jar

postprocessing_oca2service.jar

principalFileImport.jar

probe-CR.jar

probe-sdk_en.jar

probe-sdk.jar

probe-WebI.jar

protobuf.jar

pub_common_en.jar

pub_common.jar

pub_document_en.jar

pub_document.jar

pub_processing.jar

publishing_oca2service.jar

pullparser.jar

QueryBuilder.jar

rampart-core-1.6.2.jar

rampart-policy-1.6.2.jar

rampart-trust-1.6.2.jar

ras21proc.jar

rascore.jar

rcpcommon.jar

rcpinterface.jar

RCPLibs.jar

RcpUI.jar

rebean.common.jar

rebean.jar

rebean.wi.adapter.jar

rebean.wi.jar

rebean.wi.model.jar

rebean.wi.server.commands.jar

rebean.wi.server.jar

rebean.wi.server.requests.jar

lcm_en.jar

libsw_en.jar

libsw.jar

log4j-1.2.12.jar

log4j.jar

logging.jar

mail.jar

mda.clients.common.jar

mda.clients.platform.boe.client_plugin.jar

monitoring-plugins_en.jar

monitoring-plugins.jar

monitoring-sdk_en.jar

monitoring-sdk.jar

junit-4.4.jar

keycodeDecoder.jar

dom4j-1.6.1.jar

ds_excel_idl.jar

ds_excel.jar

dsl_desktop_plugin.jar

dsl_engine_lang.en.jar

dsl_sdk_server.jar

dsws-federator.jar

ehcache-1.1.jar

fdb-sql-parser-1.6.6-SNAPSHOT.jar

GenWSDLImports.jar

guice-1.0.jar

hibernate-commons-annotations-4.0.1.Final.jar

hibernate-core-4.0.1.Final.jar

hibernate-jpa-2.0-api-1.0.1.Final.jar

icu4j-3_8_1.jar

icu4j.jar

InitSmartServers_en.jar

javassist-3.15.0-GA.jar

JavaSwfTool.jar

jboss-logging-3.1.0.GA.jar

jboss-transaction-api_1.1_spec-1.0.0.Final.jar

jcsi_license.jar

JDBInterface.jar

jsafe.jar

com.azalea.ufl.barcode.1.0.jar

com.businessobjects.datafederator.sourcedefiner.source.jar

commons_driver_en.jar

commons-beanutils.jar

commons-cli-1.2.jar

commons-codec-1.3.jar

commons-codec-1.4.jar

commons-collections-3.1.jar

commons-collections-3.2.jar

commons-configuration-1.2.jar

commons-digester-1.6.jar

commons-fileupload-1.3.1.jar

commons-httpclient-3.0.1.jar

commons-io-1.1.jar

commons-jxpath-1.2.jar

commons-lang-2.1.jar

commons-lang-2.3.jar

commons-logging-1.0.4.jar

commons-logging.jar

commons-math-1.1.jar

crdataprovider.jar

CRDBJavabeansServer.jar

CRDBJavaServer.jar

CRDBJavaServerCommon.jar

CRDBJDBCServer.jar

CRDBWicServer.jar

CRDBXMLServer.jar

credential.jar

crlov.jar

crlovmanifest.jar

CrystalEnterpriseRepository.jar

CrystalEnterpriseRepositoryService.jar

cs_server.jar

customdsidl.jar

cvom_chart_lib_en.jar

cvom_en.jar

cvom_ui_helpers.jar

asn1.jar

axiom-api-1.2.5.jar

axiom-impl-1.2.5.jar

axis2-kernel-1.3.jar

backport-util-concurrent-2.2.jar

c3p0-0.9.0.jar

cdsframework_common.jar

cdsframework.jar

cdsframeworkutils.jar

cdsuiframework.jar

cdztools_jshell.jar

certj.jar

cesearch.jar

cglib-2.1.3.jar

rebean.fc.jar

cecore.jar

celib.jar

xcelsius.jar

flash.jar

biplugins.jar

boconfig.jar

cdz_cluster_mgmt_types_idl.jar

cdzidl.jar

ceaspect.jar

sforce-api.jar

SIA_fr.jar

sit.jar

sqljdbc.jar

stempel-1.0.jar

struts.jar

swt.jar

tm-extractors-0.4.jar

u211java.jar

URIUtil.jar

woden-1.0-incubating-M7b.jar

wsdl4j-1.6.2.jar

wsdl4j.jar

wss4j-1.5.3.jar

wstx-asl-3.2.1.jar

xbean_xpath.jar

xbean-2.2.0.jar

xbean.jar

XcelsiusSLPlugins.jar

xmlmerger.jar

xmlpublic.jar

XmlSchema-1.3.2.jar

xmlsec-1.4.0.jar

wi_srvadmin.jar

BOLMT.jar

aspectjrt.jar

jtools.jar

biarengine.jar

cesession.jar

corbaidl.jar

ebus405.jar

cereports.jar

ceplugins_core.jar

ceplugins_cr.jar

cesdk.jar

inproc_container.jar

ie_proxies.jar

IEPlugin_idl.jar

i18n4j.jar

GenericContainer_idl.jar

GenericContainer_proxy.jar

dsl_sdk_commands.jar

dsl_sdk_requests.jar

dsl_sdk_services.jar

cvom_chart_lib.jar

cvom.jar

CTPlugin_idl.jar

derby.jar

AdminTools_en.jar

AdminTools.jar

apache-mime4j-core-0.7.2.jar

axiom-api-1.2.13.jar

axiom-dom-1.2.13.jar

axis2-kernel-1.6.2.jar

axis2-transport-http-1.6.2.jar

axis2-transport-local-1.6.2.jar

axiom-dom-1.2.5.jar

axis.jar

axis2-adb-1.3.jar

axis2-adb-codegen-1.3.jar

axis2-ant-plugin-1.3.jar

axis2-clustering-1.3.jar

axis2-codegen-1.3.jar

axis2-fastinfoset-1.3.jar

axis2-java2wsdl-1.3.jar

axis2-jaxbri-1.3.jar

axis2-jaxws-1.3.jar

axis2-jaxws-api-1.3.jar

axis2-jibx-1.3.jar

axis2-json-1.3.jar

axis2-jws-api-1.3.jar

axis2-metadata-1.3.jar

axis2-mtompolicy-1.3.jar

axis2-saaj-1.3.jar

axis2-saaj-api-1.3.jar

axis2-spring-1.3.jar

axis2-xmlbeans-1.3.jar

bcprov-jdk15-132.jar

BIExtensionPoint.jar

biws-langpack-resource_en.jar

biws-langpack-resource_fr.jar

boeserver.jar

businessgraphics.jar

cafinstall.jar

cdz_ext_lifecycle.jar

cdz_ext.jar

cdzextidl.jar

ceplugins_client.jar

ceutils.jar

cfoundation.jar

classes12.jar

clientplugins.jar

com.businessobjects.datafederator.nativeconnection.jar

com.businessobjects.datafederator.sourcedefiner.jar

com.businessobjects.sdk.plugin.desktop.ao.jar

com.sap.js.passport.api.jar

commons_driver.jar

commons-discovery.jar

commons-httpclient-3.0.jar

comparisonengine.jar

Concurrent.jar

crdataprovider_en.jar

crdataprovider_fr.jar

CRDBSForceServer.jar

CRDBWicExternal.jar

CrystalCommon2.jar

CrystalFormulas.jar

CrystalReportingCommon.jar

CrystalReportsSDK.jar

cvom_chart_lib_fr.jar

cvom_fr.jar

data_en.jar

data_fr.jar

data-native.jar

data.jar

dm.jar

dqw.cpb.boe.lcm.jar

dsws-bicatalog.jar

dsws-biplatform.jar

dsws-common-util.jar

dsws-common.jar

dsws-managequeryasaservice-provider.jar

dsws-managequeryasaservice.jar

dsws-publish.jar

dsws-queryservice.jar

dsws-reportengine.jar

dsws-session.jar

EnableSIAServers.jar

fc2fcengine.jar

fc2widengine.jar

federation_en.jar

federation_fr.jar

fedmaster.jar

fedslave.jar

fmtlib_bridge.jar

geographic_driver_en.jar

geographic_driver_fr.jar

geographic_driver.jar

geomaps.jar

geronimo-stax-api_1.0_spec-1.0.1.jar

IJobProcessingSubsystem.jar

InitSmartServers_fr.jar

InitSmartServers.jar

InstallEntSdkWrapper.jar

itext-1.4.5.jar

jaxrpc.jar

jdom-beta8.jar

jide-common.jar

jide-dock.jar

JNITools.jar

json.jar

jsr173_1.0_api.jar

jxl.jar

serializedEditor.jar

setupConfiguration.jar

UpdateXMLSampleReports.jar

verifyrights.jar

log4j-1.2.14.jar

lucene-analyzers-2.1.0.jar

lucene-analyzers-2.3.1.jar

lucene-core-2.1.0.jar

lucene-core-2.3.1.jar

lucene-demos-2.1.0.jar

lucene-demos-2.3.1.jar

lucene-highlighter-2.3.1.jar

lucene-snowball-2.1.0.jar

lucene-snowball-2.3.1.jar

lucene-spellchecker-2.1.0.jar

lucene-spellchecker-2.3.1.jar

MetafileRenderer.jar

neethi-3.0.2.jar

olap_api.jar

PDFBox-0.7.2.jar

pluginhelper.jar

poi-2.5.1-final-20040804.jar

poi-contrib-2.5.1-final-20040804.jar

poi-scratchpad-2.5.1-final-20040804.jar

PostMigrator.jar

procAuthUpdate.jar

procPlatformSearch.jar

procPrincipalFileImport.jar

procReplication.jar

procSecurityQueryExport.jar

pub_common_fr.jar

REDynamicRecipients.jar

ReportPrinter.jar

reporttemplate.jar

ReportViewer.jar

resolver.jar

rpoifs.jar

saaj.jar

procJavaAdapter.jar

datafederator_services.jar

ccis.jar

commons-logging-1.1.jar

ConnectionServer.jar

deploy.jar

dsl_engine.jar

encrypt.jar

freessl201.jar

rasapp.jar

adv_ivcdzview.jar

procWebiPublishing.jar

bcm.jar

certjFIPS.jar

cryptojFIPS.jar

ssljFIPS.jar

 

 

Regards

Hajer

WebiPrompt problem: no data to fetch ("your parameter here": no given values)

$
0
0

I am new to SAP Business Objects and am having trouble running a report that has parameters.  Specifically I am trying to execute a Web Intelligence Document that has WebiPrompts.

 

When I execute my program i get the following error:

no data to fetch ("pmTWIA": no given values)


In my code execution I can see that I am passing the xml with the prompts populated AND that when I look at the history for my Web Intelligence document that parameters have been passed.


Please see my java code attachment, debug output, and screen shot for more details


Crystal Reports calling Cascading prompts through UI

$
0
0

I believe the Web Services SDK for Java will allow us to send request to the semantic layer.

In order to access the universe I will need to use a combination of the SAP BusinessObjects Business Intelligence platform 4.0 (semantic layer) SDK and the SAP BusinessObjects Business Intelligence platform 4.0 (BI document access and administration). Can Someone please confirm that I'm folowing right process.

 

http://scn.sap.com/docs/DOC-27465

 

 

Thanks!

BO 4.0 Schedule Webi - Class not found Error

$
0
0

Hello,

 

 

We are using SDK concerning scheduling Webi-Reports to PDF-format.

 

Operating System: Linux

Business Objects 4.0 (SBOP BI Platform 4.0 SP02 Patch 6 )

 

We have developed Java - Program using BO SDK.

We are using ECLIPSE for development.

 

Regarding SDK Libaries we copied all libs from BO 4.0 - system (Unix Directory <businessobjects_root>/java/libe) to client for ECLIPSE.

 

Our program should schedule a Webi - Report to PDF format.

Java Coding is compiled without any errors, all required BO-SDK-Libs are included in source-code.

 

Already previously we were able to schedule a crystal report via Java program.

Unfortunately there are errors concerning scheduling Webi reports.

 

We published java-program to BO-server.

In properties of java-program we inserted name of class.

 

After running the java programm this error appears:

 

-


Exception in thread "main" java.lang.NoClassDefFoundError: com/businessobjects/sdk/plugin/desktop/webi/IWebi

     at CargoClass02.scheduleReport(CargoClass02.java:23)

     at CargoClass02.run(CargoClass02.java:14)

     at com.crystaldecisions.sdk.plugin.desktop.program.internal.ProgramWrapper.main(ProgramWrapper.java:174)

Caused by: java.lang.ClassNotFoundException: com.businessobjects.sdk.plugin.desktop.webi.IWebi

     at java.net.URLClassLoader$1.run(URLClassLoader.java:261)

     at java.security.AccessController.doPrivileged(Native Method)

     at java.net.URLClassLoader.findClass(URLClassLoader.java:249)

     at java.lang.ClassLoader.loadClass(ClassLoader.java:354)

     at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:344)

     at java.lang.ClassLoader.loadClass(ClassLoader.java:299)

     at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:367)

-


 

 

Kind regards,

Fritz Korntner


Run custom (SDK) applications from my local machine

$
0
0

Hello,

 

I was trying to compile a test application using the Java SDK and noticed that most, if not all, of the packages mentioned in the docs exist on my machine. This is probably an extremely simple question, but the closest thing to a direct answer I've found is here, where it says, "Note that the BOE / BI SDK is only supported in web applications, thus there are no Windows samples."

 

Does this mean that any application that uses the BI Platform Java SDK needs to be compiled and run on the server (presumably in JSP's and not a traditional command-line application), not compiled or run on a client machine?

 

Thanks,

 

Pedro G. Acevedo

BO CMC publications parameter update through SDK

$
0
0

HI All,

 

I am working with BO CMC publications setup. after checking with expertise, JAVA SDK can help in modifying the parameter of the publications like back end processing.

 

Please guide me through on how to work with JAVA SDK. a walk through document would be much helpful.

 

 

Thanks

Sasi

Unable to connect to the server: ###.CrystalReports2013ReportApplicationServer.

$
0
0

Hello Everyone,



 

I am migrating reports from Crystal 9 to Crystal 2013 version. I am using Oracle Database. After migrating the reports, I need to test it through a Java application. When I test them some reports work fine while the others give me this error message.

 

(Note: All the migrated reports work fine on my machine) Also checked the server connection and it is running properly.

 

 

 

Servlet Engine Exception

Error:

Cannot open report document. --- Unable to connect to the server: #####.CrystalReports2013ReportApplicationServer.

 

StackTrace:

com.crystaldecisions.sdk.occa.managedreports.ras.internal.ManagedRASException: Cannot open report document. --- Unable to connect to the server: #####.CrystalReports2013ReportApplicationServer.

cause:com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: Unable to connect to the server: #####.CrystalReports2013ReportApplicationServer.---- Error code:-2147467259 Error code name:failed

detail: Unable to connect to the server: #####.CrystalReports2013ReportApplicationServer.

at com.crystaldecisions.sdk.occa.managedreports.ras.internal.RASReportAppFactory.a(Unknown Source)

at com.crystaldecisions.sdk.occa.managedreports.ras.internal.RASReportAppFactory.a(Unknown Source)

at com.crystaldecisions.sdk.occa.managedreports.ras.internal.RASReportAppFactory.openDocument(Unknown Source)

at com.crystaldecisions.sdk.occa.managedreports.ras.internal.RASReportAppFactory.openDocument(Unknown Source)

at jsp_servlet.__viewreport.getReportClientDocument(__viewreport.java:254)

at jsp_servlet.__viewreport._jspService(__viewreport.java:710)

at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)

at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)

at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)

at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)

at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184)

at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3732)

at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)

at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)

at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)

at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)

at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

Caused by: com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: Unable to connect to the server: #####.CrystalReports2013ReportApplicationServer.---- Error code:-2147467259 Error code name:failed

at com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException.throwReportSDKServerException(Unknown Source)

at com.crystaldecisions.sdk.occa.managedreports.ras.internal.CECORBACommunicationAdapter.a(Unknown Source)

at com.crystaldecisions.sdk.occa.managedreports.ras.internal.CECORBACommunicationAdapter.request(Unknown Source)

at com.crystaldecisions.proxy.remoteagent.y.a(Unknown Source)

at com.crystaldecisions.proxy.remoteagent.r.a(Unknown Source)

at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.if(Unknown Source)

at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.if(Unknown Source)

at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.a(Unknown Source)

at com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(Unknown Source)

... 19 more

Caused by: java.lang.IllegalArgumentException

at com.crystaldecisions.sdk.occa.report.definition.ObjectFormatConditionFormulaType.from_string(Unknown Source)

at com.crystaldecisions.sdk.occa.report.definition.ObjectFormatConditionFormulas.readElement(Unknown Source)

at com.crystaldecisions.xml.serialization.CrystalSAXParserHandler.endElement(Unknown Source)

at org.apache.xerces.parsers.AbstractSAXParser.endElement(AbstractSAXParser.java:585)

at org.apache.xerces.impl.XMLNamespaceBinder.handleEndElement(XMLNamespaceBinder.java:898)

at org.apache.xerces.impl.XMLNamespaceBinder.endElement(XMLNamespaceBinder.java:644)

at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEndElement(XMLDocumentFragmentScannerImpl.java:1008)

at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:1469)

at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:329)

at org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:525)

at org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:581)

at org.apache.xerces.parsers.XMLParser.parse(XMLParser.java:152)

at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1175)

at com.crystaldecisions.xml.serialization.XMLObjectSerializer.load(Unknown Source)

... 27 more

 

 

 

 

 

Could some one please help me with this?

 

Thank you

Is com.businessobjects.sdk.ceutils.prompts.PromptsUtil deprecated ?

$
0
0

Hi

 

Is there a way to confirm if com.businessobjects.sdk.ceutils.prompts.PromptsUtil has been deprecated for  BusinessObjects Enterprise XI 3.1 SP4 ?

 

I see the following posts saying that it could be a documentation error and it has not been deprecated for web intelligene but nothing specific to my version

 

BOE 3.1 Service Pack 2 SDK changes

 

Schedule webi with prompts problem

 

If it has been deprecated whats the correct way for populating webi prompts ?

 

Thanks

Issue with http://localhost:6405/biprws/raylight in BO 4.0 SP5 Patch8

$
0
0

Hi Experts,

 

Please find the below error when i try to access raylight where as infostore is giving 401 error which is expected and i am able to do curl as explained in restfulwebservices documentation on infostore folder

 

when i try to access http://localhost:6405/biprws/raylight below is the error. I believe 4.0 sp5 patch8 doesn't have support for /raylight folder.

 

-<error>

 

<error_code>404</error_code>

 

<message>Not Found (RWS 00005)</message>

 

<stack_trace>com.sap.bip.rs.exceptions.NotFoundException at com.sap.bip.rs.RootResource.ResolveRootResource(RootResource.java:64) at sun.reflect.GeneratedMethodAccessor52.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.apache.cxf.service.invoker.AbstractInvoker.performInvocation(AbstractInvoker.java:173) at org.apache.cxf.service.invoker.AbstractInvoker.invoke(AbstractInvoker.java:89) at org.apache.cxf.jaxrs.JAXRSInvoker.invoke(JAXRSInvoker.java:153) at org.apache.cxf.jaxrs.JAXRSInvoker.invoke(JAXRSInvoker.java:87) at org.apache.cxf.interceptor.ServiceInvokerInterceptor$1.run(ServiceInvokerInterceptor.java:58) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) at java.util.concurrent.FutureTask.run(FutureTask.java:138) at org.apache.cxf.workqueue.SynchronousExecutor.execute(SynchronousExecutor.java:37) at org.apache.cxf.interceptor.ServiceInvokerInterceptor.handleMessage(ServiceInvokerInterceptor.java:106) at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:255) at org.apache.cxf.transport.ChainInitiationObserver.onMessage(ChainInitiationObserver.java:113) at org.apache.cxf.transport.servlet.ServletDestination.invoke(ServletDestination.java:97) at org.apache.cxf.transport.servlet.ServletController.invokeDestination(ServletController.java:461) at org.apache.cxf.transport.servlet.ServletController.invoke(ServletController.java:149) at com.sap.bip.rs.server.servlet.BIPServletController.invoke(BIPServletController.java:90) at org.apache.cxf.transport.servlet.AbstractCXFServlet.invoke(AbstractCXFServlet.java:148) at org.apache.cxf.transport.servlet.AbstractHTTPServlet.handleRequest(AbstractHTTPServlet.java:179) at org.apache.cxf.transport.servlet.AbstractHTTPServlet.doGet(AbstractHTTPServlet.java:108) at javax.servlet.http.HttpServlet.service(HttpServlet.java:617) at org.apache.cxf.transport.servlet.AbstractHTTPServlet.service(AbstractHTTPServlet.java:159) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:555) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:852) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) at java.lang.Thread.run(Thread.java:722)</stack_trace>

 

</error>

 

Please let me know if any more inputs are required.

 

Regards,

Raghu

Viewing all 1701 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>