BOBj web dashboard

BO experts
our company plannning to use BOBJ for web dashboard..we are new to BO and would like to clarify the following questions
- Can I get the BOBJ architecture diagrams?
- How GRC, BPC can be integrated with BOBJ and ECC?
- Can we run BOBJ on Netweaver server? or need a seperate web server?
- how can we do the sizing for BOBJ?
Would appreciate the quick reply
thanks-Gopal

Operations Manager has a completely different UI... so it won't be identical.
In any case, there is a '360 .NET Application Monitoring dashboard' in the product, described here
http://technet.microsoft.com/en-us/library/jj614613.aspx that does combine the APM perspective (Performance and Reliability) with Availability information coming from GSM/Synthetic tests.
Check it out.
The list of slowest resources/dependencies is a new feature in the agent that was enabled specifically for Application Insights - OpsMgr won't receive that same exact data in that format about all resource calls, unlike AppInsights does, so it also can't
display it. But in OpsMgr, thru the AppAdvisor web console feature you can get a list of the slowest resources (extracted from performance 'events', basically) - which is similar.

Similar Messages

  • Hierarchy Analysis Authorization in BW and BOBJ Webi Report

    Hello,
    We have a scenario wherein we have implemented Analysis Authorizations (Hierarchy) on Organizational Unit info object (0ORGUNIT) and need to report on BOBJ WEBI. Our scenario is as following
    ORGUNIT    - L0 (Overall Enterprise Level)     
    -     L1 (Enterprise - Continent Wise Split)
    -     L2 (Enterprise u2013 Country Wise Split)
    -     L3(Enterprise u2013 City Wise Split)
    E.G- 
          LO (Company ABC) MANAGER 0 will have access to the entire organization
               -L1 (ASIA) MANAGER1 will have access to ASIAN Subcontinent
                      -L2 (India) MANAGER 2 will have Access to country India
                                -L3 (New Delhi) MANAGER 2.1 will have access to city Delhi
                                -L3 (Mumbai) MANAGER 2.2 will have access to city Mumbai
                       -L2 (Malaysia) MANAGER 3 will have access to Country Malaysia
                                  -L3 (Kuala Lampur)
                                  -L3 (pahang)
                 - L1 (Europe)
                                            u2026..
    The requirement is that the CEO of the company should be able to see the entire set of data ( L0-L4).We have continent managers who can see that data specific to their continent, similarly at L3 Level the city manageru2019s should see the data only for their specific city.
    In BI we have used analysis authorization based on hierarchies. We have created an authorization object say ZAUTH1 and have assigned the hierarchy L0 from RSECADMIN. Now, in Webi when we create a report a sample row comes as :
    L0 Org Unit     L1 Org Unit     L2 Org Unit     L3 Org Unit     SALES Key Figure
    Company ABC     Asia          India          Mumbai          1000
    Now, we have MANAGER 2.2 who has only access to the data specific to his city (Mumbai). There is an Analysis Authorization object created for him ZAUTH2, by ONLY assigning the org unit hierarchy L3 (for Mumbai). When we run the bex report with the user MANAGER 2.2 u2013 it correctly displays the result and the user is only able to see the data for L3 Org Unit (Mumbai). However when you bring this data to Webi u2013 the report comes in the below format:
    L0 Org Unit     L1 Org Unit     L2 Org Unit     L3 Org Unit     SALES Key Figure
    Mumbai                                           1000
    The L3 org unit has now got assigned to L0 Org unit , as this is the only org unit assigned to the MANAGER 2.2 user .
    In such a case we are not able to write any generic formulae for the report. Is there a way to correct this issue? u2018Mumbaiu2019 should either get assigned to the L3 OrgUnit column is webi report , or is there a workaround that is possible ?
    Thanks and Best Regards,
    Vj

    Hi Vijay,
    The problem you speak of is known and comes from the fact that the hierachy is flattened in the process of delivering it to WebI. Therefore there is no real 'solution' to the problem, just some work-arounds you can think of...
    1)
    Create a report variable that starts looking at the lowest level, if it is empty check one up, and so on until you found what you were looking for (the lowest leaf available), which by definition must be there (even if it is top level).
    Using similar logic you can also get a 'number of levels avaible' and so fill in the complete tree (duplicating the highest level).
    This is difficult to explain when end users create their own reports, though you could provide a template report with these variables in there already.
    2)
    Extend the hierarchy with duplicates below the lowest level.
    So i.e. L0 Company - L1 Continent - L2 Country - L3 City- L4 City - L5 City- L6 City.
    This will give back on the four levels for top authorization
    L0 Company - L1 Continent - L2 Country - L3 City
    For authorization on Continent:
    L0 Continent - L1 Country - L2 City- L3 City
    For autorization City
    L0 City- L1 City - L2 City- L3 City
    So in all situations the fourth level, the L3 Object will hold the City level.
    This you can then use in your report.
    Hope this helps,
    Marianne

  • BOBJ WEB Service Session - Login

    Hello Experts,
    I have to consume a BOBJ Web Service Session in SAP Netweawer.
    Hello,
    We have SAP NetWeaver 2004s and BusinessObjects Enterprise 12.0.
    I've created an proxy object on the SAP Netweaver side in the following way :
    se80->Create->Enterprice Service->Service-Consumer->URL/HTTP Destination-> URL = http://<host>:8080/dswsbobje/services/Session?wsdl
    Then I've created an Port using soamanager.
    I't seems to be working, becouse methods like : getServerInfo, getServerInfoDetails are working ok.
    Now I have a problem with the method Login. As parameter for this method I see only structure CREDENTIAL, which have only one field CONTROLLER (PRXCTRLTAB).
    I've expected to have in the Parameters for this method a structure EnterpriceCredential with fields like username, password and so on - but its not.
    Could You help me ?
    Greetings
    Wojciech
    Here my coding :
    REPORT ztest.
    DATA text TYPE string.
    DATA : lr_proxy TYPE REF TO zsco_session_port. " its my session proxy object
    DATA : oref TYPE REF TO cx_root.
    TRY.
    CREATE OBJECT lr_proxy
    EXPORTING
    logical_port_name = 'LP1'.
    CATCH cx_ai_system_fault INTO oref.
    text = oref->get_text( ).
    ENDTRY.
    DATA get_server_info_in TYPE zsget_server_info_soap_in.
    DATA get_server_info_out TYPE zsget_server_info_soap_out.
    THIS IS WORKING WELL
    TRY.
    CALL METHOD lr_proxy->get_server_info
    EXPORTING
    input = get_server_info_in
    IMPORTING
    output = get_server_info_out.
    CATCH cx_ai_system_fault INTO oref..
    CATCH zscx_dswsexception INTO oref..
    CATCH cx_ai_application_fault INTO oref..
    ENDTRY.
    break-point.
    AND THIS IS ENDINNG WITH EXCEPTION
    TRY.
    CALL METHOD lr_proxy->login
    EXPORTING
    input = login_in
    IMPORTING
    output = login_out.
    CATCH cx_ai_system_fault INTO oref.
    text = oref->get_text( ).
    _ CATCH zscx_dswsexception INTO oref. this exeption is being called_
    text = oref->get_text( ).
    CATCH cx_ai_application_fault INTO oref.
    text = oref->get_text( ).
    ENDTRY.

    Hello,
    I struggle with exactly the same problem accessing the login webservice of the BOE server. Unfortunately the previous answer did not help me since I don't understand it
    Anyone able to enlighten me?
    Edit: Nevermind, I just found out by myself.
    Thanks,
    Sebastian
    Edited by: Sebastian Solzbacher on Nov 25, 2011 9:43 AM

  • Is it possible to add buttons for user feed back in Bobj WEBI report?

    Dear all,
    I am an ABAP Web dynpro developer. 
    As part of the workflow, i am displaying  a BOBJ Webi Report to the users.
    The requirement is to allow users Aapprove/Reject the data in the report.
    Is it possible to have user input or any buttons in the Webi Report?
    If yes, How to achieve this ? Please help.
    Thanks,
    Vamshi

    There is discussion option as an out of the box feature. Check this: BI launch pad 4.0: Participate in a discussion about a document

  • What is Web Dashboard Design in Data Warehousing Workbench?

    Hi Gurus!
    I am tired of trying to find out this since last night. What is this Web Dashboard Design that is available through Data Warehousing Workbench RSA1? Any ideas will be given points. Please urgent!

    Jaya your answer is something that I already figured out for Bex but my question was for the WB and not BEx. However I have awarded 6 points for your attention to this question and also your link was very elaborative on the BEx side. Thanks a lot.

  • Output of BOBJ (Web Intelligence Reports) are twice BEx Query Result

    Hi Experts,
    Incase of first level of hierarchy, correct values (i.e same as BEx Query) are displayed in BOBJ reports . However on selecting two and more levels of Hierarchy, values,twice the corresponding BEx query values, are displayed in BOBJ reports .
    For e.g.
    For level one of hierarchy (one level of object from hierarchy ):
    Actual Amount keyfigure value in BEx Query : 100
    Actual Amount keyfigure Value in BOBJ Report : 100
    For if we select two and more levels of Hierarchy, then we get following inconsistent values:
    Actual Amount keyfigure value in BEx Query : 100
    Actual Amount keyfigure Value in BOBJ Report : 200
    We have implemented SP5 ,as suggested in SAP note 1373220 . However issue still persists...
    Can you please suggest, how to resolve this issue?
    Regards
    Mohit

    We had the issue close to your issue. Basically, Webi does a Cartesian product of the characteristics value and duplicate the number of rows. But when we add the key figure in the report, it was showing the correct result.
    Not sure, why the Key figures are also duplicating in your case. Please try adding removing characteristics and see if that resolves your issue.
    - Danny

  • BOBJ WEBI XI 3.1 SP 6 Report hangs randomly

    We upgraded the BOBJ XI 3.1 SP3 to SP6. We're now noticing that the WEBI reports are hanging randomly. It doesn't trigger any DIA session in BW backend. It looks like connection issue between BOBJ and BI. If I close the report and refresh it again, it runs fine. It is happening very randomly and there are enough DIA processes available in BW. We're currently on BW 7.0 ENHP1 SP 08.
    Has anyone faced this issue? Is there any way we can perform the connection trace between BOBJ and BW?
    Thanks,
    Milind

    Milind,
    First, SP6 is not an option. Please upgrade to 6.3 or SP7. because it contains several problems with calculation engine and merge dimension.
    maybe your problem is fixed after updrade

  • Link from BOBJ Webi report to CRM webUI screen

    Hi experts,
    I was wondering, if there's a way to create a link from Webi report (based on CRM data) to webUI content in CRM? For example, Webi report will have opportunity numbers. User will be able to click on the opportunity number and get to webUI screen where he could see opportunity details and maybe even modify it.
    Best regards,
    Vlad

    Hi,
    You can link Webi Document to webUI content in CRM with help of Hyperlink based on particular column then you need to parse the data.
    Once Parse button is clicked, it displays with the parts of the URL parsed into sections depending on parameters specified in OpenDocument URL.
    for more information kindly go through following document.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0daee1d-0e38-2d10-0c91-8bb4ab5aa266?QuickLink=index&overridelayout=true&47467978778722
    Best Regards,
    Pushkar Dhale

  • Please Help: BOBJ - WEBI Requirement

    Hi Users,
    I have a requirement from my client.
    Current situation is that we have data load happening from flat files to R/3 Tables and then we Universe as SEMANTIC layer on these tables on which we have build WEBI reports.
    Now Client wants to build Infocube and move all data from Z tables to Infocube and then directly connect cube to WEBI an build reports without universe as semantic layer anymore.
    So the question is:
    1. Will old reports be affected in any which ways? and what is the solution to avoid the impacts?
    2. Will there be any problem if navigational attributes being used?
    3. Can same hierarchies logic of objects and classes which were built at univers level be implemented at cube level?
    3. any functionalities of universe which cannot be implemented at cube level?
    Please suggest the impacts and what is best to do.
    Regards
    Syed
    Edited by: Zabi_Zabi on Mar 9, 2012 11:06 AM

    Are you on XI3.1 or BI4.0 ?
    thanks!

  • Web Dispatcher to BOBJ

    Hi all,
    Does SAP Web Dispatcher support to BOBJ? How to configure it?
    Thanks & Regards
    DuyPM

    I believe technically this is one of the supported platforms that you can use as your web server, however I am curious to hear your rationale for using this configuration vs. a Tomcat or Websphere as your bobj web tier?
    My personal opinion is to try and use what most customers are already using since the BOBJ developers have tested these platforms in greater detail and have "better" support.  I believe that Tomcat is the most popular choice as well as the easiest to install and support.
    -Alex

  • Does 'Multiple Single Values' work in BOBJ 4.0 Webi?

    Experts,
    We have a BOBJ 4.0 environment. We have a BEx variable defined as 'Multiple Single values' in BEx, so that the users can enter multiple materials at the same time to query as the input. The materials are like 02.200.100, 02.100.105, 02.100.402S etc.. In the BOBJ Webi prompt filter section, for the material, I am not able to input multiple single values for the material. I get a 'No values to display' message in the prompt section itself when I try to enter multiple materials separated by semicolon.
    The users have around 500 different materials for which they want to see the data at the same time. They have this materials separated by semicolon in excel, and they want to copy that and enter this information in BOBJ prompt section (where it says to enter the values). I tried separating the materials by semicolon, comma - nothing worked out. When I enter each material individually, and search it with it key, I am able to see the material. So, doesn't 'Multiple single values' option work in BOBJ? I was able to see the data for those 500 materials each separated by a semicolon using the multiple single values option through BEx Analyzer and Portal. Isn't the same functionality provided by BOBJ?
    Please find below my BOBJ prompt screen summary. Since 'Multiple single values' option was not working, I changed the BEx variable to 'Selection Option' in BEx, so in BOBJ we now have a 'Start Value' and a 'End Value' in BOBJ. Still my question is, whether BOBJ supports multiple single values option, so that the users can enter multiple values as input? The users want to enter the multiple materials in the "Enter Search Pattern" bar in the attached screenshot. Please let me know if this is feasible
    Thanks for your time. Points will be rewarded!
    Thanks,
    G.

    Hi Goutham R,
    As of 4.0. it was by a limitation.
    I have read some where that some users were able to meet the requirement by putting a semi colon at the end of each value in a excel and feeding it to the prompt but seems like you have already tried that.
    Please see if you put a vote here in this link:
    Selection option variable not behaving the same way in WebI : View Idea
    But I think this requirement can be met in Analysis edition for OLAP.
    BR
    Prabhith

  • Xcelsius/Webi iView

    All,
    Issue 1
    I am looking to view a BOBJ Webi Reports, Xcelsius Dashboards based on BI service and BW connection within the Portal iView, Based on the documentation available I have not been able to create a URL, KM Navigational or find a standard Xcelsius/ Webi iView that would display a BOBJ Xcelcius/Webi Report directly onto the portal.
    Issue 2
    I have been successful creating a KM Navigational iView that displays the folder structure as viewed within the info view. However all the folders showup in the KM Navigational iView even though when I login to infoview only 2 folders are assigned to my users and only 2 folders showup in the infoview.
    Any help would be appreciated.
    Toor

    take a look here:
    Portal Part 1
    /people/ingo.hilgefort/blog/2010/03/29/sap-businessobjects-enterprise-sap-enterprise-portal--part-1-of-4
    Portal Part 2
    /people/ingo.hilgefort/blog/2010/03/30/sap-businessobjects-enterprise-sap-enterprise-portal-part-2-of-4
    Portal Part 3
    /people/ingo.hilgefort/blog/2010/04/08/sap-businessobjects-enterprise-sap-enterprise-portal--part-3-of-4
    Portal Part 4
    /people/ingo.hilgefort/blog/2010/04/21/sap-businessobjects-enterprise-and-sap-enterprise-portal--part-4-of-4
    Ingo

  • Design Studio error on IPAD - Version mismatch web tier 12.1.0.224 PJS 13.0.3.73 after upgrade from 4.0 SP7 to 4.1 SP4

    Hi All,
    we have BI 4.1 SP4  installed with Tomcat as our Application server.
    While running the Design Studio AA application on IPAD we get the below error but  other application are working fine on IPAD (WEBI, DASHBOARDS, EXPLORER)
    We tried to redeploy the WAR files on Tomcat couple of time without any luck.
    Request to help us in resolving this issue.
    Regards,
    SJ

    Thanks Tammy for the reply
    We already tried the suggested SAP Note couple of time without any luck.
    Regards,
    SJ

  • WEB Service Session - Login

    Hello Experts,
    I have to consume a BOBJ Web Service Session in SAP Netweawer.
    Hello,
    We have SAP NetWeaver 2004s and BusinessObjects Enterprise 12.0.
    I've created an proxy object on the SAP Netweaver side in the following way :
    se80->Create->Enterprice Service->Service-Consumer->URL/HTTP Destination-> URL = http://<host>:8080/dswsbobje/services/Session?wsdl
    Then I've created an Port using soamanager.
    I't seems to be working, becouse methods like : getServerInfo, getServerInfoDetails are working ok.
    Now I have a problem with the method Login. As parameter for this method I see only structure CREDENTIAL, which have only one field CONTROLLER (PRXCTRLTAB).
    I've expected to have in the Parameters for this method a structure EnterpriceCredential with fields like username, password and so on - but its not.
    Could You help me ?
    Greetings
    Wojciech
    Here my coding :
    REPORT  ztest.
    DATA text TYPE string.
    DATA : lr_proxy TYPE REF TO zsco_session_port.  " its my session proxy object
    DATA : oref   TYPE REF TO cx_root.
    TRY.
        CREATE OBJECT lr_proxy
          EXPORTING
            logical_port_name = 'LP1'.
      CATCH cx_ai_system_fault INTO oref.
        text = oref->get_text( ).
    ENDTRY.
    DATA get_server_info_in TYPE zsget_server_info_soap_in.
    DATA get_server_info_out TYPE zsget_server_info_soap_out.
    THIS IS WORKING WELL
    TRY.
        CALL METHOD lr_proxy->get_server_info
          EXPORTING
            input  = get_server_info_in
          IMPORTING
            output = get_server_info_out.
      CATCH cx_ai_system_fault  INTO oref..
      CATCH zscx_dswsexception  INTO oref..
      CATCH cx_ai_application_fault  INTO oref..
    ENDTRY.
    break-point.
    AND THIS IS ENDINNG WITH EXCEPTION
    TRY.
        CALL METHOD lr_proxy->login
          EXPORTING
            input  = login_in
          IMPORTING
            output = login_out.
      CATCH cx_ai_system_fault INTO oref.
        text = oref->get_text( ).
    _ CATCH zscx_dswsexception INTO oref.   this exeption is being called_
        text = oref->get_text( ).
      CATCH cx_ai_application_fault INTO oref.
        text = oref->get_text( ).
    ENDTRY.

    Hello,
    I struggle with exactly the same problem accessing the login webservice of the BOE server. Unfortunately the previous answer did not help me since I don't understand it
    Anyone able to enlighten me?
    Edit: Nevermind, I just found out by myself.
    Thanks,
    Sebastian
    Edited by: Sebastian Solzbacher on Nov 25, 2011 9:43 AM

  • Java Error when opening WEBI from BI Launchpad?

    Hi I am working with colleagues on building a WEBI dashboard on the BI Launchpad. However, my colleagues are unable to access WEBI fully (view/edit reports) because the following error displays on their Internet Explorer web browser:
    "Cannot launch Java Report Panel, please make sure you have installed a Java virtual machine"
    I have tried asking them to download the latest version of Java and still this error is not resolved. Does anyone know the root cause of this and how I can provide a solution for my colleagues?

    Hi Kevin
    This is the direct link
    Java Archive Downloads - Java SE 6
    download the first two
    Java SE Development Kit 6u45
    Java SE Runtime Environment 6u45
    create username and password with oracle to download it
    before installing the above two... uninstall all other java versions in the machine,
    restart the machine once done
    add the java path into environmental variables
    check the version in the command prompt after the install using the command java -version

