Dashboard & Analytics on BOE XI Professional on Linux

Hi experts,
I have boe xi 3.1 sp4 enterprise professional installed on linux.
Now I bought the Performance Manager and Dashboard Builder license key.
I have created an empty schema for the performance manager repository.
On linux server, In the installation folder, there is the folder "Dashboard_Analytics_120".
What do I have to do to startup EMP & Dashboard?
What do I have to do to initialize Peformance Manager repository?
Many Thanks
Camillo

I removed the access to the Performance Management Application but it did niot hide the button
Ron

Similar Messages

  • Failed to create MySQL tables. Installation aborted. BOE XI 3.1 Linux

    Tried to do a full install of BOE XI 3.1 Linux on Redhat 5 with at least the mimimum requirements and it goes through fine but then in the end errors out with "Failed to create MySQL tables. Installation aborted." Any ideas on what is causing this and how to fix it?

    Hello Fred,
    I recommend to post this query to the [BusinessObjects Enterprise Administration|BI Platform; forum.
    This forum is dedicated to topics related to administration and configuration of BusinessObjects Enterprise, BusinessObjects Edge, and Crystal Reports Server.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all BOE Administration queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • Dashboard Console not working - opesntack on Oracle Linux 6.6

    I have installed openstack using the instructions at http://www.oracle.com/technetwork/server-storage/openstack/linux/documentation/oracle-openstack-user-guide-2296176.pdf
    I have a Oracle Linux 6.6 as the controller and two nodes of Oracle VM 3.3.2 as compute nodes. I managed to get an instance up and running but not sure how to connect to those instances. When I navigate to the console tab of the instance vnc connects successfully the be screen is blank and I think its not accepting any keyboard inputs as well.
    How do I get the console to work from the dashboard (or connect via a vnc viewer)? Alternately I have used DHCP in the instance and know the private IP of the instance (192.168.1.100), how do I ssh to the instance?
    Amish.

    Hi Amish,
    I saw your comment in other thread and I'll try to answer your questions in the best way I can - but this is huge topic. Please keep in mind that I'm also newbie in this area too and I've encountered many problems getting basic OpenStack installation working, like you. Some of them are still not solved for me either. I also did not get any help here
    Networking in OpenStack is IMO difficult to understand, especially for people like me who are accustom with traditional approach. So this is how I understand it now:
    Networking can be purely software driven and in this case it is carried out by openvswitch (http://openvswitch.org - better get accustom with it if you are not yet). Simple linux bridge - utilized by Oracle VM - is not used by OpenStack. Also there can be hardware plugins which can move some of network features to hardware - but I have no experience in this area.
    There are two types of networks you can create in OpenStack: provider and tenant one:
    Provider networks (also called flat networks) are equivalent of what you set in Oracle VM Manager and in typical (old fashioned) IT world. These are networks which in OpenStack are defined by cloud administrator (You) and bound to existing physical network which are already set by network administrator. For example you have couple of ports on your servers connected to LAN switches, some of them are in access mode some are trunks of specific VLANs. Also routers and other network services are managed outside of your cloud.
    You need to define these networks in OpenStack before any user can connect their VMs to them. The most important part is that can do this from the GUI .
    On the other hand there are so called: tenant networks. These are networks which are under cloud user administration. These are like cloud private networks (if you know Ops Center or Exalogic there is similar notion there) - which are created on-demand by your users. You as cloud administrator only create some limits (quotas) regarding how many such networks can be created by user. But obviously you - as cloud administrator - also need to define mechanisms which allow such networks be created on demand. This also has to be done from command line by editing some files - before users can create tenant networks.
    The mechanism I'm talking about can be: VLAN, VxLAN, GRE.
    First one is the only one currently supported by Oracle and it is quite simple: you, in cooperation with your network administrator reserve range (or set) of traditional VLANs and configure them on network switches where your servers are connected (I mean server ports which you dedicate for tenant networks - not all because you need other network for management, etc). Then you define this set in some OpenStack files to let it manage them on its own. For example: you have got 20 VLANs from network department for exclusive use for your cloud. Nobody knows what each VLAN will be used for yet. This will be allocated by cloud users on-demand. Openstack will just allocate VLAN upon user request and will not allow other users to create their private networks on the same VLAN.
    Better approach is to use VxLAN which is tunneling mechanism. You don't need pool of VLANs in this case but you just set tunneling rules and then OpenStack creates private networks using secure tunnels over L3 network which you define first. VxLAN is standard, you can read about it and it is used by OpenStack for Solaris. Unfortunately this did not work for me and Release Notes from Oracle OpenStack for Linux says that it is not supported yet.
    There is also GRE - which is also tunneling and is similar to VxLAN - but it did not work for me either.
    Where it is all configured? Basic setup is created by packstack using CONFIG_NEUTRON_OVS_* variables. However I used packstack only for installation and then I modified configuration files on all nodes. The most important file where configuration is kept is: /etc/neutron/plugin.ini. In this files you set framework on which provider and tenant networks are build. The most important section is [OVS], for example:
    [OVS]
    enant_network_type=vlan
    enable_tunneling=false
    integration_bridge=br-int
    bridge_mappings=physnet1:br-eth3
    network_vlan_ranges=physnet1:2032:2032,physnet1:3010:3020
    This example is from compute node. It says: I have one physical network: physnet1 which is supported by virtual switch called br-eth3. You need to create this virtual switch on your own! OpenStack networking deamons (Neutron) do not create virtual switches - they only reconfigure them if needed. Physical network is just name which you can use later on if you setup provider network.
    Also, in the example you tell OpenStack that you have 11 VLANs available on physnet1 network. Similar configuration has to be done on controller node (but it is only because in simple topology your controller is also network node)
    Then I dedicated first VLAN: 2032 for provider network. This was accomplished by command issued on controller node.
    # neutron net-create --router:external=true --provider:network_type=vlan  --provider:physical_network=physnet1 --provider:segmentation_id=2032 labnet
    From that moment this network (called "labnet") should appear in the GUI and you can connect VMs to it. Users might also do this if you mark it as "shared".
    Also users should be able to create their private networks and this will allocate VLANs from 3010 to 3020 - so there can be only 10 private networks created totally in your cloud now.
    Of course this is example and you can build completely different setup. You can use different ports for provider networks and for tenants one. You do not need VLANs for provider networks and theoretically for tenant too - but you would have to have plenty of ports for this. If you manage to get VxLAN working - then please share your experience here.
    I strongly recommend reading following information sources (Oracle does  not provide this details in their documentation):
    OpenStack Docs: Current
    https://developer.rackspace.com/blog/neutron-networking-the-building-blocks-of-an-openstack-cloud/  there are more blog entries (followups) on this topic - look for them using keyword "neutron"
    https://www.rdoproject.org/forum/discussion/875/does-rdo-support-flat-network-type-/p1
    As for blank VM console:
    I've also had this problem when I used Cirros VM images. However when I imported the template I use on my Oracle VM - then console was working correctly. I think this is more connected with VM configuration then OpenStack. AFAIK you can connect to console directly using vnc client - at least you can configure Nova in that way that it allows external VNC connections.
    Regards,
    Michal

  • BI (BOE) XI R3.1 (Linux) Server Migration -  Update BOE base directory path

    Hello,
    Performing a server migration using BOE XI R3.1 (from BOE XI R3.1 to same release BOE XI R3.1) on Linux Platform.
    After performing a data restore, the BOE server executables could not be launched (do not start) due to different BOE base directory path in these environments.
    Could someone help point me on how to edit server configuration data to correct the base path in the migrated server?

    Hi,
    Thanks for the input.   Unfortunately, I don't see an option in ccm.sh to delete sia/servers..  Using serverconfig.sh, I tried to recreate the sia using option 1 - Add a Server Intelligence Agent, and this option is supposed to recreate the sia and default servers if it already exists in the database.   However, this yields same result: CMS is running with correct base path, but all servers are not launched since the server configuration path reflects the from environment, and not the current/target environment.
    Thanks again.

  • Dashboard error u2013 u201CThere is no AA Analytics Server available. Contact your

    Hi,
    We are using BO XI R3.1 version, and we never used the dash board here . Now when we are trying to access dashboard in Infoview  its giving error as u2013
    There is no AA Analytics Server available. Contact your Business administrator to verify status. AA2213
    Even when we are trying to see settings Dashboard and Analytics setting same message appears.
    We tried dashboard related server restart and also all server restart, but still problem exists.
    Please advice.

    Hi,
    We have servers named Dashboard Analytics Server and Dashboard Server related to dashboard. Both are up and running.
    All other servres under Performance management are up and running.
    We donot find AA Analytics server in server list, is this any specific server?

  • CR 2008 and BOE XI 3.1 patches and fix pack?

    I'm installing Crystal Reports 2008 and BOE XI 3.1 on windows 2008 server, can anybody tell me which service pack and fix I need to install for each product?  When I looked under both product, there are so many of them.  Any help is appreciated.
    Regards,
    Susan Johnson

    I have done much testing over the past several months with BOE 3.1 and different patches.  I've yet to find a combination that would allow us to be on a relatively recent patch level but that does not have a significant issue that support cannot resolve.  We started with 3.1 and FixPack 1.8.  This has actually been the most stable so far.  We were planning to convert our production environment from XI r2 to 3.1 in August and thought it would be better to be on a more current patch level so we added SP2 and FixPack 2.6 on the advice of support.  Just before beginning yet another round of testing for these additional patches, SP3 was released so we added that too.  We then found a significant issue with scheduling Crystal reports that had both dynamic and static parameters.  You can't enter the prompts because they don't display the correct LOV.  Support advised that this issue was fixed with FixPack 2.7 so we installed it.  It does indeed resolve the Crystal schedule issue but the issue returns if you install SP3.  SP3 only includes up to FixPack 2.5 and whatever code was fixed in FixPack 2.7 was not rolled into SP3 so I would caution you against using that combination if you have Crystal reports with mixed parameter types and want to schedule them.  We then removed SP3 and have most recently tried SP2 with FixPack 2.7.  In this version, you cannot schedule Webi reports when going through one of the dashboard analytics (vs. the standard folder navigation).  You get a 404 error when you try to populate the prompts.  We have about 2,000 users that rely on a dashboard for navigation so needless to say, we can't go live with this issue.  I would love to know what the best patch level is for 3.1 but I wouldn't recommend SP2 or SP3.

  • Odbc driver error while OBIEE instal on LINUX tries to access Datawarehouse

    Hi All,
    I have installed OBI Apps on a LINUX machine.The ETL too ran successfully.As we can't install BI tool on LINUX I modified the OracleBIAnalyticsApps.rpd file on a Windows machine and copied it back to the LINUX machine.After modifying the NSQConfig.ini file I could see all the OBI Apps answers and Dashboards ie OBI Apps was installed on LINUX.But whwnever I try to access some data from OLAP i get the following error:
    Odbc driver returned an error (SQLExecDirectW).
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 16023] The ODBC function has returned an error. The database may not be available, or the network may be down. (HY000)
    SQL Issued: SELECT Time."Year" FROM "Human Resources - Workforce Profile" ORDER BY 1
    Probably this is because all the DSN specified in the rpd file were present on the Windows machine.I don't know how to modify these values for LINUX.Please help.Nothing is mentioned in the install docc as far as LINUX installation is concerned.
    regards,
    Soumya.

    I think when your BI Server is running on linux, you would use native drivers to connect to your data warehouse database and not ODBC. If your data warehouse is on a oracle db server, change the call interfact in the RPD connection pool to OCI and give the tnsname for the db server connection in the connection pool.

  • Inserting  dashboards into a single master SWF

    Hello experts,
    I have an issue in merging dashboards into a single SWF file. Currently i have seven dashboards exported to BOE as SWF/flash files . All are working fine in BOE. Now i need to emmbed all of them in a single swf file. How could i do it.
    Current procedure which i am following: I structured OPENDOUCMENT URL for all those seven dashboards in BOE. next, i designed a dashboard with seven slides with label based menu. each of that seven slides are mapped to respective open document URL. might i am wrong . please any one tyhrow some some light in my case.
    Thanks
    Prashanth

    We are XI 3.1.   We use the download document and url and include the CELogonToken when linking to child swfs, e..g
    /Xcelsius/opendoc/documentDownload?sIDType=CUID&iDocID=AU_zADSPisZFqkKz6eCzKAY&sKind=Flash&CELogonToken=&Mode=INFOVIEW&BusinessArea=
    In the example above, BusinessArea is a variable and is used to pass a value from the parent swf to the child swf.
    You need to exercise some care in this swf within swf approach, e.g. if you have QaaWs running in to think about when you want the queries in teh child swf to be triggered, e.g. everytime you go to the child, or only if the user has selected a new value to be passed.
    Personally, I think this type of multi-dashboard deliverable is better handled by pulling the multiple Xcelsius dashboards together  inside a portal tool, or if you are at XI 3.1, use the Dashboard Builder functionality to pull all the Xclesius together.  I hadn't thought about pulling them together using ppt, but that sounds like an option too.
    SAP's Brad Welch did a webinar in June or July 2009 showing Dashboard Builder to pull together Xcelsius, WebI, web pages, pictures, together.  Might be worth a look
    http://www.sdn.sap.com/irj/scn/events?rid=/webcontent/uuid/b04f7e1e-981c-2c10-9898-860238a6388d [original link is broken]
    I hadn't seen much about the repositioning of the Dashboard Builder tool as something to use to pull together Xcelsius and other content, but in reviewing content from the 2009 Bus Obj User Conference, I saw it mentioned in at least 4 different presenations, some from SAP folks, and feel better about developing with it more.

  • How di I run Adobe Air SDK ADL in Linux?

    Hi,
       I downloaded Adobe Air sdk, and want to run adl... But it does nothing at all. No error message, no results, nada.....
    How do I make it at least tell me what it is trying to do? (I renamed adl to adl_linux since there was an adl file already in the flex sdk,
    apparently it is for the mac)
    Here is what I get:
    $ $flexsdk/bin/adl_linux
    $ $flexsdk/bin/adl_linux AirTopo2-app.xml
    $ $flexsdk/bin/adl_linux no-such-file.xml
    $
    Not very helpful....... Is there anything else I need that adl depends upon???
    Thanks,
    Larry

    OK, I am getting further...
      I can get started...
      But I guess Adobe does not know how to build executables in linux without shared libraries. It is just a flag for goodness sake! It includes the code
    in the binary. Yes, it makes the executable larger, but it does not require the user to load a bunch of stuff he does not need/want.
    I now get:
    $ ./adl
    Error loading the runtime (libpangocairo-1.0.so.0: cannot open shared object file: No such file or directory)
    My quandary is this, I work for a large company, there are over 250 developers who each have their own machines and work on the same product. We have professionally managed linux boxes that exist half way across the country. We have our development environment in views that can be created.
    To include this list of shared objects in our linux boxes is not feasible. We could possibly add to our development views, and I will try and modify LD_LIBRARY_PATH to point to location in our views.
    This is a lot of work Because Adobe does not (know about?) want to use the -static flag in "ld" to not use shared libraries (and Adobe does not use Java for adl....)
    It would be really nice if Adobe had a version if the SDK that did not require this huge list of shared libraries that I would not even try and request get installed company wide (my Department's linux boxes and all other standardized development boxes)
    Please, Please, Please use "ld -static" when you link executables for linux! (or make adl a java program)
    I need adl to run regression tests on a part of our product.
    Required libraries
    libgtk-x11-2.0.so.0
    libgdk-x11-2.0.so.0
    libgdk_pixbuf-2.0.so.0
    libgobject-2.0.so.0
    libglib-2.0.so.0
    libgthread-2.0.so.0
    libX11.so.6
    libfontconfig.so.1
    libfreetype.so.6
    libXrender.so.1
    libz.so.1
    libxml2.so.2
    libnss3.so
    libssl3.so
    libsmime3.so
    libnspr4.so
    libdl.so.2
    libplc4.so
    libplds4.so
    libstdc++.so.6
    libm.so.6
    libgcc_s.so.1
    libpthread.so.0
    libc.so.6
    libxslt.so.1
    libcairo.so.2
    libXt.so.6
    libpango-1.0.so.0
    libpangocairo-1.0.so.0
    libpangoft2-1.0.so.0
    libpng12.so.0
    libGL.so
    libkwallet.so*
    libgnome-keyring.so
    libkwalletclient.so*
    libkdecore.so*
    libDCOP.so
    libqt-mt.so
    libhal.so
    libhal-storage.so
    libXext.so

  • Analytics

    Can one use Google Anlytics in Indesign digital publications/apps? Is there any (free) way to track user activity, views, etc. in folio publications?  thx

    This is not an InDesign question. It’s a DPS question.
    We have a dedicated forum here: http://forums.adobe.com/community/dps
    Please post pertinent questions there. But to answer this one, the answer is no.
    Ominture analytics are available for professional and enterprise customers.
    Bob

  • Business Objects Enterprise XI 4.0 / Linux / Oracle / Tomcat Web Server

    Hello Experts,
    I have never done a BOBJ install before and I have some questions:
    First, here is our setup: Business Objects Enterprise XI 4.0 / Linux / Oracle / Tomcat Web Server
    1.     We are being asked how big u2013 disk space- to make the server. All I can find is 14 GB for an English only install, there is no documentation on how big the databases need to be. Does anyone have any experience and can tell me how big the databases are going to be initially? I need to tell the server team how much space to put on the server.
    2.     The documentation says to have two databases or schemas, one for Central Management Server and one for the Auditing Data Store. My question around this is whether there is a preferred way to do it, separate databases or separate schemas?
    3.     The documentation does not say anything about the file system layout, do we need to create the standard SAP file system layout (i.e. /sapmnt, etc.)
    Many many thanks in advance, any advice would be a greate help .. please help
    Regards,
    Sunil Patel

    Hi,
    here are some answers:
    1. Well for the Installation of the Software as itself (not the databases) i would recommend at least 30 GB. All the Reports are getting stored physically in the installation directory. This behavior is by default. Later you can move the FileStore (where the Reports, Universes, etc. are located in) to a NAS share f.e.
    With Regards to the Databases i would recommend 1 GB for the CMS DB and 5 GB for the Audit DB. It depends on how you Audit your System. If you audit more actions, more information in the Audit DB will be stored.
    2. 2 Schemas on one DB is fine
    3. Usually you run a BOE installation on UNIX/LINUX under an installation user. BOE will be installed into his Home Directory.
    Regards
    -Seb.

  • Dashboard Content Linking between Tabs

    Hi all.
    I'm trying to link several analytics within a corporate dashboard.
    I've tried linking between Xcelcius SWF and Webi, and between Dashboard Analytics and it works fine.
    But my problem is that due to design considerations, I've got to link analytics that are placed in different tabs.
    Whe I click on "Content Linking", I can only see those analytics in the same tab.
    It is not possible to link two analytics placed in different tabs?
    Thanks in advance.

    Hello everybody.
    It seems that it's not possible to link analytics between tabs, at least based on this official SAP response:
    Based on the case description I have further investigated on your requirement and would like to inform you that in Interportlet Communication its not currently possible between tabs because we treat each tab as a seperate dashboard.   
    So I have to redesign my dashboards layout.
    Thanks to all.

  • Solaris won't run in VMware 5 on Windows XP Professional

    I tried to install Solaris 10 in VMware 5 to see what it was like.
    Upon booting from the first x86-x64 CD, I selected the first installation type.
    After a couple of seconds it stopped, with a message that said that it needs PAE (Physical Address Extension).
    Now, both my current OSes (Windows XP Professional & Mandriva Linux 2005 LE) support PAE, as does my processor (AMD Sempron 2800+), but it isn't enabled.
    Does anyone know how to fix this so I run Solaris 10 in VMware 5, or should I just partition my drive and install Solaris 10 directly onto it.
    My system is running on a MSI K8MM-V motherboard with the K8M800 chipset, 1GB of TwinMOS PC3200 DDR RAM, an AMD Sempron 2800+ processor, an ATI Radeon X700 graphics card, a 200GB HDD, a LG DVD-Multi Format drive and a 600W Jeantech Arctic power supply.
    Please help!!

    You need to run the 32-bit kernel:
    http://supportforum.sun.com/sunos/index.php?t=msg&goto=5825&rid=213&SQ=515f83feb6f1b5029f1d3413f0584d3a

  • Os 10.4, xp and linux. triple boot

    Is there any way to have Mac OS 10.4.10, Microsoft XP service pack 2 Professional and Linux all on the same computer. I already have XP installed with bootcamp but, I wanted to try out Linux. I have looked at some ways to dual boot linux and mac and linux with windows. I don't think they would allow me to triple boot though. I would understand if this sounds far-fetched but I thought it couldn't hurt to ask. I appreciate any help that is given.

    You can get an e-live live cd for mac and boot from live cd if this helps.

  • Engage 2008 dashboards load extremely slowly

    Post Author: richlatt
    CA Forum: Xcelsius and Live Office
    Hi there,
    We have a number of dashboards built with 4.5 professional, and have migrated a bunch of them over to Engage 2008 (trial version).  Some things are great!  The xlf is much smaller and the published swf is smaller as well.  However, the dashboad load time has increased significantly!  What used to take 10 seconds now takes a full minute.
    Has anyone else experienced this?  Is there a fix?  Have we missed a publish setting perhaps?
    Thanks,
    Rich

    Post Author: abrat
    CA Forum: Xcelsius and Live Office
    Hi RichThere were performance gains and some losses by moving to X2008.  It actually has a totally new underlying architecture and flex engine.  We are working to regain CX4.5 parity for most features.  Below is where we currently stand for the X2008 release.
    X5 faster than CX4.5.
    Application startup time.
    .xlf  file size with same number of components.
    SWF Load time (Open SWF in browser).
    Model creation time.
    SWF speed when returning data from Live Office.
    SWF speed when returning data from QAAWS.
    X5 same as CX4.5.
    .xlf  save time.
    Importing an Excel spreadsheet.
    CPU usage (in Preview after generation).
    SWF animation speed.
    .xlf stability with same components (e.g. no crashes).
    Export to SWF and other formats time.
    X5 slower than CX4.5  
    .xlf load time.  
    Preview time (model being generated).
    SWF file size with same number of components (bigger).
    Switching Themes and Color Schemes.
    We are working on a service pack for July timeframe. And I can tell you that the load speeds are already faster. AndyXcelsius QA 

Maybe you are looking for

  • Java Web Start 1.6 fails to start application without Java Consol on Vista

    Hi All, I've faced with problem related to starting my application in IE 7 on Vista SP1 using Java Web Start (JRE 1.6.0_12 and 1.6.0_13). I suppose that issue appears after 11th update of JRE 1.6 since it works fine before. There were set settings to

  • Can I import .aep into photoshop or convert to .psd

    I helped a team mate (at a different location)  with a Poster  (Many Layers).  She needed some special effects. I imported the .psd into After Effects 2014 cc This is a single frame composition. I used special effect video files to add effects and ju

  • Hello everybody out there, which way can I get the screensaver from Lion get back on Mountain Lion??

    Hello everybody out there. Which way can I get the screensaver from Lion get back on Mountain Lion?? Thanks malibu0978

  • Report Summary table

    Hi I am tasked with producing an automated version of a manual summary table that is built in Excel. The data is derived from a single reporting table. My problem is going about how to design such a table.  Please see the image attached to get an ide

  • Very slow mac performance

    Mac is very very slow, I upgraded the RAM to 3GB but the difference wasn't noticable. I then downloaded the iDefrag application. The iDefrag app is unable to run a full defrag because there isn't enough contiguous space available. iDefrag support tea