BO XI R3.1 dashboards with Xcelsius suddenly giving error

We have BO XI R3.1 (Product: 12.1.0) being used in our organization.
Everything was working fine till few hours ago. Suddenly, all the Dashboards having Xcelsius as default viewer started giving an error message 'Failed to get the document information. (LO 26315)'.
Tried to look for solution over the internet (SAP and other forums) but couldn't find much. In addition, couldn't locate SAP Notes 1357924 anywhere.
Not too sure, if the following log extracts are of much help:
Log file: wireportserver_1400_2011_02_01_11_43_01_621_trace
Location: d:\Program Files\Business Objects R3.1\BusinessObjects Enterprise 12.0\Logging\
kc3cdbtbdacs.cpp:272:long __cdecl DoReportCSError(const class ConnectionServer::Error &,const int,const char *const ): TraceLog message 152
2011/02/01 14:05:59.703|>>|E| | 1400|5808| |||||||||||||||**ERROR:C3_dacs:CS::Error :  (DBD(1),ID:769) "ORA-01722: invalid number
" . [kc3cdbtbdacs.cpp;272]
kc3cdbtbdacs.cpp:3150:long __thiscall tbCnxSrvrRecordSet::StartFetching(void): TraceLog message 153
2011/02/01 14:05:59.719|>>|E| | 1400|5808| |||||||||||||||**ERROR:C3_dacs:ReportCSError failed. [kc3cdbtbdacs.cpp;3150]
kdgWICDZ_i_member.cpp:2189:void __thiscall dgWICDZ_i::StateManagementWelcome(class ibo_ptr<struct idgDocument> &,const class ucs2string &): TraceLog message 154
2011/02/01 14:06:01.625|>>|E| | 1400|5044| |||||||||||||||**ERROR:WICDZ_i:StateMgmt: : 30111 : Invalid Token; found:545287 expected: P56PI1400KT80 [kdgWICDZ_i_member.cpp;2189]
kdgWICDZ_i_member.cpp:2177:void __thiscall dgWICDZ_i::StateManagementWelcome(class ibo_ptr<struct idgDocument> &,const class ucs2string &): TraceLog message 155
2011/02/01 14:06:01.625|>=|E|X| 1400|5044| |||||||||||||||Uncaught Exception in SilentScope: WICDZ_i:StateManagementWelcome: 0.015
kdgWICDZProc.cpp:435:void __thiscall WICDZProcBasic::BOExceptionHandler(class BOException &,class OBFixSeq<unsigned char> *&): TraceLog message 156
2011/02/01 14:06:01.641|>>|E| | 1400|5044| |||||||||||||||**ERROR:WICDZ_i:BOException : BOException caught:RESULT=80004005;WHAT=30111 : Invalid Token; found:545287 expected: P56PI1400KT80 [kdgWICDZProc.cpp;435]
Appreciate any help on this as this is critical for us.

Hi
Regarding 1)
Q: do you use the full qulified domain name of your BOBJ server in the URL when invoking the InfoView?
Regarding 2) und 3)
a) Log in on the machine your BOBJ server is installed on and go to
<BOBJ installation directory>\Tomcat55\webapps\InfoViewApp\WEB-INF
b) Open the web.xml file in a text editor (Notepad)
c) Locate the entry
<param-name>cms.visible</param-name>
<param-value>false</param-value>
and change it to
<param-name>cms.visible</param-name>
<param-value>true</param-value>
d) Locate the entry
<param-name>authentication.visible</param-name>
<param-value>false</param-value>
and change it to
<param-name>authentication.visible</param-name>
<param-value>true</param-value>
e) Restart the Tomcat server.
Regards,
Stratos

