SAP Business Objects Performance Tuning Guides

Hello everyone,
I'm currently looking for Performance Tuning guides for the hardware/software. In particular, parameters for the hardware. I'm having a hard time finding any kind of guides on the server side of Business Objects. So I'm wondering if anybody knows of some that are available on the internet or SAP site?
I've found very few in the software department. However, I'm looking more for the hardware portion of Business Objects. Basically the goal is to get the server as optimal as possible (As far as memory, parameters, CPU, etc) is concerned so we know it can't be a hardware issue. It's kind of narrowing down the potential problems we can have later on down the road so that's why this is very important right now.
Any help with this will be greatly appreciated. Thanks in advance. -Victor
Edited by: Victor Munker on Jul 14, 2010 3:52 PM

Here´s an updated version of that document:
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50770d8f-5606-3010-28a6-9e3bb14ec6a7?QuickLink=index&…
Cheers,
Esteban

Similar Messages

  • Need help in SAP Business Object Dashboard

    Hey, I need some help.
    i have a dashboard which is current built in Qlikview.
    Now our client proposed that they need to migrate this dashboard to SAP Business Object.
    Please guide about dashboard desigining using SAP, since i am absolute novice about BO so guide according like which BO software needs to be install and some learning material of BO, please email @ [email protected]
    Many Many Thanks in advance!!

    Too generic to answer this question and also you can find lot of thread, discussions & blogs are available to get the info. Also you can find some templates & samples inside the dashboard itself, play with those component and understand them better.
    Best place to get familiar with the dashboard using the tutorials.
    Official Product Tutorials – SAP BusinessObjects Dashboards
    Installing SAP BusinessObjects Dashboards 4.0
    http://help.sap.com/businessobject/product_guides/boexir4/en/xi4_dashD_user_en.pdf
    SAP BusinessObjects Dashboards 4.0, SAP Crystal Dashboard Design 2011, SAP Crystal Presentation Design 2011 - Product Av…
    SAP BusinessObjects Dashboards 4.1 – SAP Help Portal Page
    SAP BusinessObjects Dashboards Resource Centre
    Please go through the above links which can help you to understand how dashboard works, install & Product availability matrix.

  • SAP Business Objects Data Services 3.2 - Homogenous System Copy

    Hi All,
    We have a SAP Business Objects Data Services 3.2.
    I wanted to know if it is possible do a homogenous system copy or any alternate procedure. I just need to perform this on a Development system and move all its content to a new Sandbox installation.
    Any info on this will be much useful.
    Thanks
    Jaianandh V

    Hi,
    you could extract an ATL File from DEV and import it to Sandbox.
    This can be done via the DS DEsigner. Please Check the DS Designer User Guide for more information.
    Regards
    -Seb.

  • SAP Conversion Agent - Performance Tuning

    Hi Experts,
    We are working with SAP Conversion agent..we have developed several scenarios on that...
    But, Now we are worried about the performance issues on the same.
    Can anybody share their experience on SAP Conversion Agent and any performance tuning guide on SAP Conversion Agent.
    -S

    Hi,
    /people/bla.suranyi/blog/2006/09/29/conversion-agent--handling-edi-termination-characters
    Conversion Agent
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/da1e7c16-0c01-0010-278a-eaed5eae5a5f - conversion agent
    Thanks,
    Madhu

  • Invalid statement in Performance Tuning Guide

    Oracle® Database Performance Tuning Guide
    10g Release 2 (10.2)
    Part Number B14211-01
    13 The Query Optimizer
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14211/optimops.htm#sthref1324
    excerpt:
    "You can specify fast full index scans with the initialization parameter OPTIMIZER_FEATURES_ENABLE or the INDEX_FFS hint. Fast full index scans cannot be performed against bitmap indexes."
    Emphasis mine - Gints
    Here is counterexample:
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    SQL> create table blah (sex varchar2(1) not null, data varchar2(4000));
    Table created.
    SQL> insert into blah select 'F', lpad('a', 4000, 'a') from user_objects where rownum<=10;
    10 rows created.
    SQL> insert into blah select 'M', lpad('a', 4000, 'a') from user_objects where rownum<=10;
    10 rows created.
    SQL> commit;
    Commit complete.
    SQL> create bitmap index sexidx on blah(sex);
    Index created.
    SQL> exec dbms_stats.gather_table_stats(user, 'blah', cascade=>true)
    PL/SQL procedure successfully completed.
    SQL>
    SQL> set autot traceonly expl
    SQL> set lines 100
    SQL> select count(*) from blah where sex = 'F';
    SQL> /
    Execution Plan
    Plan hash value: 1028317341
    | Id  | Operation                     | Name   | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT              |        |     1 |     2 |     1   (0)| 00:00:01 |
    |   1 |  SORT AGGREGATE               |        |     1 |     2 |            |          |
    |   2 |   BITMAP CONVERSION COUNT     |        |    10 |    20 |     1   (0)| 00:00:01 |
    |*  3 |    BITMAP INDEX FAST FULL SCAN| SEXIDX |       |       |            |          |
    Predicate Information (identified by operation id):
       3 - filter("SEX"='F')
    SQL> set autot off
    SQL> alter session set events '10046 trace name context forever, level 12';
    Session altered.
    SQL> select count(*) from blah where sex = 'F';
      COUNT(*)
            10
    SQL> disconn
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining optionsand here is relevant section from tkprofed trace file assuring that bitmap index fast full scan really was performed.
    select count(*)
    from
    blah where sex = 'F'
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.02          0          0          0           0
    Execute      1      0.00       0.03          0          0          0           0
    Fetch        2      0.00       0.00          0          3          0           1
    total        4      0.00       0.05          0          3          0           1
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 60 
    Rows     Row Source Operation
          1  SORT AGGREGATE (cr=3 pr=0 pw=0 time=74 us)
          1   BITMAP CONVERSION COUNT (cr=3 pr=0 pw=0 time=55 us)
          1    BITMAP INDEX FAST FULL SCAN SEXIDX (cr=3 pr=0 pw=0 time=43 us)(object id 98446)Gints Plivna
    http://www.gplivna.eu

    Hello Gints. I've reported this to the writer responsible for the Performance Tuning Guide. One of us will get back to you with the resolution.
    Regards,
    Diana

  • SAP Business Objects and SAP Business Objects PCM

    Hi all
    We want to know if is recommendable to have Business Objects and SAP Business Objects PCM installed in the same server, and if is necessary to have a special configuration of the services for both applications?
    Thanks in advance

    Hi,
    You can refer the below link for PCM Install guide:
    http://service.sap.com/~sapidb/011000358700000225772009E/FPM75_PCM_InstallGuide_en.pdf
    If you are looking for more info related to specific requirements then from the below link select BusinessObjects tab and select PCM category for more guides.
    http://help.sap.com
    -Noor.

  • Difference between SAP BI 7.0 and SAP Business objects

    Dear All,
        I would like to know what is the difference between SAP BI 7.0 and SAP Business objects.What Advantage will we have if we implement sap business objects rather then SAP BI 7.0.WOur management wants to implement

    Hi,
    Strategies for better reports, queries, Web reporting, formatting, dashboards, cockpits, planning, and performance management
    advantages of BO
    Crystal Reports XI is the latest version of the report writer from Business Objects. Local reports guru David McAmis takes the new version for a spin.
    Most developers might know Crystal Reports from versions included in Studio, Visual Studio.NET, and other popular developer IDEu2019s such as BEA Workshop, C# Builder, Delphi 2005, JBuilder, WebSphere.
    In this latest installment both report and application developers have something to be excited about as there are a host of new features for report design and integration. Hereu2019s a run-down of what you can expect in this release.
    What's New in Xcelsius version 4.5
    Xcelsius now provides the following new components:
    Candlestick and OHLC Chart components
    The open-high-low-close and candlestick charts are primarily used to display stock data. Each marker corresponds to the four values, which are represented as lines attached to the marker on the OHLC chart and as colors on the candlestick chart. Open displays the opening price of the stock. High displays the highest price the stock achieved on that day. Low displays the lowest price the of the stock on that day. Close displays the closing price of the stock.
    For more advantages go through the below link
    http://www.crimson-consulting.com/marketing/experience/knowledge/white_papers/cognos_tco.pdf
    For BI go throug hthe below link
    http://www.elegantjbi.com/Why-Business-Intelligence-better/business-intelligence-advantage.htm
    Regards,
    Marasa.

  • How can i download sap Business objects client tools 4.1 ?

    Hiii,
             I want to download sap business objects client tools 4.1 .I did not find it .so can you please help me to download this files
    thanks,
    venu.

    Hi Venu
    Have you check the installation guide? could you refer the SAP Note for SAP BO
    2013261 - SAP BusinessObjects BI Platform 4.1 SP04 Install Guide
    BR
    SS

  • SAP Business Objects Explorer on top of SAP BW

    Dear Experts,
    My Requirement:
    -  Use BO Explorer on top of SAP BW ( no HANA, no BIA ). This is to provide the users a set of related data and they can analyse the way they want.
    Question-1:
    - What should be the BW data volume that I should keep in mind for BO Explorer to have good performance. My concern is primarily because we don't use BIA or HANA.
    Question-2:
    - Can BO Explorer directly connect to a BW Infocube/Multiprovider or it has to connect only through Universes
    Regards.

    Hi,
    I will suggest you Go for SAP Business Objects Analysis, edition for Microsoft Office,ity can connect bex query directly & Bw/Infocubes also.
    Regarding Performance we can do In BI Itself depends on Business needs,: modelling , extraction, reporting 3 levels in BI .
    For more info : Refer Below :
    FAQs for SAP BusinessObjects Analysis
    Thanks.

  • SAP Business Objects Edge 3.0

    Hi Gurus,
    I was downloaded the SAP Business objects Edge 3.0 Trial version from SAP. I am using SAP 4.7 with oracle 9.2 DB... I want to integrate Edge 3.0 with our SAP for reporting purpose.. Please explain how can i configure this and what are the other softwares are required for this. I go throw the guides but i am not getting clear idea.
    Now i just installed the business objects enterprise in one system web console are login correctly.
    But i don't know how to connect my SAP DB with this.
    Please help me.
    Regards
    Mahendran

    Hi,
    you still need the mentioned software packages even if you do not have an SAP BI system. You can  also configure your SAP R/3 system to do the BO authentication. The main difference is that you have to use crystal reports in order to access the data in your SAP system. You cannot report using Web Intelligence (universes) on an SAP R/3 data source. 
    So you have to do the following:
    1) Install the SAP BusinessObjects Edge 3.0 software on host A
    2) Install the Crystal Reports Designer 2008 V0 on host B (HostA and hostB can also be the same computer)
    3) Install the Java Connector 2.1.8 on host A ([http://service.sap.com\connectors]). You will find more information on this in the installation guide of the integration Kit for SAP solutions.
    3) Install the BOBJ integration Kit for SAP solutions XI 3.0 on host A (Choose the server option in the installation). Please follow the instructions in the installation guide on how to do this.
    4) If hostA and hostB are two different machines then please install also the BOBJ integration Kit for SAP solutions XI 3.0 on host B (Choose the desktop option in the installation) 
    5) Import the transports delivered in the integration KIT for SAP solutions in your SAP R/3 system (Check the installation guide for more information on these steps)
    6) Configure the SAP authentication in your BOBJ Edge system (necessary if you want to logon with your SAP credentials in BOBJ)
    This way you should be able to create reports based on  your SAP R/3 data.
    Regards,
    Stratos

  • SAP Business Objects Explorer app Sybase SUP settings

    Hello Community,
    Is there a guide or a how to for setting up the SAP Business Objects Explorer application with Sybase Unwired Platform?
    I found a guide to setup the SAP BusinessObjects Mobile application but nothing for Explorer.
    Could someone please advise?
    Thank you
    Jared

    Hi All,
              If SUP comes is introduced in the landscape then the whole licensing structure changes then when used where we directly connect to BI server from the SAP BI app instead of introducing the SUP in the landscape.So what will be advantages of using the SUP against when we compare the licensing part in both the system landscape with SUP and without SUP.Also if we directly use the app with the BI server then apps user license will also play some role ??.I am new to the Mobile BI division and so please forgive me if i have asked some silly question and also some starter links are welcomed.
    Thanks & Regards,
    Fenil Doshi.

  • Migration of SAP Business Objects BI Platform 4.1 from Windows(OS), SQL Server(DB) to AIX(OS) and Oracle(DB).

    Dear All,
    I have SAP Business Objects BI Platform 4.1  running on window servers and sql server database. We want to migrate this to  AIX and oracle.
    Can you please share what should be the best approach to carry on this migration?
    Regards,
    Asleh

    Hi Mohammed,
    Regarding your Query below is the suggestion:
    Step I: Preparing for moving BOBJ application from Windows to AIX
    There are some tasks that you need to perform:
    To configure the existing deployment
    Perform inventory and cleanup, to ensure that only the required content is moved.
    Run the Repository Diagnostic Tool to detect any inconsistencies between the File Repository and the CMS repository. The upgrade management tool will not run successfully if there are inconsistencies between the File Repository and the CMS repository.
    Identify any content that the upgrade management tool can't upgrade, along with the process required to upgrade that content. There is some content like Voyager Workspaces or Desktop Intelligence documents that require manual intervention before running the upgrade management tool.
    Back up existing repositories, including the system database and the Input and Output File Repository Servers.
    Back up custom web applications, HTML pages, and scripts in your existing deployment.
    To configure the planned BI 4.x deployment
    Setup and configure the Middleware and ODBC connections.
    Ensure that your machines meet the deployment system's requirements, you can find information about the supported platforms in the Platform Availability Matrix (PAM) http://service.sap.com/support -> Help and Support -> SAP BusinessObjects Support -> Documentation -> Supported Platform s/PARs -> SAP BusinessObjects BI 4.x
    Step II:
    You can use database backup & FRS backup (Offline) in new environment (AIX) to deploy BOBJ 4.x Version
    Take the help of DBA to move CMS & AUDIT database backup from SQL Server (Windows) to Oracle (AIX)
    Test the Universe,reports, Check the rights
    Step III:
    If you are configured any SSO then make sure that same configuration is deployed in new environment (AIX).
    Test the user SSO in new environment (AIX).
    Or
    You can also use Promotion manager to move the contenet from Windows (Business Objects Application) to UNIX (Business Objects Application)
    Only prerequisite is Business Objects Application version should be same.
    You can copy content only 50 Object at a time in One Job
    FRS Offline backup is required.
    Necessary files regarding custom web applications, HTML pages, and scripts in your existing deployment.
    Please refer the below KBA for more details
    BOBJ Deployment Link:
    http://wiki.scn.sap.com/wiki/display/BOBJ/Application+Server
    BIP on Linux with Tomcat and Sybase ASE Pattern Book
    http://wiki.scn.sap.com/wiki/display/BOBJ/BIP+on+Linux+with+Tomcat+and+Sybase+ASE+Pattern+Book
    Installing SAP BI 4.1 SP01 on Red Hat Enterprise Linux 6.x Step-by-step
    http://scn.sap.com/community/bi-platform/blog/2013/11/06/installing-sap-bi-41-sp01-on-red-hat-enterprise-linux-6x-step-by-step
    Promotion Manager KBA:
    http://wiki.scn.sap.com/wiki/display/BOBJ/BI4+Upgrade+and+Promotion+Management+KBAs
    Hope this will help!!!!
    Thanks,
    Daya

  • Teaching SAP Business Objects Business Intelligence

    Hi
    I have just created a blog which discusses some of the options in regards to teaching BI.  It identifies some of the resources which maybe helpful.  It can be found at
    /people/paul.hawking3/blog/2011/04/10/teaching-sap-business-objects-business-intelligence
    Good luck
    Paul Hawking
    SAP Academic Program Director
    Victoria University
    Australia
    SAP Mentor

    Dear Prof Paul,
           Thank you very much for posting BI related materials.As a SAS Business Intelligence package user(SAS 9.1,Entreprose guide ,SAS OLAP CUBE Studio,Web report studion etc)   ,I will send my comments to you shortly .You may go through in your leisure .Definitely,the substitute facilties must be available in SAP .
    Regards
    Prof Jyotiranjan Hota,
    SAP Faculty ,KIIT School of Management ,
    Bhubaneswar ,Orissa,India

  • I have error while testing the system created from a sap business objects template in SAP portal

    I have error while testing the system created from a sap business objects template in SAP portal. Error text:
    com.sapportals.connector.connection.ConnectionFailedException: Connection Failed: A nested exception occurred. Could not initialize physical connection. Connection Failed: A nested exception occurred. Could not initialize physical connection. Connection Failed: A nested exception occurred. Could not create JCO connection. 'mshost' missing
    I configure integration SAP portal and SAP BW system. All system requirements are complied.
    Environment
    SAP Business Objects 4.0
    SAP BW 7.31
    1.     I configure SSSO between SAP BW and SAP Business Objects Enterprise 4.0
    2.     Next I setting integration SAP PORTAL with SAP BW system
    3.     I download certificate from portal. Select Certificates and key (http://sapserver:port/nwa) – See scren_
    4.     In next window selected Ticketkeystore and Saplogonticketpair-cert( near part window form)
    5. Select Export entry button and binary format file certificate for download. Press download.
    6.     Save certificate file in local PC folder
    In next step need export certificate file to SAP system. Sequence of step:
    1.       Run STRUSTSS02 transaction .
    2.       Chose certificate ->import.
    3.       Select downloaded certificate file
    4.       Select Add to certificate list button and Add to ACL button
    5.       Inter System ID and Client(000)
    6.       In next I download iview sap business objects template into sap portal: System administration->transport->Import. And select and download sap business Objects iview template in .epa format into sap portal.
    7.       Result – downloaded iview.
    8.       In next step I create system from template. System administration->system landscape.
    9. In next step I input parameters for my system in Connector category, Sap business objects and user management categories: See screen _2
    10.   When I created the system and test the connection error occurred: See screen_3
    This issue is important enough. I would be grateful for opinions and ideas. Thanks in advance.

    Did you find a solution?

  • Error while connecting microsoft Excel to sap business objects

    Hi,
    I am trying to connect sap business objects to Microsoft Excel using Power Query add in but i am getting  Proxy time out connection error  when adding
    Credentials, As per the SAP documents i am using SAP Restful Web service URL when connecting to Business objects
    Details are as follows:
    Opearting System-:Windows 7
    SAP BO Platform-:BO 4.0 SP 6 (OS-Windows server 2008 R2)
    Excel Version-:Microsoft Excel 2013
    ADD IN-:Power Query
    Please check attach  Error Screen-Shot for Detail information
    Regards,
    Rupesh

    Hi,
    please be aware that you need SAP BI 4.1 SP2 at least for using Power Query
    So maybe this error results in a non suported Environment.
    Regards
    -Seb.

Maybe you are looking for