Maybe you are looking for

  • How do I move my Firefox bookmarks to another copy of Firefox on another computer, and how do I keep from overwriting the previous bookmarks on the "new" computer's Firefox?

    My husband upgraded his iMac this year, and I'm getting his "old" one. I just want to know, first, how to transfer my bookmarks, and second, how to transfer them to his Firefox without overwriting his current bookmarks. And how do I open "my" Firefox

  • Bug in PDF

    There is a bug in the acrobat for ipad. When you have an interactive PDF and you have buttons linking to pages in the PDF, the buttons appear with a bluish box damaging the view of the interactive PDF. Please let me know how to fix this or maybe is a

  • Image in RTF

    Hi, When I generate a report in RTF format I don't get the image , but for the same file if I generate the report in HTML or PDF I get the image. Is there any specific path where we place the image.This problem comes only when I run the report on SUN

  • Adobe Reader Error on our site

    Hey we loaded multi page research reports but we are getting complaints from people on firefox browsers that the .pdf files show up blank. no error code or anything. Has anyone else come across this before? Thanks,

  • Java.io.IOException: WEB8001: Write failed

    I have written a servlet to download a tar file. The Servlet takes the parameters and create a tar file based on the parameters and then opens the file for download for the user. I am able to download the tar file and the contents of the tar file is