Similar Messages

  • Export entire Dashboard in excel is giving error generating document when table view have subtotals

    Hi all,
    We have dashboard with multiple tabs and are trying to Export entire Dashboard into excel.
    Excel file is generated with all dashboard tabs as sheets but few of those sheets are empty with Error generating document message in first cell.
    After further analysis we concluded that cause is table view with subtotals enabled. Pivot tables with subtotals are generated properly.
    Obvious workaround solution to recreate table views into pivots is not possible due high number of reports.
    We are running Oracle Business Intelligence Product Version 11.1.1.7.150120 (Build 150113.1200 64-bit)
    Any ideas or solutions about this problem would be much appreciated.
    Thank you;
    Klaudio

    We just found culprit
    Rows per page of table view must be max 999999999 which is more than enough for our needs.

  • MOdify with Date field giving error

    Hi,
    I have to modifuy an internal table using modify statement.
    After using the modify statement my date field in the internal table is replace by *.
    heres a sample code i have used to depict the scenario(with the test values:)
    DATA: BEGIN OF t_arcs_source OCCURS 0,
          premise(10) type c,
        key_date TYPE sy-datum,
      END OF t_arcs_source.
      DATA: wa_arcs_source LIKE LINE OF t_arcs_source.
    t_arcs_source-premise = '1001'.
    t_arcs_source-key_date = '20080101'.
    APPEND t_arcs_source.
    t_arcs_source-premise = '1001'.
    t_arcs_source-key_date = '20090101'.
    APPEND t_arcs_source.
      sort t_arcs_source by premise ascending key_date descending.
      clear t_arcs_source.
      loop at t_arcs_source into wa_arcs_source.
        at new premise.
           modify t_arcs_source from wa_arcs_source transporting key_date where premise = wa_arcs_source-premise.
        endat.
      endloop.
    please test the code and see the  error and help me out.
    Regards,
    Anand

    Hi.
    I have modify ur above given code and make it changed for ur need meanz according ur nedd and it is working accurately.
    check it and then tell me.
    DATA: BEGIN OF t_arcs_source OCCURS 0,
          premise(10) type c,
        key_date TYPE sy-datum,
      END OF t_arcs_source.
    " New code of loines i appended
      data: wa_t_arcs_source like t_arcs_source.
      data: t_arcs_source_1 LIKE STANDARD TABLE OF t_arcs_source WITH HEADER LINE.
      data: wa_t_arcs_source_1 like t_arcs_source.
    " End of new code of line
      DATA: wa_arcs_source LIKE LINE OF t_arcs_source. " I change this work area by wa_t_arcs_source
    t_arcs_source-premise = '1001'.
    t_arcs_source-key_date = '20080101'.
    APPEND t_arcs_source.
    t_arcs_source-premise = '1001'.
    t_arcs_source-key_date = '20090101'.
    APPEND t_arcs_source.
      sort t_arcs_source by premise ascending key_date descending.
      clear t_arcs_source.
      loop at t_arcs_source into wa_t_arcs_source. " Used the new work area
        wa_t_arcs_source_1 = wa_t_arcs_source.
        append wa_t_arcs_source_1 to t_arcs_source_1.
        at new premise.
           modify t_arcs_source_1 from wa_t_arcs_source_1 transporting key_date where premise = wa_t_arcs_source-premise.
        endat.
      endloop.
    Just copy paste in editor and check it.
    Edited by: tahir naqqash on Feb 2, 2009 11:24 AM

  • Crystal Report 7 with Access 97 giving Error - 20536

    Our client is getting an error at his  machine.
    Application is in VB 6.0 with Access 97 as database and while generating reports,it gives error "Runtime Error 20536 Unable to Connect: Incorrect Log On Parameters" .Report version is Crystal Report 7.
    Also client has Win XP sp3 OS.
    This error was not reproducible at our machines which has the same OS.
    Please if anyone could help in this regard ,that will be really great.

    Hello Prachi,
    Crystal Reports 7 reached End of Life for patch support in August, 2002. CR7 was released in 1998 - long before the XP operating system was released. Back then Crystal Decisions rarely went back and added OS support for the older versions of Crystal Reports. There weren't major changes to Windows until Vista/Win7, so that's probably why it's working on your machine.
    The KB article links that don't work can be found with manual searching. You can go to [http://service.sap.com/support|http://service.sap.com/support], click on the Help & Support link, and then click on the SAP xSearch link. Use the "C-number" listed in the document in the Search For field and click on Go. The KBA that corresponds to that particular "C-number" will have that "C-number" in the Keyword section of the article. Other articles may reference that "C-number" so your search may return more than one result. It is unlikely that the document with the links will be updated due to its age.
    You can use a utility called Modules to see if you can find any DLL differences between the working and non-working machine. You can download it from SAP at this link: [https://smpdl.sap-ag.de/sapidp/012002523100006252802008E/modules.zip|https://smpdl.sap-ag.de/sapidp/012002523100006252802008E/modules.zip]. There are instruction in the ZIP archive. Run the utility on the non-working machine and the working machine. Save the two results and then compare them and address any differences.
    I'm rusty on database connectivity issues so perhaps Ludek or someone else can throw in some additional suggestions related to OLE DB connectivity.
    Sincerely,
    Dan Kelleher

  • Weblogic 9.1 with JDK1.6 giving error ( while doing weblogic.appc )

    hi,
    I am trying to build my ear using jdk1.6 with weblogic 9.1.
    I am getting this error while doing weblogic.appc using my ant scripts. Could some one pls let me know the solution for this problem.
    [java] Created working directory: c:\windows\TEMP\appcgen_gdoasis.jar
    [java] <02-Aug-2007 14:54:22 o'clock BST> <Error> <J2EE> <BEA-160187> <weblogic.appc failed to compile yo
    ur application. Recompile with the -verbose option for more details. Please see the error message(s) below.>
    [java] javax.xml.stream.FactoryConfigurationError: Provider javax.xml.stream.XMLInputFactory could not be
    instantiated: java.lang.InstantiationException
    [java] at javax.xml.stream.XMLInputFactory.newInstance(XMLInputFactory.java:158)
    [java] at weblogic.ejb.container.dd.xml.DDUtils.<clinit>(DDUtils.java:85)
    [java] at weblogic.ejb.container.ejbc.EJBCompiler.parseDescriptors(EJBCompiler.java:1345)
    [java] at weblogic.ejb.container.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:431)
    [java] at weblogic.application.compiler.AppcUtils.compileEJB(AppcUtils.java:292)
    [java] at weblogic.application.compiler.EJBCompiler.compile(EJBCompiler.java:95)
    [java] at weblogic.application.compiler.flow.AppCompilerFlow.compileInput(AppCompilerFlow.java:113)
    [java] at weblogic.application.compiler.flow.AppCompilerFlow.compile(AppCompilerFlow.java:43)
    [java] at weblogic.application.compiler.FlowDriver$FlowStateChange.next(FlowDriver.java:55)
    [java] at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
    [java] at weblogic.application.compiler.FlowDriver.run(FlowDriver.java:24)
    [java] at weblogic.application.compiler.Appc.runBody(Appc.java:151)
    [java] at weblogic.utils.compiler.Tool.run(Tool.java:158)
    [java] at weblogic.utils.compiler.Tool.run(Tool.java:115)
    [java] at weblogic.application.compiler.Appc.main(Appc.java:162)
    [java] at weblogic.appc.main(appc.java:14)
    [java] Provider javax.xml.stream.XMLInputFactory could not be instantiated: java.lang.InstantiationExcept
    ion
    Thanks

    Hi,
    First thing, I am not sure this will work :-)
    The main issue is that there is no StAX provider to parse I-not-know-what XML file.
    You may try to execute appc with the parameter
    -Djavax.xml.stream.XMLInputFactory=com.bea.xml.stream.MXParserFactory
    Anyhow, you may still have some issues given that Java 6 is not a supported Java version for WL 9.1.
    Regards,
    lg

  • SAP Lumira 1.17 Connectivity with ECC 6 giving error

    Hi Expert,
    We're on SAP Lumira 1.17 and I'm getting attached error when I'm connecting with EC 6 via Query with SQL. I've attached the error log. Can you someone please look into this , how can I resolve this error to connect with ECC.
    I'm trying

    Hi Antoine,
    Thanks for response.
    Are you able to connect to this ECC system using either:
    - a SAP tool like SAP logon
    Yes, I can.
    - a BI tool like information design tool (if you have access to it)
    Yes, I can access. I can also connect UNX universe which is built on ECC with Webi as well. It's only in Lumira which is not working.
    -Can you try from SAP Lumira changing the language used?
    Yes, I tried to change different language (US and UK both) but not working.
    -As the base error from your log file raised from ECC is
    This error log is generated from Lumira only.
    Thanks,
    Pawan

  • IPSec remote VPN with VPN client giving error

    Hi ,
    ASA 5505 current configuration is : (setup using ASDM)
    esult of the command: "show running-config"
    : Saved
    ASA Version 8.2(5)
    hostname TEST
    enable password ___________ encrypted
    passwd __________ encrypted
    names
    interface Ethernet0/0
    switchport access vlan 2
    interface Ethernet0/1
    interface Ethernet0/2
    interface Ethernet0/3
    interface Ethernet0/4
    interface Ethernet0/5
    interface Ethernet0/6
    interface Ethernet0/7
    interface Vlan1
    nameif inside
    security-level 100
    ip address 192.168.1.1 255.255.255.0
    interface Vlan2
    nameif outside
    security-level 0
    ip address dhcp setroute
    ftp mode passive
    access-list sap_vpn_splitTunnelAcl standard permit 192.168.1.0 255.255.255.0
    access-list inside_nat0_outbound extended permit ip 192.168.1.0 255.255.255.0 192.168.10.0 255.255.255.224
    pager lines 24
    logging asdm informational
    mtu inside 1500
    mtu outside 1500
    ip local pool test_pool 192.168.10.0-192.168.10.20 mask 255.255.255.0
    icmp unreachable rate-limit 1 burst-size 1
    no asdm history enable
    arp timeout 14400
    global (outside) 1 interface
    nat (inside) 0 access-list inside_nat0_outbound
    nat (inside) 1 0.0.0.0 0.0.0.0
    timeout xlate 3:00:00
    timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
    timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
    timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
    timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
    timeout tcp-proxy-reassembly 0:01:00
    timeout floating-conn 0:00:00
    dynamic-access-policy-record DfltAccessPolicy
    aaa authentication http console LOCAL
    http server enable
    http 192.168.1.0 255.255.255.0 inside
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart
    crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
    crypto ipsec transform-set ESP-AES-256-MD5 esp-aes-256 esp-md5-hmac
    crypto ipsec transform-set ESP-DES-SHA esp-des esp-sha-hmac
    crypto ipsec transform-set ESP-DES-MD5 esp-des esp-md5-hmac
    crypto ipsec transform-set ESP-AES-192-MD5 esp-aes-192 esp-md5-hmac
    crypto ipsec transform-set ESP-3DES-MD5 esp-3des esp-md5-hmac
    crypto ipsec transform-set ESP-AES-256-SHA esp-aes-256 esp-sha-hmac
    crypto ipsec transform-set ESP-AES-128-SHA esp-aes esp-sha-hmac
    crypto ipsec transform-set ESP-AES-192-SHA esp-aes-192 esp-sha-hmac
    crypto ipsec transform-set ESP-AES-128-MD5 esp-aes esp-md5-hmac
    crypto ipsec security-association lifetime seconds 28800
    crypto ipsec security-association lifetime kilobytes 4608000
    crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set pfs group1
    crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set transform-set ESP-AES-128-SHA ESP-AES-128-MD5 ESP-AES-192-SHA ESP-AES-192-MD5 ESP-AES-256-SHA ESP-AES-256-MD5 ESP-3DES-SHA ESP-3DES-MD5 ESP-DES-SHA ESP-DES-MD5
    crypto map outside_map 65535 ipsec-isakmp dynamic SYSTEM_DEFAULT_CRYPTO_MAP
    crypto map outside_map interface outside
    crypto isakmp enable outside
    crypto isakmp policy 10
    authentication pre-share
    encryption 3des
    hash sha
    group 2
    lifetime 86400
    telnet timeout 5
    ssh timeout 5
    console timeout 0
    dhcpd auto_config outside
    dhcpd address 192.168.1.5-192.168.1.132 inside
    dhcpd enable inside
    threat-detection basic-threat
    threat-detection statistics access-list
    no threat-detection statistics tcp-intercept
    webvpn
    group-policy sap_vpn internal
    group-policy sap_vpn attributes
    dns-server value 192.168.2.1
    vpn-tunnel-protocol IPSec
    split-tunnel-policy tunnelspecified
    split-tunnel-network-list value sap_vpn_splitTunnelAcl
    username test password ____________ encrypted privilege 0
    username test attributes
    vpn-group-policy sap_vpn
    username TEST password ________________ encrypted privilege 15
    tunnel-group sap_vpn type remote-access
    tunnel-group sap_vpn general-attributes
    address-pool test_pool
    default-group-policy sap_vpn
    tunnel-group sap_vpn ipsec-attributes
    pre-shared-key *****
    class-map inspection_default
    match default-inspection-traffic
    policy-map type inspect dns preset_dns_map
    parameters
      message-length maximum client auto
      message-length maximum 512
    policy-map global_policy
    class inspection_default
      inspect dns preset_dns_map
      inspect ftp
      inspect h323 h225
      inspect h323 ras
      inspect rsh
      inspect rtsp
      inspect esmtp
      inspect sqlnet
      inspect skinny
      inspect sunrpc
      inspect xdmcp
      inspect sip
      inspect netbios
      inspect tftp
      inspect ip-options
    service-policy global_policy global
    prompt hostname context
    no call-home reporting anonymous
    Cryptochecksum:b67cdffbb9567f754052e72f69ef95f1
    : end
    I am using VPN client with host IP 192.168.2.20 and group authentication with username:sap_vpn and preshared key as password but could not connect to vpn and getting attached error message.
    ASA set up with ASDM initial wizard: inside interface (VLAN1) IP 192.168.1.1 and outside (VLAN2) IP 192.168.2.20 assigned using DHCP. I am using outside interface IP 192.168.2.20 for HOST IP in VPN client for remote connection??? is it right??
    please advise for this.

    Hi,
    current configuration for ASA 5505 for IPSec remote VPN as below:
    ASA Version 8.2(5)
    hostname _________
    domain-name ________
    enable password ___________ encrypted
    passwd _________ encrypted
    names
    interface Ethernet0/0
    switchport access vlan 2
    interface Ethernet0/1
    interface Ethernet0/2
    interface Ethernet0/3
    interface Ethernet0/4
    interface Ethernet0/5
    interface Ethernet0/6
    interface Ethernet0/7
    interface Vlan1
    nameif inside
    security-level 100
    ip address 192.168.0.7 255.255.255.0
    interface Vlan2
    nameif outside
    security-level 0
    ip address ______________(public IP)
    ftp mode passive
    dns server-group DefaultDNS
    domain-name ________
    access-list inside_nat0_outbound extended permit ip any 172.16.0.0 255.255.224.0
    pager lines 24
    logging asdm informational
    mtu inside 1500
    mtu outside 1500
    ip local pool test_pool 172.16.10.0-172.16.16.20 mask 255.255.255.0
    icmp unreachable rate-limit 1 burst-size 1
    no asdm history enable
    arp timeout 14400
    global (outside) 1 interface
    nat (inside) 0 access-list inside_nat0_outbound
    nat (inside) 1 0.0.0.0 0.0.0.0
    timeout xlate 3:00:00
    timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
    timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
    timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
    timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
    timeout tcp-proxy-reassembly 0:01:00
    timeout floating-conn 0:00:00
    dynamic-access-policy-record DfltAccessPolicy
    aaa authentication http console LOCAL
    http server enable
    http 192.168.0.0 255.255.255.0 inside
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart
    crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
    crypto ipsec transform-set ESP-AES-256-MD5 esp-aes-256 esp-md5-hmac
    crypto ipsec transform-set ESP-DES-SHA esp-des esp-sha-hmac
    crypto ipsec transform-set ESP-DES-MD5 esp-des esp-md5-hmac
    crypto ipsec transform-set ESP-AES-192-MD5 esp-aes-192 esp-md5-hmac
    crypto ipsec transform-set ESP-3DES-MD5 esp-3des esp-md5-hmac
    crypto ipsec transform-set ESP-AES-256-SHA esp-aes-256 esp-sha-hmac
    crypto ipsec transform-set ESP-AES-128-SHA esp-aes esp-sha-hmac
    crypto ipsec transform-set ESP-AES-192-SHA esp-aes-192 esp-sha-hmac
    crypto ipsec transform-set ESP-AES-128-MD5 esp-aes esp-md5-hmac
    crypto ipsec security-association lifetime seconds 28800
    crypto ipsec security-association lifetime kilobytes 4608000
    crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set pfs group1
    crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set transform-set ESP-AES-128-SHA ESP-AES-128-MD5 ESP-AES-192-SHA ESP-AES-192-MD5 ESP-AES-256-SHA ESP-AES-256-MD5 ESP-3DES-SHA ESP-3DES-MD5 ESP-DES-SHA ESP-DES-MD5
    crypto map outside_map 65535 ipsec-isakmp dynamic SYSTEM_DEFAULT_CRYPTO_MAP
    crypto map outside_map interface outside
    crypto isakmp enable outside
    crypto isakmp policy 10
    authentication pre-share
    encryption 3des
    hash sha
    group 2
    lifetime 86400
    telnet timeout 5
    ssh timeout 5
    console timeout 0
    dhcp-client client-id interface outside
    dhcpd auto_config outside
    dhcpd address 192.168.0.11-192.168.0.138 inside
    dhcpd enable inside
    threat-detection basic-threat
    threat-detection statistics access-list
    no threat-detection statistics tcp-intercept
    webvpn
    group-policy dyt_vpn internal
    group-policy dyt_vpn attributes
    vpn-tunnel-protocol IPSec
    default-domain value _______
    username test password _________ encrypted privilege 0
    username test attributes
    vpn-group-policy dyt_vpn
    username ________ password ______________encrypted privilege 15
    tunnel-group dyt_vpn type remote-access
    tunnel-group dyt_vpn general-attributes
    address-pool test_pool
    default-group-policy dyt_vpn
    tunnel-group dyt_vpn ipsec-attributes
    pre-shared-key *****
    class-map inspection_default
    match default-inspection-traffic
    policy-map type inspect dns preset_dns_map
    parameters
      message-length maximum client auto
      message-length maximum 512
    policy-map global_policy
    class inspection_default
      inspect dns preset_dns_map
      inspect ftp
      inspect h323 h225
      inspect h323 ras
      inspect rsh
      inspect rtsp
      inspect esmtp
      inspect sqlnet
      inspect skinny 
      inspect sunrpc
      inspect xdmcp
      inspect sip 
      inspect netbios
      inspect tftp
      inspect ip-options
    service-policy global_policy global
    prompt hostname context
    no call-home reporting anonymous
    Cryptochecksum:eb0f7a5c2385b7400e9b9432fb2df9d1
    : end
    when I am assigning PUblic IP to outisde interface of ASA, it is showing outside interface down.
    can anybody please help me for that.
    Thanks,
    Sap

  • Queries with variable input giving error

    Hello all,
    I have a query which asks for fiscal year and posting period at the start of query run. But when I run the query in Bex analyzer, it gives me this error all the time.
    "Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION
    System error in Program CL_RSR_REQUEST and form TEXT_ELEMENTS_GET: VARIABLE"
    I found a note for that "858458" but it doesn not mention aboit NW2004s. So was just wondering can I still apply ?
    Can someone help,
    Thanks in advance.
    Kiran

    Hi Prakash,
    I am trying to open the query in Bex analyzer(excel), Release NW 2004s Patch 701 and Query Designer same relase and patch.
    The query I am trying to run is on DSO (0HE_DS01) and the queries are from 3.5/03.
    The error in Bex analyzer is as above and when i try to open in query designer I get a long error (below) and at the end of the error this is the description that comes.
    "When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the machine
    rather than being handled by this dialog."
    Thanks,
    Kiran

  • Connecting SAP CRM with Xcelsius to generate dashboards

    Post Author: ppchandrasekar
    CA Forum: Xcelsius and Live Office
    Hi Team,
    I am new to BOBJ and its components. I want to integerate SAP CRM system with Xcelsius to generate dashboards. As per my understanding only  through three sources we can generate Xcelsius dashboards
    1) Excel sheet  2) Web services  3) Live Office
    Now in this case, how can I generate Xcelsius dashboards. How can I connect it to CRM system and How can I fetch the data from it?
    Regards,
    chan

    Post Author: amr_foci
    CA Forum: Xcelsius and Live Office
    to create dashboards with xcelsius is not a big issue, just you've to understand how u get the data from ur database , for the excel sheet its a primary thing that make the xcelsius dashboards work, for the other things its just a work arounds to let ur data come live
    like "Live Office" , or "Web Service" or "XML Data map",,,, etc
    based on ur business and ur available tools, you can use anything of them to get the data life to the Xcelsius dashboards, read the xcelsius developer guide from business objects thats may help you much around this issue
    good luck

  • BPF with Xcelsius

    Hi experts,
    There is a document on the SDN describing how to build BPF dashboard with Xcelsius. However, the guide only includes the PDF document and not the required components (unlike the BPC data in Xcelsius guide).
    Could someone point out where the complete 'BPF in Xcelsius' package can be found?
    Thanks
    Madis

    Hi, I'm using v7.0 MS.
    The document I was referring to is here: [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10f3eb4f-f9d7-2b10-b5ba-f188b50098fb]. I guess this is also as limited as the data but it might be interesting to play with.

  • APEX Dashboard with Existing Reports...!

    Hi Guys,
          I created some reports in APEX and my requirement is to create a dashboard using those reports is there any way we can do it without any re-work ....
    Mean to say can i use those reports to create a dashboard like we do it in OBIEE.
    With Regards,
    V.Siva Kumar.

    Hi Lakshmi,
        I tried to create a Page (Blank Page) for Dashboard.And I tried to copy 2 interactive reports to same page(Dashboard) then it is giving error saying that only one interactive report is allowed per page.but I need 4 to 5 reports on the same page(Dashboard).Is there is any way to do that ?
    With Regards,
    Siva

  • Need information on Business Object XI R3 with Dashboard Design (Xcelsius)

    Hi,
    we are planning to install Business Object XI R3 with Dashboard Design (Xcelsius). In order to do this SAP has advised that we require Netweaver 7.0 Enhancement Pack1, Support Pack5.
    Could you please let us know if it would take to upgrade and also any dependencies (do we also need to upgrade ECC, BI, SRM or Portal). we did not install EHP for any of the components in our landscape except solution manager (EHP1 SPS22).
    Please help in providing the information.
    Thanks,
    Mohan K

    Hi Jeff,
    thank you very much for your prompt help.
    But my query is do we need to upgrade any of the SAP components (ECC, SRM, Portal, MDM or SOLMAN) which are present in our landscape. no SAP components is of relase EHP except SOLMAN system.
    Please suggest.
    Thanks,
    Mohan K

  • How to connect Already created WebI reports with Xcelsius Dashboards

    HI Experts,
    My requirement it to bring data from already in use WebI reports to a consolidated Dashboard. I am aware of connecting universe with Dashboard with the help of QaaWS.
    Is there is any other way that we can connect our dashboard?
    We are thinking to publish those dashboards on the SAP Enterprise BI Portal.
    Thanks in advance!!!
    Edited by: BIBO_Apprentice on Aug 13, 2011 7:40 AM

    Hi,
    One can connect WebI reports with Xcelsius dashboards in 3 ways:
    1. Using QaaWS : connects universe with Dashboard. Dashboard uses the WSDL link to get data that works on SOAP (that works on exchanging web structures).
    2. Using Live Office Connection: With the help of Live Office one can connect the WebI reports directly. One can take advantage of the scheduled instances of the WebI reports. So it is good for time consuming reports.
    3. Using BI Web Services: Here custom web services are created of intended report instances. Publication is done from CMS side.
    after that WSDL is used as any other web services.
    Get back if you need any further clarification.

  • Emailing ppt file with xcelsius dashboard - need advice

    We have created a live connection to our xcelsius dashboards via LiveOffice, and we use it to load client-specific data into templated charts.  We would like to email the pre-loaded powerpoint dashboards to clients and initially planned on using the "Save Scenario" function until we realized that this loaded/saved data is only available locally.
    Any workarounds for loading data, saving, and then emailing to an end-user who is unable to connect to BOE?
    Thanks.

    Hans,
    Here is what you can do:
    -->Run the dahboard in preview mode
    >then goto FileSnapshot-->Current Excel data
    -->Save the file
    -->Import the saved excel file back into your existing dashboard. (Perhaps you can save (""Save as") your original dashboard and then make changes to the new one)
    -->Export the file to PPT
    --> Now you will be able to share the dashboard with your end users
    P.S. You can remove live office connections configured in the data manager from the New dashboard.
    Hope this helps...
    -Anil

  • SSO doesn't work with Xcelsius using QAAWS, outside Infoview

    Hi,
    We have some xcelsius dashboards using QAAWS to retrieve data from database
    I would like to know whether SSO works with xcelsius dashboards using QAAWS outside infoview.Currently we get login screen to enter username/password.we are using Windows AD as the authentication type in the environment.

    You got it right. Within the InfoView, your Xcelsius-swf gets the CELogonToken as a parameter field to authenticate against the data for example. If you access another Xcelsius-Dashboard from within a swf you can even pass the LogonToken on.
    Using dashboard and QaaWS outside of InfoView, the user will have to enter username and password before the data is fetched. At least that is the way it works here.
    Regards,
    Peter

Maybe you are looking for